From 52e1c41e8bd9903fa28fccfedf739a88f553cd09 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Wed, 24 Jun 2020 08:24:46 -0700
Subject: [PATCH 01/51] Update say.dm
---
code/game/say.dm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/code/game/say.dm b/code/game/say.dm
index 35a1b1d072..b66c063761 100644
--- a/code/game/say.dm
+++ b/code/game/say.dm
@@ -110,6 +110,8 @@ GLOBAL_LIST_INIT(freqtospan, list(
/// Quirky citadel proc for our custom sayverbs to strip the verb out. Snowflakey as hell, say rewrite 3.0 when?
/atom/movable/proc/quoteless_say_quote(input, list/spans = list(speech_span), message_mode)
+ if(input[1] == "!")
+ return ""
var/pos = findtext(input, "*")
return pos? copytext(input, pos + 1) : input
From cfc4a4d6319f149d6d6a491194bf61b60a4ff184 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Wed, 24 Jun 2020 08:27:59 -0700
Subject: [PATCH 02/51] Update say.dm
---
code/modules/mob/say.dm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm
index a403845ee2..a2cae0691f 100644
--- a/code/modules/mob/say.dm
+++ b/code/modules/mob/say.dm
@@ -50,6 +50,8 @@
usr.emote("me",1,message,TRUE)
/mob/say_mod(input, message_mode)
+ if(input[1] == "!")
+ return ""
var/customsayverb = findtext(input, "*")
if(customsayverb && message_mode != MODE_WHISPER_CRIT)
message_mode = MODE_CUSTOM_SAY
From 72804963a02f2c168b900e7a57590f0c13c07bea Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Wed, 24 Jun 2020 08:30:16 -0700
Subject: [PATCH 03/51] Update say.dm
---
code/game/say.dm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/code/game/say.dm b/code/game/say.dm
index b66c063761..6b923d4e83 100644
--- a/code/game/say.dm
+++ b/code/game/say.dm
@@ -146,9 +146,12 @@ GLOBAL_LIST_INIT(freqtospan, list(
return "[copytext_char("[freq]", 1, 4)].[copytext_char("[freq]", 4, 5)]"
/atom/movable/proc/attach_spans(input, list/spans)
- var/customsayverb = findtext(input, "*")
- if(customsayverb)
- input = capitalize(copytext(input, customsayverb + length(input[customsayverb])))
+ if(input[1] == "!")
+ input = copytext(input, 1, length(input) + 1)
+ else
+ var/customsayverb = findtext(input, "*")
+ if(customsayverb)
+ input = capitalize(copytext(input, customsayverb + length(input[customsayverb])))
if(input)
return "[message_spans_start(spans)][input]"
else
From 6db9b8c5d72ceac6752df485eabafeb1540196fc Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Thu, 25 Jun 2020 17:59:47 -0700
Subject: [PATCH 04/51] Update config.txt
---
config/config.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/config/config.txt b/config/config.txt
index 35af0e848b..d6d0097c21 100644
--- a/config/config.txt
+++ b/config/config.txt
@@ -8,6 +8,7 @@ $include donator_groupings.txt
$include dynamic_config.txt
$include plushies/defines.txt
$include job_threats.txt
+$include policy.txt
# You can use the @ character at the beginning of a config option to lock it from being edited in-game
# Example usage:
From ea57a84eb884d8621c8b038ae4b9440e2fddc9a3 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Thu, 25 Jun 2020 18:04:23 -0700
Subject: [PATCH 05/51] Create policy.txt
---
config/policy.txt | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 config/policy.txt
diff --git a/config/policy.txt b/config/policy.txt
new file mode 100644
index 0000000000..610acd2be8
--- /dev/null
+++ b/config/policy.txt
@@ -0,0 +1,13 @@
+## Policy configuration
+## Current valid keys are:
+## ON_CLONE - displayed after a successful cloning operation to the cloned person
+## ON_DEFIB_INTACT - displayed after defibbing before memory loss time threshold
+## ON_DEFIB_LATE - displayed after defibbing post memory loss time threshold
+##
+## EXAMPLE:
+## POLICYCONFIG ON_CLONE insert text here span classes are fully supported
+
+## Misc entries for above
+
+## Defib time limit for "cloning memory disorder" memory loss in seconds
+# DEFIB_CMD_TIME_LIMIT 300
From 0df5aa083bfc95445350bda744ef3fe077cc4b82 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Fri, 26 Jun 2020 23:41:44 -0700
Subject: [PATCH 06/51] policies and code hooks
---
code/__DEFINES/configuration.dm | 8 ++++++++
code/controllers/configuration/entries/policy.dm | 8 ++++++++
code/game/machinery/cloning.dm | 5 +++++
code/game/objects/items/defib.dm | 6 ++++++
.../reagents/chemistry/reagents/medicine_reagents.dm | 7 +++++++
code/modules/surgery/advanced/revival.dm | 8 +++++++-
tgstation.dme | 1 +
7 files changed, 42 insertions(+), 1 deletion(-)
create mode 100644 code/controllers/configuration/entries/policy.dm
diff --git a/code/__DEFINES/configuration.dm b/code/__DEFINES/configuration.dm
index 6b70eb1e0f..39f1385d3b 100644
--- a/code/__DEFINES/configuration.dm
+++ b/code/__DEFINES/configuration.dm
@@ -8,3 +8,11 @@
//flags
#define CONFIG_ENTRY_LOCKED 1 //can't edit
#define CONFIG_ENTRY_HIDDEN 2 //can't see value
+
+// Policy config keys
+/// Displayed to cloned patients
+#define POLICYCONFIG_ON_CLONE "ON_CLONE"
+/// Displayed to defibbed/revival surgery'd patients before the memory loss time threshold
+#define POLICYCONFIG_ON_DEFIB_INTACT "ON_DEFIB_INTACT"
+/// Displayed to defibbed/revival surgery'd patients after the memory loss time threshold
+#define POLICYCONFIG_ON_DEFIB_LATE "ON_DEFIB_LATE"
diff --git a/code/controllers/configuration/entries/policy.dm b/code/controllers/configuration/entries/policy.dm
new file mode 100644
index 0000000000..48bfa666a1
--- /dev/null
+++ b/code/controllers/configuration/entries/policy.dm
@@ -0,0 +1,8 @@
+/// Seconds for CMD on defib-with-memory-loss policy config to display instead of defib-intact config
+/datum/config_entry/number/defib_cmd_time_limit
+ config_entry_value = 300
+ integer = TRUE
+
+/datum/config_entry/keyed_list/policy_config
+ key_mode = KEY_MODE_TEXT
+ value_mode = VALUE_MODE_TEXT
diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm
index cfe9d14663..53e910e973 100644
--- a/code/game/machinery/cloning.dm
+++ b/code/game/machinery/cloning.dm
@@ -399,6 +399,11 @@
to_chat(occupant, "There is a bright flash!
You feel like a new being.")
mob_occupant.flash_act()
+ var/list/policies = CONFIG_GET(keyed_list/policyconfig)
+ var/policy = policies[POLICYCONFIG_ON_CLONE]
+ if(policy)
+ to_chat(occupant, policy)
+
occupant.forceMove(T)
update_icon()
mob_occupant.domutcheck(1) //Waiting until they're out before possible monkeyizing. The 1 argument forces powers to manifest.
diff --git a/code/game/objects/items/defib.dm b/code/game/objects/items/defib.dm
index 7cc76da312..676dec4088 100644
--- a/code/game/objects/items/defib.dm
+++ b/code/game/objects/items/defib.dm
@@ -619,6 +619,12 @@
if(req_defib)
if(defib.healdisk)
H.heal_overall_damage(25, 25)
+ var/list/policies = CONFIG_GET(keyed_list/policyconfig)
+ var/timelimit = CONFIG_GET(number/defib_cmd_time_limit)
+ var/late = timelimit && (tplus > timelimit)
+ var/policy = late? policies[POLICYCONFIG_ON_DEFIB_LATE] : policies[POLICYCONFIG_ON_DEFIB_INTACT]
+ if(policy)
+ to_chat(occupant, policy)
if(req_defib)
defib.deductcharge(revivecost)
cooldown = 1
diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
index 0f53add567..f4af4b69c6 100644
--- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
@@ -928,10 +928,17 @@
M.adjustOxyLoss(-20, 0)
M.adjustToxLoss(-20, 0)
M.updatehealth()
+ var/tplus = world.time - M.timeofdeath
if(M.revive())
M.grab_ghost()
M.emote("gasp")
log_combat(M, M, "revived", src)
+ var/list/policies = CONFIG_GET(keyed_list/policyconfig)
+ var/timelimit = CONFIG_GET(number/defib_cmd_time_limit)
+ var/late = timelimit && (tplus > timelimit)
+ var/policy = late? policies[POLICYCONFIG_ON_DEFIB_LATE] : policies[POLICYCONFIG_ON_DEFIB_INTACT]
+ if(policy)
+ to_chat(occupant, policy)
..()
diff --git a/code/modules/surgery/advanced/revival.dm b/code/modules/surgery/advanced/revival.dm
index cf3a218d80..c93b5eefa5 100644
--- a/code/modules/surgery/advanced/revival.dm
+++ b/code/modules/surgery/advanced/revival.dm
@@ -60,6 +60,7 @@
playsound(get_turf(target), 'sound/magic/lightningbolt.ogg', 50, 1)
target.adjustOxyLoss(-50, 0)
target.updatehealth()
+ var/tplus = world.time - target.timeofdeath
if(target.revive())
user.visible_message("...[target] wakes up, alive and aware!", "IT'S ALIVE!")
target.visible_message("...[target] wakes up, alive and aware!")
@@ -68,7 +69,12 @@
for(var/obj/item/organ/O in target.internal_organs)//zap those buggers back to life!
if(O.organ_flags & ORGAN_FAILING)
O.applyOrganDamage(-5)
- return TRUE
+ var/list/policies = CONFIG_GET(keyed_list/policyconfig)
+ var/timelimit = CONFIG_GET(number/defib_cmd_time_limit)
+ var/late = timelimit && (tplus > timelimit)
+ var/policy = late? policies[POLICYCONFIG_ON_DEFIB_LATE] : policies[POLICYCONFIG_ON_DEFIB_INTACT]
+ if(policy)
+ to_chat(occupant, policy) return TRUE
else
user.visible_message("...[target.p_they()] convulses, then lies still.")
target.visible_message("...[target.p_they()] convulses, then lies still.")
diff --git a/tgstation.dme b/tgstation.dme
index b13f220eb5..20ed62974b 100644
--- a/tgstation.dme
+++ b/tgstation.dme
@@ -267,6 +267,7 @@
#include "code\controllers\configuration\entries\game_options.dm"
#include "code\controllers\configuration\entries\general.dm"
#include "code\controllers\configuration\entries\plushies.dm"
+#include "code\controllers\configuration\entries\policy.dm"
#include "code\controllers\subsystem\acid.dm"
#include "code\controllers\subsystem\adjacent_air.dm"
#include "code\controllers\subsystem\air.dm"
From 1d4a54d8802cd3418050bf6fa5d73fb3d09949c5 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Fri, 26 Jun 2020 23:47:16 -0700
Subject: [PATCH 07/51] log
---
code/game/machinery/cloning.dm | 1 +
code/game/objects/items/defib.dm | 3 ++-
code/modules/reagents/chemistry/reagents/medicine_reagents.dm | 3 ++-
code/modules/surgery/advanced/revival.dm | 4 +++-
4 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm
index 53e910e973..49543487ce 100644
--- a/code/game/machinery/cloning.dm
+++ b/code/game/machinery/cloning.dm
@@ -403,6 +403,7 @@
var/policy = policies[POLICYCONFIG_ON_CLONE]
if(policy)
to_chat(occupant, policy)
+ occupant.log_message("revived using cloning, [tplus] deciseconds from time of death.", LOG_GAME)
occupant.forceMove(T)
update_icon()
diff --git a/code/game/objects/items/defib.dm b/code/game/objects/items/defib.dm
index 676dec4088..6a11809c56 100644
--- a/code/game/objects/items/defib.dm
+++ b/code/game/objects/items/defib.dm
@@ -624,7 +624,8 @@
var/late = timelimit && (tplus > timelimit)
var/policy = late? policies[POLICYCONFIG_ON_DEFIB_LATE] : policies[POLICYCONFIG_ON_DEFIB_INTACT]
if(policy)
- to_chat(occupant, policy)
+ to_chat(H, policy)
+ H.log_message("revived using a defibrillator, [tplus] deciseconds from time of death, considered [late? "late" : "memory-intact"] revival under configured policy limits.", LOG_GAME)
if(req_defib)
defib.deductcharge(revivecost)
cooldown = 1
diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
index f4af4b69c6..b9da8271ab 100644
--- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
@@ -938,7 +938,8 @@
var/late = timelimit && (tplus > timelimit)
var/policy = late? policies[POLICYCONFIG_ON_DEFIB_LATE] : policies[POLICYCONFIG_ON_DEFIB_INTACT]
if(policy)
- to_chat(occupant, policy)
+ to_chat(M, policy)
+ M.log_message("revived using strange reagent, [tplus] deciseconds from time of death, considered [late? "late" : "memory-intact"] revival under configured policy limits.", LOG_GAME)
..()
diff --git a/code/modules/surgery/advanced/revival.dm b/code/modules/surgery/advanced/revival.dm
index c93b5eefa5..a910e73cce 100644
--- a/code/modules/surgery/advanced/revival.dm
+++ b/code/modules/surgery/advanced/revival.dm
@@ -74,7 +74,9 @@
var/late = timelimit && (tplus > timelimit)
var/policy = late? policies[POLICYCONFIG_ON_DEFIB_LATE] : policies[POLICYCONFIG_ON_DEFIB_INTACT]
if(policy)
- to_chat(occupant, policy) return TRUE
+ to_chat(target, policy)
+ target.log_message("revived using surgical revival, [tplus] deciseconds from time of death, considered [late? "late" : "memory-intact"] revival under configured policy limits.", LOG_GAME)
+ return TRUE
else
user.visible_message("...[target.p_they()] convulses, then lies still.")
target.visible_message("...[target.p_they()] convulses, then lies still.")
From 2a0b3ce0362854d9e3e6ee366160460354ca5a5e Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Fri, 26 Jun 2020 23:48:56 -0700
Subject: [PATCH 08/51] typo
---
code/controllers/configuration/entries/policy.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/controllers/configuration/entries/policy.dm b/code/controllers/configuration/entries/policy.dm
index 48bfa666a1..6009811aca 100644
--- a/code/controllers/configuration/entries/policy.dm
+++ b/code/controllers/configuration/entries/policy.dm
@@ -3,6 +3,6 @@
config_entry_value = 300
integer = TRUE
-/datum/config_entry/keyed_list/policy_config
+/datum/config_entry/keyed_list/policyconfig
key_mode = KEY_MODE_TEXT
value_mode = VALUE_MODE_TEXT
From 2ea030ca3ea49931926bd2e605fd84338ee067ec Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Fri, 26 Jun 2020 23:53:52 -0700
Subject: [PATCH 09/51] fix
---
code/game/machinery/cloning.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm
index 49543487ce..1079bae0f5 100644
--- a/code/game/machinery/cloning.dm
+++ b/code/game/machinery/cloning.dm
@@ -403,7 +403,7 @@
var/policy = policies[POLICYCONFIG_ON_CLONE]
if(policy)
to_chat(occupant, policy)
- occupant.log_message("revived using cloning, [tplus] deciseconds from time of death.", LOG_GAME)
+ occupant.log_message("revived using cloning.", LOG_GAME)
occupant.forceMove(T)
update_icon()
From 7b101a801c104fdc274e0941bd7af233d2399655 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Mon, 29 Jun 2020 04:55:22 -0700
Subject: [PATCH 10/51] Update configuration.dm
---
code/__DEFINES/configuration.dm | 1 +
1 file changed, 1 insertion(+)
diff --git a/code/__DEFINES/configuration.dm b/code/__DEFINES/configuration.dm
index 39f1385d3b..a4bf69b2ad 100644
--- a/code/__DEFINES/configuration.dm
+++ b/code/__DEFINES/configuration.dm
@@ -10,6 +10,7 @@
#define CONFIG_ENTRY_HIDDEN 2 //can't see value
// Policy config keys
+// MAKE SURE THESE ARE UPPERCASE
/// Displayed to cloned patients
#define POLICYCONFIG_ON_CLONE "ON_CLONE"
/// Displayed to defibbed/revival surgery'd patients before the memory loss time threshold
From 836391075fe3cb49e51e2b595b37c27430ec7f1a Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Mon, 29 Jun 2020 05:03:13 -0700
Subject: [PATCH 11/51] Update config_entry.dm
---
code/controllers/configuration/config_entry.dm | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/code/controllers/configuration/config_entry.dm b/code/controllers/configuration/config_entry.dm
index 4647b83cd7..7e8b1c8f38 100644
--- a/code/controllers/configuration/config_entry.dm
+++ b/code/controllers/configuration/config_entry.dm
@@ -209,6 +209,8 @@
new_value = new_list
continue_check_value = new_list.len
if(continue_check_value && continue_check_key && ValidateListEntry(new_key, new_value))
+ new_key = preprocess_key(new_key)
+ new_value = preprocess_value(new_value)
config_entry_value[new_key] = new_value
return TRUE
return FALSE
@@ -216,6 +218,12 @@
/datum/config_entry/keyed_list/vv_edit_var(var_name, var_value)
return var_name != "splitter" && ..()
+/datum/config_entry/keyed_list/proc/preprocess_key(key)
+ return key
+
+/datum/config_entry/keyed_list/proc/preprocess_value(value)
+ return value
+
//snowflake for donator things being on one line smh
/datum/config_entry/multi_keyed_flag
vv_VAS = FALSE
From c88b7721ad9af09b5cd229f92a2435ca95826fa3 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Mon, 29 Jun 2020 05:03:45 -0700
Subject: [PATCH 12/51] Update policy.dm
---
code/controllers/configuration/entries/policy.dm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/code/controllers/configuration/entries/policy.dm b/code/controllers/configuration/entries/policy.dm
index 6009811aca..de611e1813 100644
--- a/code/controllers/configuration/entries/policy.dm
+++ b/code/controllers/configuration/entries/policy.dm
@@ -6,3 +6,6 @@
/datum/config_entry/keyed_list/policyconfig
key_mode = KEY_MODE_TEXT
value_mode = VALUE_MODE_TEXT
+
+/datum/config_entry/keyed_list/policyconfig/preprocess_key(key)
+ return uppertext(..())
From 45a3c47608a088d5c942beb84a5b6517a88eea65 Mon Sep 17 00:00:00 2001
From: Letter N <24603524+LetterN@users.noreply.github.com>
Date: Wed, 8 Jul 2020 15:10:49 +0800
Subject: [PATCH 13/51] removes fun
---
code/controllers/subsystem/chat.dm | 9 +-
code/modules/goonchat/browserOutput.dm | 144 ++++--
.../browserassets/html/browserOutput.html | 8 +-
.../browserassets/js/browserOutput.js | 485 ++++++++++--------
4 files changed, 381 insertions(+), 265 deletions(-)
diff --git a/code/controllers/subsystem/chat.dm b/code/controllers/subsystem/chat.dm
index 8d4de0c091..bbeb0683f0 100644
--- a/code/controllers/subsystem/chat.dm
+++ b/code/controllers/subsystem/chat.dm
@@ -4,6 +4,7 @@ SUBSYSTEM_DEF(chat)
wait = 1
priority = FIRE_PRIORITY_CHAT
init_order = INIT_ORDER_CHAT
+
var/list/payload = list()
@@ -17,7 +18,7 @@ SUBSYSTEM_DEF(chat)
return
-/datum/controller/subsystem/chat/proc/queue(target, message, handle_whitespace = TRUE)
+/datum/controller/subsystem/chat/proc/queue(target, message, handle_whitespace = TRUE, trailing_newline = TRUE, confidential = TRUE)
if(!target || !message)
return
@@ -35,8 +36,8 @@ SUBSYSTEM_DEF(chat)
if(handle_whitespace)
message = replacetext(message, "\n", "
")
message = replacetext(message, "\t", "[FOURSPACES][FOURSPACES]")
- message += "
"
-
+ if (trailing_newline)
+ message += "
"
//url_encode it TWICE, this way any UTF-8 characters are able to be decoded by the Javascript.
//Do the double-encoding here to save nanoseconds
@@ -47,7 +48,7 @@ SUBSYSTEM_DEF(chat)
var/client/C = CLIENT_FROM_VAR(I) //Grab us a client if possible
if(!C)
- return
+ continue
//Send it to the old style output window.
SEND_TEXT(C, original_message)
diff --git a/code/modules/goonchat/browserOutput.dm b/code/modules/goonchat/browserOutput.dm
index 6d9e141309..cd50408941 100644
--- a/code/modules/goonchat/browserOutput.dm
+++ b/code/modules/goonchat/browserOutput.dm
@@ -2,18 +2,30 @@
For the main html chat area
*********************************/
-//Precaching a bunch of shit
+/// Should match the value set in the browser js
+#define MAX_COOKIE_LENGTH 5
+
+//Precaching a bunch of shit. Someone ship this out of here
GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of icons for the browser output
-//On client, created on login
+//lazy renaming to chat_output, instead renamed to old chatOutput
+/**
+ * The chatOutput datum exists to handle the goonchat browser.
+ * On client, created on Client/New()
+ */
/datum/chatOutput
- var/client/owner //client ref
+ /// The client that owns us.
+ var/client/owner
+ /// How many times client data has been checked
var/total_checks = 0
- var/last_check = 0
- var/loaded = FALSE // Has the client loaded the browser output area?
- var/list/messageQueue //If they haven't loaded chat, this is where messages will go until they do
- var/cookieSent = FALSE // Has the client sent a cookie for analysis
- var/broken = FALSE
+ /// When to next clear the client data checks counter
+ var/next_time_to_clear = 0
+ /// Has the client loaded the browser output area?
+ var/loaded = FALSE
+ /// If they haven't loaded chat, this is where messages will go until they do
+ var/list/messageQueue
+ var/cookieSent = FALSE // Has the client sent a cookie for analysis
+ var/broken = FALSE
var/list/connectionHistory //Contains the connection history passed from chat cookie
var/adminMusicVolume = 25 //This is for the Play Global Sound verb
@@ -22,13 +34,18 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
messageQueue = list()
connectionHistory = list()
+/**
+ * start: Tries to load the chat browser
+ * Aborts if a problem is encountered.
+ * Async because this is called from Client/New.
+ */
/datum/chatOutput/proc/start()
+ set waitfor = FALSE
//Check for existing chat
if(!owner)
return FALSE
if(!winexists(owner, "browseroutput")) // Oh goddamnit.
- set waitfor = FALSE
broken = TRUE
message_admins("Couldn't start chat for [key_name_admin(owner)]!")
. = FALSE
@@ -43,6 +60,7 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
return TRUE
+/// Loads goonchat and sends assets.
/datum/chatOutput/proc/load()
set waitfor = FALSE
if(!owner)
@@ -53,6 +71,7 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
owner << browse(file('code/modules/goonchat/browserassets/html/browserOutput.html'), "window=browseroutput")
+/// Interprets input from the client. Will send data back if required.
/datum/chatOutput/Topic(href, list/href_list)
if(usr.client != owner)
return TRUE
@@ -83,20 +102,22 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
if("setMusicVolume")
data = setMusicVolume(arglist(params))
-
if("colorPresetPost") //User just swapped color presets in their goonchat preferences. Do we do anything else?
switch(href_list["preset"])
if("light")
owner.force_white_theme()
if("dark" || "normal")
owner.force_dark_theme()
-
+ // if("swaptodarkmode")
+ // swaptodarkmode()
+ // if("swaptolightmode")
+ // swaptolightmode()
if(data)
ehjax_send(data = data)
-//Called on chat output done-loading by JS.
+/// Called on chat output done-loading by JS.
/datum/chatOutput/proc/doneLoading()
if(loaded)
return
@@ -113,34 +134,75 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
messageQueue = null
sendClientData()
+ syncRegex()
+
//do not convert to to_chat()
SEND_TEXT(owner, "Failed to load fancy chat, reverting to old chat. Certain features won't work.")
+/// Hides the standard output and makes the browser visible.
/datum/chatOutput/proc/showChat()
winset(owner, "output", "is-visible=false")
winset(owner, "browseroutput", "is-disabled=false;is-visible=true")
+/// Calls syncRegex on all currently owned chatOutput datums
+/proc/syncChatRegexes()
+ for (var/user in GLOB.clients)
+ var/client/C = user
+ var/datum/chatOutput/Cchat = C.chatOutput
+ if (Cchat && !Cchat.broken && Cchat.loaded)
+ Cchat.syncRegex()
+
+/// Used to dynamically add regexes to the browser output. Currently only used by the IC filter.
+/datum/chatOutput/proc/syncRegex()
+ var/list/regexes = list()
+
+ if (config.ic_filter_regex)
+ regexes["show_filtered_ic_chat"] = list(
+ config.ic_filter_regex.name,
+ "ig",
+ "$1"
+ )
+
+ if (regexes.len)
+ ehjax_send(data = list("syncRegex" = regexes))
+
+/// Sends json encoded data to the browser.
/datum/chatOutput/proc/ehjax_send(client/C = owner, window = "browseroutput", data)
if(islist(data))
data = json_encode(data)
C << output("[data]", "[window]:ehjaxCallback")
-/datum/chatOutput/proc/sendMusic(music, pitch)
+/**
+ * Sends music data to the browser. If enabled by the browser, it will start playing.
+ * Arguments:
+ * music must be a https adress.
+ * extra_data is a list. The keys "pitch", "start" and "end" are used.
+ ** "pitch" determines the playback rate
+ ** "start" determines the start time of the sound
+ ** "end" determines when the musics stops playing
+ */
+/datum/chatOutput/proc/sendMusic(music, pitch, list/extra_data) //someone remove pitch
if(!findtext(music, GLOB.is_http_protocol))
return
var/list/music_data = list("adminMusic" = url_encode(url_encode(music)))
- if(pitch)
- music_data["musicRate"] = pitch
+
+ if(extra_data?.len)
+ music_data["musicRate"] = extra_data["pitch"] || pitch
+ music_data["musicSeek"] = extra_data["start"]
+ music_data["musicHalt"] = extra_data["end"]
+
ehjax_send(data = music_data)
+/// Stops music playing throw the browser.
/datum/chatOutput/proc/stopMusic()
ehjax_send(data = "stopMusic")
+/// Setter for adminMusicVolume. Sanitizes the value to between 0 and 100.
/datum/chatOutput/proc/setMusicVolume(volume = "")
if(volume)
adminMusicVolume = clamp(text2num(volume), 0, 100)
-//Sends client connection details to the chat to handle and save
+/// Sends client connection details to the chat to handle and save
/datum/chatOutput/proc/sendClientData()
//Get dem deets
var/list/deets = list("clientData" = list())
@@ -150,11 +212,11 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
var/data = json_encode(deets)
ehjax_send(data = data)
-//Called by client, sent data to investigate (cookie history so far)
+/// Called by client, sent data to investigate (cookie history so far)
/datum/chatOutput/proc/analyzeClientData(cookie = "")
//Spam check
- if(world.time > last_check + (3 SECONDS))
- last_check = world.time
+ if(world.time > next_time_to_clear)
+ next_time_to_clear = world.time + (3 SECONDS)
total_checks = 0
total_checks += 1
@@ -172,12 +234,13 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
if (connData && islist(connData) && connData.len > 0 && connData["connData"])
connectionHistory = connData["connData"] //lol fuck
var/list/found = new()
- if(connectionHistory.len > 5)
+
+ if(connectionHistory.len > MAX_COOKIE_LENGTH)
message_admins("[key_name(src.owner)] was kicked for an invalid ban cookie)")
qdel(owner)
return
- for(var/i in min(connectionHistory.len, 5) to 1 step -1)
+ for(var/i in connectionHistory.len to 1 step -1)
if(QDELETED(owner))
//he got cleaned up before we were done
return
@@ -191,45 +254,33 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
//Uh oh this fucker has a history of playing on a banned account!!
if (found.len > 0)
- //TODO: add a new evasion ban for the CURRENT client details, using the matched row details
message_admins("[key_name(src.owner)] has a cookie from a banned account! (Matched: [found["ckey"]], [found["ip"]], [found["compid"]])")
log_admin_private("[key_name(owner)] has a cookie from a banned account! (Matched: [found["ckey"]], [found["ip"]], [found["compid"]])")
cookieSent = TRUE
-//Called by js client every 60 seconds
+/// Called by js client every 60 seconds
/datum/chatOutput/proc/ping()
return "pong"
-//Called by js client on js error
+/// Called by js client on js error
/datum/chatOutput/proc/debug(error)
log_world("\[[time2text(world.realtime, "YYYY-MM-DD hh:mm:ss")]\] Client: [(src.owner.key ? src.owner.key : src.owner)] triggered JS error: [error]")
-//Global chat procs
-/proc/to_chat_immediate(target, message, handle_whitespace=TRUE)
+/// Global chat proc. to_chat_immediate will circumvent SSchat and send data as soon as possible.
+/proc/to_chat_immediate(target, message, handle_whitespace = TRUE, trailing_newline = TRUE, confidential = FALSE)
if(!target || !message)
return
- //Ok so I did my best but I accept that some calls to this will be for shit like sound and images
- //It stands that we PROBABLY don't want to output those to the browser output so just handle them here
- if (istype(target, /savefile))
- CRASH("Invalid message! [message]")
-
- if(!istext(message))
- if (istype(message, /image) || istype(message, /sound))
- CRASH("Invalid message! [message]")
- return
-
if(target == world)
target = GLOB.clients
var/original_message = message
- //Some macros remain in the string even after parsing and fuck up the eventual output
- message = replacetext(message, "\improper", "")
- message = replacetext(message, "\proper", "")
if(handle_whitespace)
message = replacetext(message, "\n", "
")
- message = replacetext(message, "\t", "[FOURSPACES][FOURSPACES]")
+ message = replacetext(message, "\t", "[FOURSPACES][FOURSPACES]") //EIGHT SPACES IN TOTAL!!
+ if(trailing_newline)
+ message += "
"
if(islist(target))
// Do the double-encoding outside the loop to save nanoseconds
@@ -272,14 +323,19 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
// url_encode it TWICE, this way any UTF-8 characters are able to be decoded by the Javascript.
C << output(url_encode(url_encode(message)), "browseroutput:output")
-/proc/to_chat(target, message, handle_whitespace = TRUE)
+/// Sends a text message to the target.
+/proc/to_chat(target, message, handle_whitespace = TRUE, trailing_newline = TRUE, confidential = FALSE)
if(Master.current_runlevel == RUNLEVEL_INIT || !SSchat?.initialized)
- to_chat_immediate(target, message, handle_whitespace)
+ to_chat_immediate(target, message, handle_whitespace, trailing_newline, confidential)
return
- SSchat.queue(target, message, handle_whitespace)
+ SSchat.queue(target, message, handle_whitespace, trailing_newline, confidential)
-/datum/chatOutput/proc/swaptolightmode() //Dark mode light mode stuff. Yell at KMC if this breaks! (See darkmode.dm for documentation)
+/// Dark mode light mode stuff. Yell at KMC if this breaks! (See darkmode.dm for documentation)
+/datum/chatOutput/proc/swaptolightmode()
owner.force_white_theme()
+/// Light mode stuff. (See darkmode.dm for documentation)
/datum/chatOutput/proc/swaptodarkmode()
owner.force_dark_theme()
+
+#undef MAX_COOKIE_LENGTH
diff --git a/code/modules/goonchat/browserassets/html/browserOutput.html b/code/modules/goonchat/browserassets/html/browserOutput.html
index 0acb127517..ce51cd8de8 100644
--- a/code/modules/goonchat/browserassets/html/browserOutput.html
+++ b/code/modules/goonchat/browserassets/html/browserOutput.html
@@ -38,10 +38,10 @@
-
Decrease font size -
-
Increase font size +
-
Decrease line height -
-
Increase line height +
+
Decrease font size
+
Increase font size
+
Decrease line height
+
Increase line height
Toggle ping display
Highlight string
Save chat log
diff --git a/code/modules/goonchat/browserassets/js/browserOutput.js b/code/modules/goonchat/browserassets/js/browserOutput.js
index 0d53b44ba8..ea8996bdfa 100644
--- a/code/modules/goonchat/browserassets/js/browserOutput.js
+++ b/code/modules/goonchat/browserassets/js/browserOutput.js
@@ -29,12 +29,13 @@ var opts = {
'scrollSnapTolerance': 10, //If within x pixels of bottom
'clickTolerance': 10, //Keep focus if outside x pixels of mousedown position on mouseup
'imageRetryDelay': 50, //how long between attempts to reload images (in ms)
- 'imageRetryLimit': 50, //how many attempts should we make?
+ 'imageRetryLimit': 50, //how many attempts should we make?
'popups': 0, //Amount of popups opened ever
'wasd': false, //Is the user in wasd mode?
'priorChatHeight': 0, //Thing for height-resizing detection
'restarting': false, //Is the round restarting?
'colorPreset': 0, // index in the color presets list.
+ //'darkmode':false, //Are we using darkmode? If not WHY ARE YOU LIVING IN 2009??? <- /tg/ take on darktheme
//Options menu
'selectedSubLoop': null, //Contains the interval loop for closing the selected sub menu
@@ -65,14 +66,17 @@ var opts = {
'volumeUpdateDelay': 5000, //Time from when the volume updates to data being sent to the server
'volumeUpdating': false, //True if volume update function set to fire
'updatedVolume': 0, //The volume level that is sent to the server
-
+ 'musicStartAt': 0, //The position the music starts playing
+ 'musicEndAt': 0, //The position the music... stops playing... if null, doesn't apply (so the music runs through)
+
'defaultMusicVolume': 25,
'messageCombining': true,
};
+var replaceRegexes = {};
-// Array of names for chat display color presets.
+// Array of names for chat display color presets. CIT SPECIFIC.
// If not set to normal, a CSS file `browserOutput_${name}.css` will be added to the head.
var colorPresets = [
'normal',
@@ -84,12 +88,6 @@ function clamp(val, min, max) {
return Math.max(min, Math.min(val, max))
}
-function outerHTML(el) {
- var wrap = document.createElement('div');
- wrap.appendChild(el.cloneNode(true));
- return wrap.innerHTML;
-}
-
//Polyfill for fucking date now because of course IE8 and below don't support it
if (!Date.now) {
Date.now = function now() {
@@ -103,6 +101,7 @@ if (typeof String.prototype.trim !== 'function') {
};
}
+// CIT SPECIFIC.
function updateColorPreset() {
var el = $("#colorPresetLink")[0];
el.href = "browserOutput_"+colorPresets[opts.colorPreset]+".css";
@@ -172,7 +171,7 @@ function byondDecode(message) {
// The replace for + is because FOR SOME REASON, BYOND replaces spaces with a + instead of %20, and a plus with %2b.
// Marvelous.
message = message.replace(/\+/g, "%20");
- try {
+ try {
// This is a workaround for the above not always working when BYOND's shitty url encoding breaks. (byond bug id:2399401)
if (decodeURIComponent) {
message = decodeURIComponent(message);
@@ -185,57 +184,71 @@ function byondDecode(message) {
return message;
}
-//Actually turns the highlight term match into appropriate html
-function addHighlightMarkup(match) {
- var extra = '';
- if (opts.highlightColor) {
- extra += ' style="background-color: '+opts.highlightColor+'"';
+function replaceRegex() {
+ var selectedRegex = replaceRegexes[$(this).attr('replaceRegex')];
+ if (selectedRegex) {
+ var replacedText = $(this).html().replace(selectedRegex[0], selectedRegex[1]);
+ $(this).html(replacedText);
}
- return '
'+match+'';
+ $(this).removeAttr('replaceRegex');
}
-//Highlights words based on user settings
+// Get a highlight markup span
+function createHighlightMarkup() {
+ var extra = '';
+ if (opts.highlightColor) {
+ extra += ' style="background-color: ' + opts.highlightColor + '"';
+ }
+ return '
';
+}
+
+// Get all child text nodes that match a regex pattern
+function getTextNodes(elem, pattern) {
+ var result = $([]);
+ $(elem).contents().each(function(idx, child) {
+ if (child.nodeType === 3 && /\S/.test(child.nodeValue) && pattern.test(child.nodeValue)) {
+ result = result.add(child);
+ }
+ else {
+ result = result.add(getTextNodes(child, pattern));
+ }
+ });
+ return result;
+}
+
+// Highlight all text terms matching the registered regex patterns
function highlightTerms(el) {
- if (el.children.length > 0) {
- for(var h = 0; h < el.children.length; h++){
- highlightTerms(el.children[h]);
- }
- }
+ var pattern = new RegExp("(" + opts.highlightTerms.join('|') + ")", 'gi');
+ var nodes = getTextNodes(el, pattern);
- var hasTextNode = false;
- for (var node = 0; node < el.childNodes.length; node++)
- {
- if (el.childNodes[node].nodeType === 3)
- {
- hasTextNode = true;
- break;
- }
- }
-
- if (hasTextNode) { //If element actually has text
- var newText = '';
- for (var c = 0; c < el.childNodes.length; c++) { //Each child element
- if (el.childNodes[c].nodeType === 3) { //Is it text only?
- var words = el.childNodes[c].data.split(' ');
- for (var w = 0; w < words.length; w++) { //Each word in the text
- var newWord = null;
- for (var i = 0; i < opts.highlightTerms.length; i++) { //Each highlight term
- if (opts.highlightTerms[i] && words[w].toLowerCase().indexOf(opts.highlightTerms[i].toLowerCase()) > -1) { //If a match is found
- newWord = words[w].replace("<", "<").replace(new RegExp(opts.highlightTerms[i], 'gi'), addHighlightMarkup);
- break;
- }
- if (window.console)
- console.log(newWord)
- }
- newText += newWord || words[w].replace("<", "<");
- newText += w >= words.length - 1 ? '' : ' ';
- }
- } else { //Every other type of element
- newText += outerHTML(el.childNodes[c]);
+ nodes.each(function (idx, node) {
+ var content = $(node).text();
+ var parent = $(node).parent();
+ var pre = $(node.previousSibling);
+ $(node).remove();
+ content.split(pattern).forEach(function (chunk) {
+ // Get our highlighted span/text node
+ var toInsert = null;
+ if (pattern.test(chunk)) {
+ var tmpElem = $(createHighlightMarkup());
+ tmpElem.text(chunk);
+ toInsert = tmpElem;
}
- }
- el.innerHTML = newText;
- }
+ else {
+ toInsert = document.createTextNode(chunk);
+ }
+
+ // Insert back into our element
+ if (pre.length == 0) {
+ var result = parent.prepend(toInsert);
+ pre = $(result[0].firstChild);
+ }
+ else {
+ pre.after(toInsert);
+ pre = $(pre[0].nextSibling);
+ }
+ });
+ });
}
function iconError(E) {
@@ -268,41 +281,96 @@ function output(message, flag) {
message = byondDecode(message).trim();
- //Stuff we do along with appending a message
- var atBottom = false;
- var bodyHeight = $('body').height();
- var messagesHeight = $messages.outerHeight();
- var scrollPos = $('body,html').scrollTop();
-
- //Should we snap the output to the bottom?
- if (bodyHeight + scrollPos >= messagesHeight - opts.scrollSnapTolerance) {
- atBottom = true;
- if ($('#newMessages').length) {
- $('#newMessages').remove();
- }
- //If not, put the new messages box in
- } else {
- if ($('#newMessages').length) {
- var messages = $('#newMessages .number').text();
- messages = parseInt(messages);
- messages++;
- $('#newMessages .number').text(messages);
- if (messages == 2) {
- $('#newMessages .messageWord').append('s');
+ //The behemoth of filter-code (for Admin message filters)
+ //Note: This is proooobably hella inefficient
+ var filteredOut = false;
+ if (opts.hasOwnProperty('showMessagesFilters') && !opts.showMessagesFilters['All'].show) {
+ //Get this filter type (defined by class on message)
+ var messageHtml = $.parseHTML(message),
+ messageClasses;
+ if (opts.hasOwnProperty('filterHideAll') && opts.filterHideAll) {
+ var internal = false;
+ messageClasses = (!!$(messageHtml).attr('class') ? $(messageHtml).attr('class').split(/\s+/) : false);
+ if (messageClasses) {
+ for (var i = 0; i < messageClasses.length; i++) { //Every class
+ if (messageClasses[i] == 'internal') {
+ internal = true;
+ break;
+ }
+ }
+ }
+ if (!internal) {
+ filteredOut = 'All';
}
} else {
- $messages.after('
1 new message ');
+ //If the element or it's child have any classes
+ if (!!$(messageHtml).attr('class') || !!$(messageHtml).children().attr('class')) {
+ messageClasses = $(messageHtml).attr('class').split(/\s+/);
+ if (!!$(messageHtml).children().attr('class')) {
+ messageClasses = messageClasses.concat($(messageHtml).children().attr('class').split(/\s+/));
+ }
+ var tempCount = 0;
+ for (var i = 0; i < messageClasses.length; i++) { //Every class
+ var thisClass = messageClasses[i];
+ $.each(opts.showMessagesFilters, function(key, val) { //Every filter
+ if (key !== 'All' && val.show === false && typeof val.match != 'undefined') {
+ for (var i = 0; i < val.match.length; i++) {
+ var matchClass = val.match[i];
+ if (matchClass == thisClass) {
+ filteredOut = key;
+ break;
+ }
+ }
+ }
+ if (filteredOut) return false;
+ });
+ if (filteredOut) break;
+ tempCount++;
+ }
+ } else {
+ if (!opts.showMessagesFilters['Misc'].show) {
+ filteredOut = 'Misc';
+ }
+ }
}
}
+ //Stuff we do along with appending a message
+ var atBottom = false;
+ if (!filteredOut) {
+ var bodyHeight = $('body').height();
+ var messagesHeight = $messages.outerHeight();
+ var scrollPos = $('body,html').scrollTop();
+
+ //Should we snap the output to the bottom?
+ if (bodyHeight + scrollPos >= messagesHeight - opts.scrollSnapTolerance) {
+ atBottom = true;
+ if ($('#newMessages').length) {
+ $('#newMessages').remove();
+ }
+ //If not, put the new messages box in
+ } else {
+ if ($('#newMessages').length) {
+ var messages = $('#newMessages .number').text();
+ messages = parseInt(messages);
+ messages++;
+ $('#newMessages .number').text(messages);
+ if (messages == 2) {
+ $('#newMessages .messageWord').append('s');
+ }
+ } else {
+ $messages.after('
1 new message ');
+ }
+ }
+ }
opts.messageCount++;
//Pop the top message off if history limit reached
- //if (opts.messageCount >= opts.messageLimit) {
- //$messages.children('div.entry:first-child').remove();
- //opts.messageCount--; //I guess the count should only ever equal the limit
- //}
+ if (opts.messageCount >= opts.messageLimit) {
+ $messages.children('div.entry:first-child').remove();
+ opts.messageCount--; //I guess the count should only ever equal the limit
+ }
// Create the element - if combining is off, we use it, and if it's on, we
// might discard it bug need to check its text content. Some messages vary
@@ -323,6 +391,7 @@ function output(message, flag) {
badge = $('
', {'class': 'r', 'text': 2});
}
lastmessages.html(message);
+ lastmessages.find('[replaceRegex]').each(replaceRegex);
lastmessages.append(badge);
badge.animate({
"font-size": "0.9em"
@@ -340,6 +409,13 @@ function output(message, flag) {
//Actually append the message
entry.className = 'entry';
+ if (filteredOut) {
+ entry.className += ' hidden';
+ entry.setAttribute('data-filter', filteredOut);
+ }
+
+ $(entry).find('[replaceRegex]').each(replaceRegex);
+
$last_message = trimmed_message;
$messages[0].appendChild(entry);
$(entry).find("img.icon").error(iconError);
@@ -360,11 +436,11 @@ function output(message, flag) {
//Actually do the snap
//Stuff we can do after the message shows can go here, in the interests of responsiveness
if (opts.highlightTerms && opts.highlightTerms.length > 0) {
- highlightTerms(entry);
+ highlightTerms($(entry));
}
}
- if (atBottom) {
+ if (!filteredOut && atBottom) {
$('body,html').scrollTop($messages.outerHeight());
}
}
@@ -408,6 +484,20 @@ function toHex(n) {
return "0123456789ABCDEF".charAt((n-n%16)/16) + "0123456789ABCDEF".charAt(n%16);
}
+/*
+function swap() { //Swap to darkmode
+ if (opts.darkmode){
+ document.getElementById("sheetofstyles").href = "browserOutput_white.css";
+ opts.darkmode = false;
+ runByond('?_src_=chat&proc=swaptolightmode');
+ } else {
+ document.getElementById("sheetofstyles").href = "browserOutput.css";
+ opts.darkmode = true;
+ runByond('?_src_=chat&proc=swaptodarkmode');
+ }
+ setCookie('darkmode', (opts.darkmode ? 'true' : 'false'), 365);
+}
+*/
function handleClientData(ckey, ip, compid) {
//byond sends player info to here
var currentData = {'ckey': ckey, 'ip': ip, 'compid': compid};
@@ -488,6 +578,7 @@ function ehjaxCallback(data) {
} else if (data.adminMusic) {
if (typeof data.adminMusic === 'string') {
var adminMusic = byondDecode(data.adminMusic);
+ var bindLoadedData = false;
adminMusic = adminMusic.match(/https?:\/\/\S+/) || '';
if (data.musicRate) {
var newRate = Number(data.musicRate);
@@ -497,9 +588,32 @@ function ehjaxCallback(data) {
} else {
$('#adminMusic').prop('defaultPlaybackRate', 1.0);
}
+ if (data.musicSeek) {
+ opts.musicStartAt = Number(data.musicSeek) || 0;
+ bindLoadedData = true;
+ } else {
+ opts.musicStartAt = 0;
+ }
+ if (data.musicHalt) {
+ opts.musicEndAt = Number(data.musicHalt) || null;
+ bindLoadedData = true;
+ }
+ if (bindLoadedData) {
+ $('#adminMusic').one('loadeddata', adminMusicLoadedData);
+ }
$('#adminMusic').prop('src', adminMusic);
$('#adminMusic').trigger("play");
}
+ } else if (data.syncRegex) {
+ for (var i in data.syncRegex) {
+
+ var regexData = data.syncRegex[i];
+ var regexName = regexData[0];
+ var regexFlags = regexData[1];
+ var regexReplaced = regexData[2];
+
+ replaceRegexes[i] = [new RegExp(regexName, regexFlags), regexReplaced];
+ }
}
}
}
@@ -530,6 +644,27 @@ function sendVolumeUpdate() {
}
}
+function adminMusicEndCheck(event) {
+ if (opts.musicEndAt) {
+ if ($('#adminMusic').prop('currentTime') >= opts.musicEndAt) {
+ $('#adminMusic').off(event);
+ $('#adminMusic').trigger('pause');
+ $('#adminMusic').prop('src', '');
+ }
+ } else {
+ $('#adminMusic').off(event);
+ }
+}
+
+function adminMusicLoadedData(event) {
+ if (opts.musicStartAt && ($('#adminMusic').prop('duration') === Infinity || (opts.musicStartAt <= $('#adminMusic').prop('duration'))) ) {
+ $('#adminMusic').prop('currentTime', opts.musicStartAt);
+ }
+ if (opts.musicEndAt) {
+ $('#adminMusic').on('timeupdate', adminMusicEndCheck);
+ }
+}
+
function subSlideUp() {
$(this).removeClass('scroll');
$(this).css('height', '');
@@ -608,23 +743,32 @@ $(function() {
*
******************************************/
var savedConfig = {
- 'sfontSize': getCookie('fontsize'),
- 'slineHeight': getCookie('lineheight'),
+ fontsize: getCookie('fontsize'), //no need for compatabiliy, cookie name is the same
+ lineheight: getCookie('lineheight'),
'spingDisabled': getCookie('pingdisabled'),
'shighlightTerms': getCookie('highlightterms'),
'shighlightColor': getCookie('highlightcolor'),
'smusicVolume': getCookie('musicVolume'),
'smessagecombining': getCookie('messagecombining'),
+ 'sdarkmode': getCookie('darkmode'),
'scolorPreset': getCookie('colorpreset'),
};
- if (savedConfig.sfontSize) {
- $messages.css('font-size', savedConfig.sfontSize);
- internalOutput('
Loaded font size setting of: '+savedConfig.sfontSize+'', 'internal');
+ if (savedConfig.fontsize) {
+ $messages.css('font-size', savedConfig.fontsize);
+ internalOutput('
Loaded font size setting of: '+savedConfig.fontsize+'', 'internal');
}
- if (savedConfig.slineHeight) {
- $("body").css('line-height', savedConfig.slineHeight);
- internalOutput('
Loaded line height setting of: '+savedConfig.slineHeight+'', 'internal');
+ if (savedConfig.lineheight) {
+ $("body").css('line-height', savedConfig.lineheight);
+ internalOutput('
Loaded line height setting of: '+savedConfig.lineheight+'', 'internal');
+ }
+ // if(savedConfig.sdarkmode == 'true'){
+ // swap();
+ // }
+ if (savedConfig.scolorPreset) {
+ opts.colorPreset = Number(savedConfig.scolorPreset);
+ updateColorPreset();
+ internalOutput('
Loaded color preset of: '+colorPresets[opts.colorPreset]+'', 'internal');
}
if (savedConfig.spingDisabled) {
if (savedConfig.spingDisabled == 'true') {
@@ -634,15 +778,11 @@ $(function() {
internalOutput('
Loaded ping display of: '+(opts.pingDisabled ? 'hidden' : 'visible')+'', 'internal');
}
if (savedConfig.shighlightTerms) {
- var savedTerms = $.parseJSON(savedConfig.shighlightTerms);
- var actualTerms = '';
- for (var i = 0; i < savedTerms.length; i++) {
- if (savedTerms[i]) {
- actualTerms += savedTerms[i] + ', ';
- }
- }
+ var savedTerms = $.parseJSON(savedConfig.shighlightTerms).filter(function (entry) {
+ return entry !== null && /\S/.test(entry);
+ });
+ var actualTerms = savedTerms.length != 0 ? savedTerms.join(', ') : null;
if (actualTerms) {
- actualTerms = actualTerms.substring(0, actualTerms.length - 2);
internalOutput('
Loaded highlight strings of: ' + actualTerms+'', 'internal');
opts.highlightTerms = savedTerms;
}
@@ -651,13 +791,6 @@ $(function() {
opts.highlightColor = savedConfig.shighlightColor;
internalOutput('
Loaded highlight color of: '+savedConfig.shighlightColor+'', 'internal');
}
-
- if (savedConfig.scolorPreset) {
- opts.colorPreset = Number(savedConfig.scolorPreset);
- updateColorPreset();
- internalOutput('
Loaded color preset of: '+colorPresets[opts.colorPreset]+'', 'internal');
- }
-
if (savedConfig.smusicVolume) {
var newVolume = clamp(savedConfig.smusicVolume, 0, 100);
$('#adminMusic').prop('volume', newVolume / 100);
@@ -669,7 +802,7 @@ $(function() {
else{
$('#adminMusic').prop('volume', opts.defaultMusicVolume / 100);
}
-
+
if (savedConfig.smessagecombining) {
if (savedConfig.smessagecombining == 'false') {
opts.messageCombining = false;
@@ -746,76 +879,17 @@ $(function() {
href = escaper(href);
runByond('?action=openLink&link='+href);
}
+ runByond('byond://winset?mapwindow.map.focus=true');
});
- //Fuck everything about this event. Will look into alternatives.
$('body').on('keydown', function(e) {
if (e.target.nodeName == 'INPUT' || e.target.nodeName == 'TEXTAREA') {
return;
}
-
if (e.ctrlKey || e.altKey || e.shiftKey) { //Band-aid "fix" for allowing ctrl+c copy paste etc. Needs a proper fix.
return;
}
-
- e.preventDefault()
-
- var k = e.which;
- // Hardcoded because else there would be no feedback message.
- if (k == 113) { // F2
- runByond('byond://winset?screenshot=auto');
- internalOutput('Screenshot taken', 'internal');
- }
-
- var c = "";
- switch (k) {
- case 8:
- c = 'BACK';
- case 9:
- c = 'TAB';
- case 13:
- c = 'ENTER';
- case 19:
- c = 'PAUSE';
- case 27:
- c = 'ESCAPE';
- case 33: // Page up
- c = 'NORTHEAST';
- case 34: // Page down
- c = 'SOUTHEAST';
- case 35: // End
- c = 'SOUTHWEST';
- case 36: // Home
- c = 'NORTHWEST';
- case 37:
- c = 'WEST';
- case 38:
- c = 'NORTH';
- case 39:
- c = 'EAST';
- case 40:
- c = 'SOUTH';
- case 45:
- c = 'INSERT';
- case 46:
- c = 'DELETE';
- case 93: // That weird thing to the right of alt gr.
- c = 'APPS';
-
- default:
- c = String.fromCharCode(k);
- }
-
- if (c.length == 0) {
- if (!e.shiftKey) {
- c = c.toLowerCase();
- }
- runByond('byond://winset?mapwindow.map.focus=true;mainwindow.input.text='+c);
- return false;
- } else {
- runByond('byond://winset?mapwindow.map.focus=true');
- return false;
- }
+ runByond('byond://winset?mapwindow.map.focus=true');
});
//Mildly hacky fix for scroll issues on mob change (interface gets resized sometimes, messing up snap-scroll)
@@ -843,6 +917,9 @@ $(function() {
$('#toggleOptions').click(function(e) {
handleToggleClick($subOptions, $(this));
});
+ // $('#darkmodetoggle').click(function(e) {
+ // swap();
+ // });
$('#toggleAudio').click(function(e) {
handleToggleClick($subAudio, $(this));
});
@@ -856,41 +933,31 @@ $(function() {
});
$('#decreaseFont').click(function(e) {
- var fontSize = parseInt($messages.css('font-size'));
- fontSize = fontSize - 1 + 'px';
- $messages.css({'font-size': fontSize});
- setCookie('fontsize', fontSize, 365);
- internalOutput('
Font size set to '+fontSize+'', 'internal');
+ savedConfig.fontsize = Math.max(parseInt(savedConfig.fontsize || 13) - 1, 1) + 'px';
+ $messages.css({'font-size': savedConfig.fontsize});
+ setCookie('fontsize', savedConfig.fontsize, 365);
+ internalOutput('
Font size set to '+savedConfig.fontsize+'', 'internal');
});
$('#increaseFont').click(function(e) {
- var fontSize = parseInt($messages.css('font-size'));
- fontSize = fontSize + 1 + 'px';
- $messages.css({'font-size': fontSize});
- setCookie('fontsize', fontSize, 365);
- internalOutput('
Font size set to '+fontSize+'', 'internal');
+ savedConfig.fontsize = (parseInt(savedConfig.fontsize || 13) + 1) + 'px';
+ $messages.css({'font-size': savedConfig.fontsize});
+ setCookie('fontsize', savedConfig.fontsize, 365);
+ internalOutput('
Font size set to '+savedConfig.fontsize+'', 'internal');
});
$('#decreaseLineHeight').click(function(e) {
- var Heightline = parseFloat($("body").css('line-height'));
- var Sizefont = parseFloat($("body").css('font-size'));
- var lineheightvar = Heightline / Sizefont
- lineheightvar -= 0.1;
- lineheightvar = lineheightvar.toFixed(1)
- $("body").css({'line-height': lineheightvar});
- setCookie('lineheight', lineheightvar, 365);
- internalOutput('
Line height set to '+lineheightvar+'', 'internal');
+ savedConfig.lineheight = Math.max(parseFloat(savedConfig.lineheight || 1.2) - 0.1, 0.1).toFixed(1);
+ $("body").css({'line-height': savedConfig.lineheight});
+ setCookie('lineheight', savedConfig.lineheight, 365);
+ internalOutput('
Line height set to '+savedConfig.lineheight+'', 'internal');
});
$('#increaseLineHeight').click(function(e) {
- var Heightline = parseFloat($("body").css('line-height'));
- var Sizefont = parseFloat($("body").css('font-size'));
- var lineheightvar = Heightline / Sizefont
- lineheightvar += 0.1;
- lineheightvar = lineheightvar.toFixed(1)
- $("body").css({'line-height': lineheightvar});
- setCookie('lineheight', lineheightvar, 365);
- internalOutput('
Line height set to '+lineheightvar+'', 'internal');
+ savedConfig.lineheight = (parseFloat(savedConfig.lineheight || 1.2) + 0.1).toFixed(1);
+ $("body").css({'line-height': savedConfig.lineheight});
+ setCookie('lineheight', savedConfig.lineheight, 365);
+ internalOutput('
Line height set to '+savedConfig.lineheight+'', 'internal');
});
$('#togglePing').click(function(e) {
@@ -908,13 +975,13 @@ $(function() {
// Requires IE 10+ to issue download commands. Just opening a popup
// window will cause Ctrl+S to save a blank page, ignoring innerHTML.
if (!window.Blob) {
- output('
This function is only supported on IE 10+. Upgrade if possible.', 'internal');
+ output('
This function is only supported on IE 10 and up. Upgrade if possible.', 'internal');
return;
}
$.ajax({
type: 'GET',
- url: 'browserOutput.css',
+ url: 'browserOutput_white.css',
success: function(styleData) {
var blob = new Blob(['
Chat Log', $messages.html(), '']);
@@ -958,20 +1025,12 @@ $(function() {
$('body').on('submit', '#highlightTermForm', function(e) {
e.preventDefault();
- var count = 0;
- while (count < opts.highlightLimit) {
+ opts.highlightTerms = [];
+ for (var count = 0; count < opts.highlightLimit; count++) {
var term = $('#highlightTermInput'+count).val();
- if (term) {
- term = term.trim();
- if (term === '') {
- opts.highlightTerms[count] = null;
- } else {
- opts.highlightTerms[count] = term.toLowerCase();
- }
- } else {
- opts.highlightTerms[count] = null;
+ if (term !== null && /\S/.test(term)) {
+ opts.highlightTerms.push(term.trim().toLowerCase());
}
- count++;
}
var color = $('#highlightColor').val();
@@ -992,8 +1051,8 @@ $(function() {
$messages.empty();
opts.messageCount = 0;
});
-
- $('#changeColorPreset').click(function() {
+
+ $('#changeColorPreset').click(function() { //CIT SPECIFIC
opts.colorPreset = (opts.colorPreset+1) % colorPresets.length;
updateColorPreset();
setCookie('colorpreset', opts.colorPreset, 365);
@@ -1026,9 +1085,9 @@ $(function() {
});
$('img.icon').error(iconError);
-
-
-
+
+
+
/*****************************************
*
From f757e54db909078d4d9b39379ff177f4335d0544 Mon Sep 17 00:00:00 2001
From: Letter N <24603524+LetterN@users.noreply.github.com>
Date: Wed, 8 Jul 2020 15:59:44 +0800
Subject: [PATCH 14/51] muh immursion
---
code/controllers/configuration/configuration.dm | 17 +++++++++++++++++
code/modules/mob/living/say.dm | 10 ++++++++++
config/in_character_filter.txt | 7 +++++++
3 files changed, 34 insertions(+)
create mode 100644 config/in_character_filter.txt
diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm
index 31431ddab9..3e7886bcf9 100644
--- a/code/controllers/configuration/configuration.dm
+++ b/code/controllers/configuration/configuration.dm
@@ -414,3 +414,20 @@
continue
runnable_modes[M] = probabilities[M.config_tag]
return runnable_modes
+
+/datum/controller/configuration/proc/LoadChatFilter()
+ var/list/in_character_filter = list()
+
+ if(!fexists("[directory]/in_character_filter.txt"))
+ return
+ log_config("Loading config file in_character_filter.txt...")
+ for(var/line in world.file2list("[directory]/in_character_filter.txt"))
+ if(!line)
+ continue
+ if(findtextEx(line,"#",1,2))
+ continue
+ in_character_filter += REGEX_QUOTE(line)
+
+ ic_filter_regex = in_character_filter.len ? regex("\\b([jointext(in_character_filter, "|")])\\b", "i") : null
+
+ syncChatRegexes()
diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm
index 6caf96fedc..6db4356de7 100644
--- a/code/modules/mob/living/say.dm
+++ b/code/modules/mob/living/say.dm
@@ -88,11 +88,21 @@ GLOBAL_LIST_INIT(department_radio_keys, list(
var/static/list/one_character_prefix = list(MODE_HEADSET = TRUE, MODE_ROBOT = TRUE, MODE_WHISPER = TRUE)
+ var/ic_blocked = FALSE
+ if(client && !forced && config.ic_filter_regex && findtext(message, config.ic_filter_regex))
+ //The filter doesn't act on the sanitized message, but the raw message.
+ ic_blocked = TRUE
+
if(sanitize)
message = trim(copytext_char(sanitize(message), 1, MAX_MESSAGE_LEN))
if(!message || message == "")
return
+ if(ic_blocked)
+ //The filter warning message shows the sanitized message though.
+ to_chat(src, "
That message contained a word prohibited in IC chat! Consider reviewing the server rules.\n\"[message]\"")
+ return
+
var/datum/saymode/saymode = SSradio.saymodes[talk_key]
var/message_mode = get_message_mode(message)
var/original_message = message
diff --git a/config/in_character_filter.txt b/config/in_character_filter.txt
new file mode 100644
index 0000000000..46df3fd60c
--- /dev/null
+++ b/config/in_character_filter.txt
@@ -0,0 +1,7 @@
+###############################################################################################
+# Words that will block in character chat messages from sending. #
+# Case is not important. Commented-out examples are listed below, just remove the "#". #
+###############################################################################################
+#lol
+#omg
+#wtf
\ No newline at end of file
From 05684e7196648d11238b0ec91022e3c7fc48e319 Mon Sep 17 00:00:00 2001
From: Letter N <24603524+LetterN@users.noreply.github.com>
Date: Wed, 8 Jul 2020 16:36:58 +0800
Subject: [PATCH 15/51] no config filter thing yet, but the code for it is
"ready"
---
code/controllers/configuration/configuration.dm | 4 +++-
code/modules/goonchat/browserOutput.dm | 4 ++--
code/modules/mob/living/say.dm | 3 ++-
3 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm
index 3e7886bcf9..1c6e96f9e4 100644
--- a/code/controllers/configuration/configuration.dm
+++ b/code/controllers/configuration/configuration.dm
@@ -14,6 +14,7 @@
var/list/modes // allowed modes
var/list/gamemode_cache
var/list/votable_modes // votable modes
+ // var/list/ic_filter_regex
var/list/storyteller_cache
var/list/mode_names
var/list/mode_reports
@@ -414,7 +415,7 @@
continue
runnable_modes[M] = probabilities[M.config_tag]
return runnable_modes
-
+/*
/datum/controller/configuration/proc/LoadChatFilter()
var/list/in_character_filter = list()
@@ -431,3 +432,4 @@
ic_filter_regex = in_character_filter.len ? regex("\\b([jointext(in_character_filter, "|")])\\b", "i") : null
syncChatRegexes()
+*/
diff --git a/code/modules/goonchat/browserOutput.dm b/code/modules/goonchat/browserOutput.dm
index cd50408941..ce27dccb74 100644
--- a/code/modules/goonchat/browserOutput.dm
+++ b/code/modules/goonchat/browserOutput.dm
@@ -155,14 +155,14 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("tmp/iconCache.sav")) //Cache of ico
/// Used to dynamically add regexes to the browser output. Currently only used by the IC filter.
/datum/chatOutput/proc/syncRegex()
var/list/regexes = list()
-
+ /*
if (config.ic_filter_regex)
regexes["show_filtered_ic_chat"] = list(
config.ic_filter_regex.name,
"ig",
"
$1"
)
-
+ */
if (regexes.len)
ehjax_send(data = list("syncRegex" = regexes))
diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm
index 6db4356de7..66c2cd96c7 100644
--- a/code/modules/mob/living/say.dm
+++ b/code/modules/mob/living/say.dm
@@ -89,10 +89,11 @@ GLOBAL_LIST_INIT(department_radio_keys, list(
var/static/list/one_character_prefix = list(MODE_HEADSET = TRUE, MODE_ROBOT = TRUE, MODE_WHISPER = TRUE)
var/ic_blocked = FALSE
+ /*
if(client && !forced && config.ic_filter_regex && findtext(message, config.ic_filter_regex))
//The filter doesn't act on the sanitized message, but the raw message.
ic_blocked = TRUE
-
+ */
if(sanitize)
message = trim(copytext_char(sanitize(message), 1, MAX_MESSAGE_LEN))
if(!message || message == "")
From 2d447019c5ba5f3a4f8308f6d0f7c7bf5d9a61fb Mon Sep 17 00:00:00 2001
From: Letter N <24603524+LetterN@users.noreply.github.com>
Date: Wed, 8 Jul 2020 16:59:22 +0800
Subject: [PATCH 16/51] woops
---
code/modules/goonchat/browserassets/js/browserOutput.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/goonchat/browserassets/js/browserOutput.js b/code/modules/goonchat/browserassets/js/browserOutput.js
index ea8996bdfa..ac30076de4 100644
--- a/code/modules/goonchat/browserassets/js/browserOutput.js
+++ b/code/modules/goonchat/browserassets/js/browserOutput.js
@@ -981,7 +981,7 @@ $(function() {
$.ajax({
type: 'GET',
- url: 'browserOutput_white.css',
+ url: 'browserOutput.css', // browserOutput_white.css
success: function(styleData) {
var blob = new Blob(['
Chat Log', $messages.html(), '']);
From 27abb809536dd3ad243660d17302bd349ae74c8e Mon Sep 17 00:00:00 2001
From: MrJWhit <48370570+MrJWhit@users.noreply.github.com>
Date: Wed, 8 Jul 2020 13:34:31 -0400
Subject: [PATCH 17/51] Removing the ugly pubby monastery hallway
---
_maps/map_files/PubbyStation/PubbyStation.dmm | 474 +++++++-----------
1 file changed, 186 insertions(+), 288 deletions(-)
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index eda78e4206..d7fa16e618 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -33843,9 +33843,8 @@
/obj/structure/transit_tube/curved/flipped{
dir = 4
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
+/turf/open/space/basic,
+/area/space)
"bAJ" = (
/obj/structure/transit_tube/horizontal,
/obj/structure/window/reinforced/fulltile,
@@ -38135,10 +38134,12 @@
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bIY" = (
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
},
-/area/hallway/secondary/entry)
+/turf/open/space/basic,
+/area/space)
"bIZ" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -39182,9 +39183,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bLp" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bLq" = (
@@ -39207,20 +39206,17 @@
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bLr" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
/turf/open/floor/plasteel/white{
heat_capacity = 1e+006
},
/area/chapel/dock)
"bLs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
-/area/hallway/secondary/entry)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/dark,
+/area/chapel/dock)
"bLt" = (
/obj/effect/decal/cleanable/oil{
icon_state = "floor6"
@@ -39693,9 +39689,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 4
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bMu" = (
@@ -40164,12 +40158,12 @@
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bNu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bNv" = (
@@ -40589,6 +40583,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bOy" = (
@@ -40602,6 +40597,9 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bOz" = (
@@ -40870,6 +40868,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bPo" = (
@@ -40886,6 +40885,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bPp" = (
@@ -41182,6 +41182,7 @@
icon_state = "1-2"
},
/obj/effect/turf_decal/sand,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/chapel/asteroid/monastery)
"bQg" = (
@@ -44378,14 +44379,23 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"bWX" = (
-/obj/machinery/door/airlock/grunge{
- name = "Chapel"
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
},
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/dark,
-/area/chapel/main/monastery)
+/area/chapel/dock)
"bWZ" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
@@ -44715,6 +44725,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"bXJ" = (
@@ -45420,6 +45431,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/chapel/main/monastery)
"bZo" = (
@@ -46174,6 +46186,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/chapel/main/monastery)
"cbO" = (
@@ -46181,6 +46194,7 @@
/obj/item/reagent_containers/food/drinks/trophy{
pixel_y = 8
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/chapel/main/monastery)
"cbP" = (
@@ -46337,15 +46351,15 @@
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/carpet,
/area/chapel/main/monastery)
"ccF" = (
/obj/effect/landmark/start/chaplain,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
/turf/open/floor/carpet,
/area/chapel/main/monastery)
@@ -53016,8 +53030,10 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"dpc" = (
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
+/obj/effect/turf_decal/sand,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/chapel/asteroid/monastery)
"dps" = (
/obj/machinery/status_display/ai,
/turf/closed/wall,
@@ -53382,12 +53398,9 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"eit" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
"eiV" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
@@ -53405,10 +53418,6 @@
/obj/structure/chair/office/dark,
/turf/open/floor/wood,
/area/lawoffice)
-"epg" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
"epj" = (
/obj/machinery/cryopod{
dir = 8
@@ -53684,12 +53693,6 @@
},
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
-"eVT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"eWi" = (
/obj/structure/cable{
icon_state = "0-4"
@@ -54613,14 +54616,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"gTy" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"gUb" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -56405,12 +56400,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
-"kVy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"kWQ" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/obj/structure/cable/yellow{
@@ -56878,11 +56867,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"mgU" = (
-/obj/effect/landmark/carpspawn,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
"mhl" = (
/obj/machinery/power/emitter,
/obj/machinery/light{
@@ -57185,14 +57169,6 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/department/science)
-"mSY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
-/area/chapel/dock)
"mTS" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -57202,12 +57178,6 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
-"mVD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"mVM" = (
/turf/open/floor/plating/airless,
/area/space/nearstation)
@@ -57289,12 +57259,6 @@
/obj/item/chair/stool,
/turf/open/floor/carpet,
/area/maintenance/department/crew_quarters/dorms)
-"nho" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"nih" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/costume,
@@ -58380,17 +58344,6 @@
},
/turf/open/floor/plasteel/white/corner,
/area/hallway/secondary/exit/departure_lounge)
-"ppY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Monastery Transit"
- },
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
-/area/chapel/dock)
"prQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -59875,22 +59828,6 @@
},
/turf/open/floor/plasteel,
/area/science/xenobiology)
-"tbF" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"tbY" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"tcY" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -60509,10 +60446,6 @@
/obj/machinery/field/generator,
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"uxI" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"uxP" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -60717,10 +60650,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"vaB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"vco" = (
/obj/machinery/light/small{
dir = 8
@@ -60931,12 +60860,6 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"vxZ" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"vzz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -61374,9 +61297,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"wDe" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Monastery Transit"
- },
+/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plasteel/white{
heat_capacity = 1e+006
},
@@ -61563,10 +61484,6 @@
icon_state = "platingdmg3"
},
/area/maintenance/department/science)
-"wUc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"wUf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
@@ -61601,25 +61518,10 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"wYJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"wYK" = (
/obj/machinery/power/supermatter_crystal/engine,
/turf/open/floor/engine,
/area/engine/supermatter)
-"wZs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
-/area/hallway/secondary/entry)
"xah" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -61678,10 +61580,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/lawoffice)
-"xeN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/hallway/secondary/entry)
"xgh" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -79230,26 +79128,26 @@ bIW
bKc
bOy
bMt
-bLn
-bOy
-bPo
-bQg
-bQg
-bQg
-bQg
-bQg
-bQg
-bQg
-bQg
-bQg
+bLs
bWX
-bXJ
-bZo
-bZo
-bZo
-bZo
-bZo
-bZo
+bPo
+dpc
+dpc
+dpc
+dpc
+dpc
+dpc
+dpc
+dpc
+dpc
+cek
+cdx
+eit
+eit
+eit
+eit
+eit
+eit
cbO
ccF
cdx
@@ -80252,11 +80150,11 @@ aaa
aaa
aaa
aaa
-koE
+aht
aqG
bGE
bKf
-mSY
+bKf
bMw
bNy
bNw
@@ -80508,12 +80406,12 @@ aaa
aaa
aaa
aaa
-koE
-koE
+aht
+aht
aqG
bGE
bKf
-mSY
+bKf
bMx
bNz
bHM
@@ -80764,13 +80662,13 @@ aaa
aaa
aaa
aaa
-koE
-koE
-koE
+aaa
+aaa
+aaa
aqG
bGE
wDe
-ppY
+bHM
bHM
bNA
bHM
@@ -81014,21 +80912,21 @@ aZx
aaa
aaa
aaa
-mZE
-bVp
-bVp
-bVp
-bVp
-bVp
-eit
-gTy
-eit
-eit
-tbF
-aZx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
bIY
-bLs
-aZx
+bIY
+aht
+aht
bNB
bMy
abI
@@ -81271,21 +81169,21 @@ aZx
aaa
aaa
aaa
-bGI
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-bIY
-wZs
-aZx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aht
amC
aaa
aht
@@ -81528,21 +81426,21 @@ aZx
aaa
aaa
aaa
-bGI
-aZx
-tbY
-wYJ
-xeN
-xeN
-xeN
-wYJ
-xeN
-eVT
-dpc
-vxZ
-bIY
-nho
-aZx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
amB
aht
aht
@@ -81785,21 +81683,21 @@ aZx
aaa
aaa
aaa
-bGI
-aZx
-mVD
-dpc
-dpc
-dpc
-wUc
-vaB
-vaB
-vaB
-vaB
-vaB
-vaB
-kVy
-aZx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
amC
aaa
aht
@@ -82042,21 +81940,21 @@ aZx
aaa
aaa
aaa
-bGI
-aZx
-mVD
-dpc
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
-aZx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
amB
aht
aht
@@ -82299,21 +82197,21 @@ aZx
aaa
aaa
aaa
-aqG
-aZx
-mVD
-dpc
-aZx
-koE
-koE
-koE
-koE
-koE
-koE
-koE
-koE
-koE
-koE
+aaa
+aaa
+aaa
+aaa
+aaa
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
+aht
amD
aaa
aht
@@ -82556,11 +82454,11 @@ aZx
aaa
aaa
koE
-aqG
-aZx
-mVD
-dpc
-aZx
+aaa
+aaa
+aaa
+aaa
+aaa
bBV
bDf
bDf
@@ -82815,12 +82713,12 @@ aZx
aZx
aZx
aZx
-mVD
-uxI
+aaa
+aaa
bAI
-epg
abI
-koE
+abI
+aht
abI
aaa
bva
@@ -83123,7 +83021,7 @@ cfN
cfN
xYV
cjm
-koE
+aht
aaa
aaa
aaa
@@ -83381,7 +83279,7 @@ cfN
qWo
cjm
cjm
-koE
+aht
aaa
aaa
aaa
@@ -84136,8 +84034,8 @@ bva
bNK
bva
bva
-koE
-mgU
+aht
+aht
kSb
kSb
aht
@@ -84395,7 +84293,7 @@ bQl
cqX
xNx
ctS
-aaa
+cFB
aaa
aaa
aaa
@@ -84407,8 +84305,8 @@ aaa
aaa
kSb
kSb
-koE
-koE
+aht
+aht
nKo
aaa
aaa
From bbc9b47eee6d72a1d408886350f6059e7a52576c Mon Sep 17 00:00:00 2001
From: MrJWhit <48370570+MrJWhit@users.noreply.github.com>
Date: Wed, 8 Jul 2020 13:41:45 -0400
Subject: [PATCH 18/51] Update PubbyStation.dmm
---
_maps/map_files/PubbyStation/PubbyStation.dmm | 24 +++----------------
1 file changed, 3 insertions(+), 21 deletions(-)
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index d7fa16e618..a3094c3bfc 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -32562,15 +32562,10 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/white,
/area/hallway/secondary/entry)
"bxZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/hallway/secondary/entry)
"bya" = (
@@ -54866,14 +54861,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"hCb" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Monastery Transit"
- },
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
-/area/hallway/secondary/entry)
"hDG" = (
/obj/machinery/door/airlock/engineering{
name = "Auxillary Base Construction";
@@ -56250,12 +56237,7 @@
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"kIc" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Monastery Transit"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plasteel/white{
heat_capacity = 1e+006
},
@@ -82971,7 +82953,7 @@ bbR
bbR
aZx
kIc
-hCb
+kIc
bAJ
bBX
bBX
From 22505097ec19c14fa98def58f5235b51b39d25be Mon Sep 17 00:00:00 2001
From: MrJWhit <48370570+MrJWhit@users.noreply.github.com>
Date: Wed, 8 Jul 2020 13:44:08 -0400
Subject: [PATCH 19/51] plz final update
---
_maps/map_files/PubbyStation/PubbyStation.dmm | 103 ++++++++----------
1 file changed, 46 insertions(+), 57 deletions(-)
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index a3094c3bfc..5ca9ab0668 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -33839,7 +33839,7 @@
dir = 4
},
/turf/open/space/basic,
-/area/space)
+/area/space/nearstation)
"bAJ" = (
/obj/structure/transit_tube/horizontal,
/obj/structure/window/reinforced/fulltile,
@@ -34509,6 +34509,7 @@
/area/science/xenobiology)
"bBV" = (
/obj/structure/transit_tube/curved,
+/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space/nearstation)
"bBW" = (
@@ -39725,13 +39726,19 @@
},
/area/chapel/dock)
"bMy" = (
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
},
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/dark,
+/area/chapel/dock)
"bMA" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine,
@@ -44378,19 +44385,10 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"bWX" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
+/obj/effect/turf_decal/sand,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/dark,
-/area/chapel/dock)
+/turf/open/floor/plasteel,
+/area/chapel/asteroid/monastery)
"bWZ" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
@@ -53025,10 +53023,9 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"dpc" = (
-/obj/effect/turf_decal/sand,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/chapel/asteroid/monastery)
+/turf/open/floor/carpet,
+/area/chapel/main/monastery)
"dps" = (
/obj/machinery/status_display/ai,
/turf/closed/wall,
@@ -53392,10 +53389,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"eit" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/chapel/main/monastery)
"eiV" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
@@ -56049,10 +56042,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"koE" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
"kpK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -79111,25 +79100,25 @@ bKc
bOy
bMt
bLs
-bWX
+bMy
bPo
-dpc
-dpc
-dpc
-dpc
-dpc
-dpc
-dpc
-dpc
-dpc
+bWX
+bWX
+bWX
+bWX
+bWX
+bWX
+bWX
+bWX
+bWX
cek
cdx
-eit
-eit
-eit
-eit
-eit
-eit
+dpc
+dpc
+dpc
+dpc
+dpc
+dpc
cbO
ccF
cdx
@@ -79621,7 +79610,7 @@ aaa
bGI
bHM
bHM
-bHM
+bNw
bLq
bMv
bNw
@@ -80910,7 +80899,7 @@ bIY
aht
aht
bNB
-bMy
+abI
abI
aby
abI
@@ -81679,7 +81668,7 @@ aaa
aaa
aaa
aaa
-aaa
+aht
amC
aaa
aht
@@ -81935,8 +81924,8 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
+aht
+aht
amB
aht
aht
@@ -82185,10 +82174,10 @@ aaa
aaa
aaa
aht
-aht
-aht
-aht
-aht
+aaa
+aaa
+aaa
+aaa
aht
aht
aht
@@ -82435,12 +82424,12 @@ bon
aZx
aaa
aaa
-koE
aaa
aaa
aaa
aaa
aaa
+aht
bBV
bDf
bDf
@@ -82696,7 +82685,7 @@ aZx
aZx
aZx
aaa
-aaa
+aht
bAI
abI
abI
From 886b196863da1ee0e312971652e75c08e4de0799 Mon Sep 17 00:00:00 2001
From: MrJWhit <48370570+MrJWhit@users.noreply.github.com>
Date: Wed, 8 Jul 2020 13:49:10 -0400
Subject: [PATCH 20/51] Lost decal
---
_maps/map_files/PubbyStation/PubbyStation.dmm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index 5ca9ab0668..ebee4fb46b 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -39686,6 +39686,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bMu" = (
From 7aa160029ff1a6f09dd4387f737df30363ad9f72 Mon Sep 17 00:00:00 2001
From: DeltaFire
Date: Wed, 8 Jul 2020 23:45:35 +0200
Subject: [PATCH 21/51] changes sent's healing a bit
No more killing augmented followers, it heals them aswell. Ratvar is a machine god afterall.
---
.../antagonists/clockcult/clock_helpers/slab_abilities.dm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm b/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm
index 81ad7ddc26..89ed669e7b 100644
--- a/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm
+++ b/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm
@@ -113,8 +113,7 @@
for(var/i in 1 to healseverity)
new /obj/effect/temp_visual/heal(targetturf, "#1E8CE1")
if(totaldamage)
- L.adjustBruteLoss(-brutedamage)
- L.adjustFireLoss(-burndamage)
+ L.heal_overall_damage(brutedamage, burndamage, only_organic = FALSE) //Maybe a machine god shouldn't murder augmented followers instead of healing them
L.adjustOxyLoss(-oxydamage)
L.adjustToxLoss(totaldamage * 0.5, TRUE, TRUE)
clockwork_say(ranged_ability_user, text2ratvar("[has_holy_water ? "Heal tainted" : "Mend wounded"] flesh!"))
From bed6f4ac91d1cf96193c0d12fa09638201e64c08 Mon Sep 17 00:00:00 2001
From: HeroWithYay
Date: Thu, 9 Jul 2020 16:32:14 +1200
Subject: [PATCH 22/51] Adds "Telecrystal Dust" a useless, red waste of
syndicate resources that can be obtained by grinding raw telecrystals in a
blender.
Also makes it so you can sell raw telecrystals at cargo 1000 points each which is also a considerable waste of TC.
---
code/game/objects/items/stacks/telecrystal.dm | 1 +
code/modules/cargo/exports/sheets.dm | 7 +++++++
code/modules/reagents/chemistry/reagents/other_reagents.dm | 7 +++++++
3 files changed, 15 insertions(+)
diff --git a/code/game/objects/items/stacks/telecrystal.dm b/code/game/objects/items/stacks/telecrystal.dm
index 9b5ca2b066..54824940c1 100644
--- a/code/game/objects/items/stacks/telecrystal.dm
+++ b/code/game/objects/items/stacks/telecrystal.dm
@@ -4,6 +4,7 @@
singular_name = "telecrystal"
icon = 'icons/obj/telescience.dmi'
icon_state = "telecrystal"
+ grind_results = list(/datum/reagent/telecrystal = 20)
w_class = WEIGHT_CLASS_TINY
max_amount = 50
item_flags = NOBLUDGEON
diff --git a/code/modules/cargo/exports/sheets.dm b/code/modules/cargo/exports/sheets.dm
index 120bfbe5e4..a562210164 100644
--- a/code/modules/cargo/exports/sheets.dm
+++ b/code/modules/cargo/exports/sheets.dm
@@ -155,3 +155,10 @@
cost = 30
message = "of paperframes"
export_types = list(/obj/item/stack/sheet/paperframes)
+
+/datum/export/stack/telecrystal
+ unit_name = "raw"
+ cost = 1000
+ message = "telecrystals"
+ export_types = list(/obj/item/stack/telecrystal)
+
diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm
index f3cba53727..2ea6ba4606 100644
--- a/code/modules/reagents/chemistry/reagents/other_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm
@@ -1154,6 +1154,13 @@
/mob/living/proc/bluespace_shuffle()
do_teleport(src, get_turf(src), 5, asoundin = 'sound/effects/phasein.ogg', channel = TELEPORT_CHANNEL_BLUESPACE)
+/datum/reagent/telecrystal
+ name = "Telecrystal Dust"
+ description = "A blood-red dust comprised of something that was much more useful when it was intact."
+ reagent_state = SOLID
+ color = "#660000" // rgb: 102, 0, 0.
+ taste_description = "contraband"
+
/datum/reagent/aluminium
name = "Aluminium"
description = "A silvery white and ductile member of the boron group of chemical elements."
From eeedad21de937cf7265952ff90f5af8fa37b7a99 Mon Sep 17 00:00:00 2001
From: Letter N <24603524+LetterN@users.noreply.github.com>
Date: Thu, 9 Jul 2020 14:32:23 +0800
Subject: [PATCH 23/51] ^w^
---
code/modules/asset_cache/asset_list_items.dm | 1 +
code/modules/emoji/emoji_parse.dm | 8 +++++---
icons/emoji_32.dmi | Bin 0 -> 7493 bytes
3 files changed, 6 insertions(+), 3 deletions(-)
create mode 100644 icons/emoji_32.dmi
diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm
index 13a1803188..ba58769d3e 100644
--- a/code/modules/asset_cache/asset_list_items.dm
+++ b/code/modules/asset_cache/asset_list_items.dm
@@ -192,6 +192,7 @@
/datum/asset/spritesheet/goonchat/register()
InsertAll("emoji", 'icons/emoji.dmi')
+ InsertAll("emoji", 'icons/emoji_32.dmi')
// pre-loading all lanugage icons also helps to avoid meta
InsertAll("language", 'icons/misc/language.dmi')
diff --git a/code/modules/emoji/emoji_parse.dm b/code/modules/emoji/emoji_parse.dm
index 65e8063ce0..33d32227e1 100644
--- a/code/modules/emoji/emoji_parse.dm
+++ b/code/modules/emoji/emoji_parse.dm
@@ -2,7 +2,8 @@
. = text
if(!CONFIG_GET(flag/emojis))
return
- var/static/list/emojis = icon_states(icon('icons/emoji.dmi'))
+ var/list/emojis = icon_states(icon('icons/emoji.dmi'))
+ emojis |= icon_states(icon('icons/emoji_32.dmi'))
var/parsed = ""
var/pos = 1
var/search = 0
@@ -18,7 +19,7 @@
var/datum/asset/spritesheet/sheet = get_asset_datum(/datum/asset/spritesheet/goonchat)
var/tag = sheet.icon_tag("emoji-[emoji]")
if(tag)
- parsed += tag
+ parsed += "[tag]" //evil way of enforcing 16x16
pos = search + length(text[pos])
else
parsed += copytext(text, pos, search)
@@ -34,7 +35,8 @@
. = text
if(!CONFIG_GET(flag/emojis))
return
- var/static/list/emojis = icon_states(icon('icons/emoji.dmi'))
+ var/list/emojis = icon_states(icon('icons/emoji.dmi'))
+ emojis |= icon_states(icon('icons/emoji_32.dmi'))
var/final = "" //only tags are added to this
var/pos = 1
var/search = 0
diff --git a/icons/emoji_32.dmi b/icons/emoji_32.dmi
new file mode 100644
index 0000000000000000000000000000000000000000..44b36a35e419c6c64e7edb9409d085afc0340025
GIT binary patch
literal 7493
zcmV-L9lGL)P)V=-0C=2@lRa+3Fbsuf>l8$?8bupt^-?4#JS0~L1dEQ;$fTj42KNXg7f@Fu3_1yRQ<#4QyPkZG_I1Fva6BL2a2nJvnxBp=D!Ir>000}z
zNklu`wmBmRwqtI3#+MQ!atQO9IF+9Q#1Q
zP!2H&`({9=1h7CLhX@G?Bo-1wNODnNAXld++F52Pj`)zwcoiv80D+d{P^;y>XJ@x_
z7}jh}O}!u8)zkd}1ZTUe>aXhl{;I#K{`xzJ;}}YmC@Mk#fVZpT$&aU=@40#7oqAwH
z$n3dFLSFmf@=bUpUJC#Kq9{s$BB>VFtjLe5QIC8`0BW^bDZk+IgY$5$L;i_3SG&@@
zd-Rr-3Y@(&(^Y}h*CqgM5~Ku^%OL=?8*i(@A}m#xlFmc8k5YayQcG%y`c2Y7E|^Wn?XQ%8Q$+iw%N{4gz{x9G)>IG%WGO?Rg
zWXRN6R&LSTpC-H<0RZ?9zZTa5kttwf=*5Y~lS2;otg=*O7rp&y!CM880qvpMwmC(%
zY?d#!=|+V_op-Ws?|1Z$Al^;?b_F
zD5;l|;1VU$g0~}pE^PEdc^=~Xwf(e7KlSN0r6O~=0_NM`_6@Ueq7wpO#l2@0sUUt#jZxgvwfUJDZSt~6#(l8H--hSKYt2sc4
z5~}Dc1<1Mw&KgB;zYYcf+L7AG=xr{62gU+uN9rP@cOkeK*2%z3JozSI)m=q?(cA9=
zxco9SB0wp>!19AQj?3V4uQ*-sVW;cw`g*8%rKQaER#dl
z6rtJOruIBeB(f}0(QJAT*lq_6)Db|1T%rRLw6wBiv+m(Uy|A#^uZb-vOFvz>K$$Lo@6g?v)9i8)DZxGk>q+U
znU2iEN}txGmG(Q$I`ji*ib9fHW-cH~?*o{VV3FOb(gW%cPd86qmmYlwZ&GdBE+@;r
z@lHLEk)cx$?kZ4P#Pt!n?J#XW>t*}egSrC#97Mz>=O_3z5xm_8&_zEeAgKhhFH_W0
zW}!qTGG%*y6Ir=XfUILoW+6Yz9-mzH%&Hz_U0fg+3P4+GO_PjS%U6MkIlwE=G>xyw
zg#sYBj)LsFd==!GlxZSY3V7y+Uj!AO7af11tf0~^Q+TZa
z2r6zAHsj;_BA*7*ABRVltS7RnK&wBzcJY)%W&R_r0Ja_4RH5S`YO@Y$%9nk)x9~%K^>QgH#8svTZ3Exd*^&i%C1Z
zc7~IUg-@Q^vgHnuwR`|IqVe36ZPi8Ol5A7ySoKB@c)a_vGNeWT-&Qu#jE|p{e4Z-+
z%`r{ZZ9oUIt{I|(Gdd8JV=5;XlVBWK#mCP=zKu;SQ-Y}Y{pWF>;k5}=q8lpYv*D-T
zFNa=u$lVCQgAZqkUC38)hRZ^3o-qKBZG3i-{H){SXD#0aO8MCL0m{&brTikx58^m3
zba2#CezE13-v=mBXmBUN;}_bRvv$!;6K$1KBEMiQA7{PCB((}Oej!S9$&1L(L!O6V
znUx=(O#oB*Hg>(UY(G;0#xF$4T%-NFF=tkRPB|1s!W-W+34&=e!9XwfJe&sz0HWmn
zgDK@J$+zk1k@fqh&H+%bO)7xuC?Hb~9)d9s@#%RH;nI+A13L0uhnvat`v5c`(&E2m
z%ozld{N!&OWaCX@K+5EG5uaX#AU?&%mz8hJ96=HL@W_2xw!g;&QXx4DqB3OX6skTj
zG;c_oyP3R+93GOCs}L;E4ui;y3N{o$=cVFGppq}o
z&?WL^xXg_^n-=y*0Bk01(;g$sx?H`SpjkM?^5uw5KiSFyV0M<5JQG}m5dlZu+S+9T
zr7;J%IQ+H_D9$OSKKs6tL
z{*Z3-pp4D)%sS?nh)6o*)7dbzF?x#HpX&oLCQGHdGRcSN`sk&JLYho8bw2cA@^KKG
z@>ut2>4hVJPP~89Zv>dexKWKNjDz-#0hz#9I+JEzc>w#*QMMPi2M^kE1nL2q)fGdM;8Nv@_
z`2G-N(W5w3&>A7K0PC5u(%O`pMxHDYiXLnc9)fRBeJ8kr*fhn`giOcD>hWpUWIN&z
zA7;(Cjzy{EB;5qS;_guXEEWon4$=`WxXU`k}s?ce$%@LsM`h62fcZfFKDON#LjS`aF
zbCkiWahdpguI>5i$`>e2+a7O&>@s&=%rB}h5NoYjXG4W{9hpEXa{wPc@<1a#>t5sX
zz7p7m3zq>Jc&kh3K7P-~URO!uE0n(!FFWxe^XuA*nFnaS)IKAjgSqnn@Txs>(w=QvN?;?6kLa2Nqd5Sc
zfc2p9G%{ukK8m0@fCw%=@*oS}Y*^lCnuZeeE4n7ZqVoVOr!SQyz*<}j&>VnAvMkBp
zg;z6^+<}ZKSt@}Zl+Od$T!-aNg0l|I?IVFib;|3;VwTADd4M88Rv~>SFL^nHMpsTKgV$!Cl3BAmT5lOPfz$jIjr
zT_yG_Eh5xPLQ0R9q8K2Cw(1CTcxROG9cEjucyw%;a@{FSK|mwdX>wMDKhI0;S3
zuTxhfzsD8AN4HiPLLoN*+b5KC%CmK%E-TnLdw~ZhGxh75Jy%I&@*$bB=>Z(a1~ok=
zs}msrc>uWWXj6%GB~a&0d)!H;+Ub&WGCU`t2zic
zF=x+J5+EkLw0fA>S
zm5FJZ@LB;E$8On^_SZJf96H|Qvtv;wGXLiNj$JXw;ZaSBUD
zhRxAOx3{+GzMxW;XqAaIa(O)h_yCz0Jgntc8>>+=W$`u#^VSi`eA!bpSyov>l~w>W
z{F1#Q?Yb?f9Jp6KoX>-e$*akxoXsWJyeR=~m54=X8>5Z&5y18XH(5PNOD->e)`!&d
zM1BOFPh835ky-|oaW^1)mOS<}JouzYS-|#&n9k(XO;}A^0WeA%E9(+C59MSxcLu`)R?Ie6rVGeQkpJkConMaCt;*uVmB4X3hkY(u9%O!GU0;L(MoVOb+I(|v+O4~Gx
zvUYsaA+ag(O;)2svU8&VX}@rhJkjQ#tNOZr4nFqME|D)2$TRr7;?hrW>6x0F5uik|
z;c8?W04R2R_)>m*Rfl#&(G|$RSXs)?RcORgzJ2+53yo-7eh|lT=D}G@`DJk2%!1>V
z;n7PJ8RaCngjYCo=GnMf26R}3En3^jrb&RMF0TU
zZMDMr`TDL--E#GP02lIky&O)uBvD(X3xfS(b(J9v`G|N~K7SSRlR(PQ++P2|0oeJ;
z{FR$`Rr2TR`v5NF(-Z&^PnC2mATr7-LYnfUY9#&sZAPCXJ3$@t<3NhAy?O6%4;+BM
zsxMr>CX>(EBsgoQEnQTr)x;L@5KwtR5F{cc$XY%L*>e^yB5SJvDbVD>2fhmc-;E#w
z0D!gCm4l7OjV)F_DFsOTBM~BZU)4Oa@?DS*N0KC55@szQL5Iw=;9#{7WoiJ5@szQ!Nv0zDT2-3A7Fnju(i2%`s(6`S48Q%+@bM`
zx(an@BTWf+u>JgTF3~zba!Jz!sH~lpq$i}oFV+P~Tm6cxBoSs|`wN0Up$+PjBZ!BKD{WF-S
zr>j(6d~9HF_%rnP==jmUhxk8#N*#Y>Y<1Pun7k1Y-$=qC>aBJ2`66F-9v~ALkemn5
z(zJG(hr_|4FQh6*pkwkhx1L&DxcxCJ-N}>Byc`Y={~Q2YF1??ZX@Kdhs`wHf!~`q?
z;rCf&;^js6bP1f6e4S28RatP<>sOW|h?GYGMBw$cwXtgp4XSgT$hQc9aVD6h&8m}F
zSF1TH2hmmPAR?a)$dJ?q=8~lIPen$w6eZ+8)4GVtLhnd+LOi(~!o8Kd->b#7;Mz4h
z`Ja8}*d+SRB7YQ}4wR?hJVKcgP)DWYqeApCWJvE5YH=-S?KCF<
z+GHpHwVGS!lHJ{K=_4`uSEgD*lPcNUd$RBcV&XUsf}rgcet&7OCk=iLx1mY98qY79
zj0Qo_aZVG-r{(9#Zv;V?`O~1(zazg2Ud_|$^($)-(@rMrJN_qL+w4K|btaex+py;3+Px_%aU=1OH;lKaN?(l$<{qpB*L9vs&{wC9rdB}TYUOb&|@>Sr9`~U!7{q4tpA3$wFi|-<1aBz*iwjS^%53!@-H$wOYNaE@g0B21uLS^hB4c*^#Dv-=6yp^?$9
z6I=k;A(++Gv1^U@twe|}zYidZehrT6D~=!k-LE|``N(bZ`fjUraDKkdjP#}os|s-D
z%+b+S>*ya2kBt3E5MmEl>-ODu#4#`vE4hHTp0N;1?fz}UQODQ
zu+GH{CxJ!(NL|+Ql@;L3OV2;J3xnSo8XkKCz$~VFEv^NqcfJ&)8=twq+
z-^81%)?T;>q*iublMsbOPfr;s2LVi=l(aBGyMWY6<3@!s3
z@8A0V3+vB*JURB@U*@UjkKXQHGq1g3z9vo^74Yk}VT;73@^$6jc&8r75YV<!(b?|t~@*5=x2+?T=@L`sF+plR;V%sg-RZWz(7>7o{24Df%p%Ef`dF!Ck3%!|?@
z(&G7b<^d*kSCyq(j}QRhg_9>{);HI__KRP9^pCUx78e^=POr>7GB`Q)Ym-R6Bv=Z?
z3$P2oiCD}bdh~WRkr@eilUEkub@I3XjX>tIv9Onz2+Ry_s)01{Z8
zdFbII{}5H9ye@4?XPd#9kSH=;!ELt2ELrEG&L}a&2yGYyKj=W$QX#C)6@rp6B>`Tj^o<3#zrl!1@~6&eorN~JAjS2LG0bu+ADE@|1*(O
zbkOD^Y0GtS9UM*^T|THx9*C`e*Z)*
zzL|FFg%dwLe*C$|O)6KbT?}e9Gt#K$*EtA-mSpjNs%414+U8ev7f2hb^zalR1D)
zS=!sU+uP0k0FFcunw6;*OpZ=`a|GaN&2>y_s7
zU#&0P{2yI;0A}QtmO&^1D;<6ihEx(
zfQ~BzQZ5wx-FMIqyrAD?kIqU*OKSsZul&e*pVC~ReKW;q2vt5VfXM&l7hep+Ep=h-
z*zfQ!8uiQ!ED~q2qQmNyWqNB9d1TqVLoaw<+jX&79zqDvj+Gt`4mEj7fXKho+&X%5
z;e%$^O(Ir16SA@2OE979^kpKCb|jLfgf8T}Mps}g(Yf2rjg8T(SKr$tuRs0tlS4<2
zKDNypK_-_&SYN&O?Q4zee}`W$17qbQFjl|H?}-c-MU|knvw95R;4uh-5R$!52M&ad
zci&xTQp(!TC-_wT-;w82UM#@%m|
P00000NkvXXu0mjfD*J5k
literal 0
HcmV?d00001
From 1a82955f329d4f34208ed3d21ba6bf393e05eee4 Mon Sep 17 00:00:00 2001
From: YakumoChen
Date: Thu, 9 Jul 2020 07:22:33 +0000
Subject: [PATCH 24/51] adds a wedding crate
---
code/modules/cargo/packs/costumes_toys.dm | 31 +++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/code/modules/cargo/packs/costumes_toys.dm b/code/modules/cargo/packs/costumes_toys.dm
index c181d6fb74..e4401f5787 100644
--- a/code/modules/cargo/packs/costumes_toys.dm
+++ b/code/modules/cargo/packs/costumes_toys.dm
@@ -301,3 +301,34 @@
/obj/item/clothing/head/wizard/fake)
crate_name = "wizard costume crate"
crate_type = /obj/structure/closet/crate/wooden
+
+/datum/supply_pack/costumes_toys/wedding
+ name = "Wedding Crate"
+ desc = "Tie the knot IN SPACE! Hold your own extravagant wedding with this crate of suits and bridal gowns. Complete with champaigne, cake, and the luxurious cost you would expect for an event to remember."
+ cost = 10000 // weddings are absurdly expensive and so is this crate
+ contains = list(/obj/item/clothing/under/suit/black_really, //we don't actually need suits since you can vend them but the crate should feel "complete"
+ /obj/item/clothing/under/suit/black_really,
+ /obj/item/clothing/under/suit/charcoal,
+ /obj/item/clothing/under/suit/charcoal,
+ /obj/item/clothing/under/suit/navy,
+ /obj/item/clothing/under/suit/navy,
+ /obj/item/clothing/under/suit/burgundy,
+ /obj/item/clothing/under/suit/burgundy, // A pair of each "fancy suit" color for variety
+ /obj/item/clothing/under/suit/white,
+ /obj/item/clothing/under/suit/white, // white is a weird color for a groom but some people are weird
+ /obj/item/clothing/under/suit/polychromic,
+ /obj/item/clothing/under/suit/polychromic, // in case you can't be satisfied with the most fitting choices, of course.
+ /obj/item/clothing/under/dress/wedding,
+ /obj/item/clothing/under/dress/wedding, // this is what you actually bought the crate for. You can't get these anywhere else.
+ /obj/item/clothing/under/dress/wedding/orange,
+ /obj/item/clothing/under/dress/wedding/orange,
+ /obj/item/clothing/under/dress/wedding/purple,
+ /obj/item/clothing/under/dress/wedding/purple,
+ /obj/item/clothing/under/dress/wedding/blue,
+ /obj/item/clothing/under/dress/wedding/blue,
+ /obj/item/clothing/under/dress/wedding/red,
+ /obj/item/clothing/under/dress/wedding/red, // two of each
+ /obj/item/reagent_containers/food/drinks/bottle/champagne, //appropriate booze for a wedding
+ /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake) // we don't have a full wedding cake but this will do
+ crate_name = "wedding crate"
+
From bfa672b0914c46cc7cf2fafd5d20be72e87e05e0 Mon Sep 17 00:00:00 2001
From: YakumoChen
Date: Thu, 9 Jul 2020 07:49:11 +0000
Subject: [PATCH 25/51] adds some rings to the wedding crate
---
code/modules/cargo/packs/costumes_toys.dm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/code/modules/cargo/packs/costumes_toys.dm b/code/modules/cargo/packs/costumes_toys.dm
index e4401f5787..9a94be7f12 100644
--- a/code/modules/cargo/packs/costumes_toys.dm
+++ b/code/modules/cargo/packs/costumes_toys.dm
@@ -329,6 +329,8 @@
/obj/item/clothing/under/dress/wedding/red,
/obj/item/clothing/under/dress/wedding/red, // two of each
/obj/item/reagent_containers/food/drinks/bottle/champagne, //appropriate booze for a wedding
- /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake) // we don't have a full wedding cake but this will do
+ /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake, // we don't have a full wedding cake but this will do
+ /obj/item/storage/fancy/ringbox/silver,
+ /obj/item/storage/fancy/ringbox/silver) //diamond rings cost the same price as this crate via cargo so we're not giving you two for free. Wedding rings are traditionally less valuable anyway.
crate_name = "wedding crate"
From 26d384e65ba3ff29ea71c5e16ffc9bb31e4c5320 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Thu, 9 Jul 2020 03:17:17 -0700
Subject: [PATCH 26/51] fix
---
code/game/say.dm | 13 ++++++-------
code/modules/mob/say.dm | 12 +++++++-----
2 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/code/game/say.dm b/code/game/say.dm
index 6b923d4e83..a5691ad11f 100644
--- a/code/game/say.dm
+++ b/code/game/say.dm
@@ -110,7 +110,7 @@ GLOBAL_LIST_INIT(freqtospan, list(
/// Quirky citadel proc for our custom sayverbs to strip the verb out. Snowflakey as hell, say rewrite 3.0 when?
/atom/movable/proc/quoteless_say_quote(input, list/spans = list(speech_span), message_mode)
- if(input[1] == "!")
+ if((input[1] == "!") && (length_char(input) > 1))
return ""
var/pos = findtext(input, "*")
return pos? copytext(input, pos + 1) : input
@@ -146,12 +146,11 @@ GLOBAL_LIST_INIT(freqtospan, list(
return "[copytext_char("[freq]", 1, 4)].[copytext_char("[freq]", 4, 5)]"
/atom/movable/proc/attach_spans(input, list/spans)
- if(input[1] == "!")
- input = copytext(input, 1, length(input) + 1)
- else
- var/customsayverb = findtext(input, "*")
- if(customsayverb)
- input = capitalize(copytext(input, customsayverb + length(input[customsayverb])))
+ if((input[1] == "!") && (length(input) > 2))
+ return
+ var/customsayverb = findtext(input, "*")
+ if(customsayverb)
+ input = capitalize(copytext(input, customsayverb + length(input[customsayverb])))
if(input)
return "[message_spans_start(spans)][input]"
else
diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm
index a2cae0691f..b7ea70732b 100644
--- a/code/modules/mob/say.dm
+++ b/code/modules/mob/say.dm
@@ -50,14 +50,16 @@
usr.emote("me",1,message,TRUE)
/mob/say_mod(input, message_mode)
- if(input[1] == "!")
- return ""
+ if(message_mode == MODE_WHISPER_CRIT)
+ return ..()
+ if((input[1] == "!") && (length_char(input) > 1))
+ message_mode = MODE_CUSTOM_SAY
+ return copytext_char(input, 2)
var/customsayverb = findtext(input, "*")
- if(customsayverb && message_mode != MODE_WHISPER_CRIT)
+ if(customsayverb)
message_mode = MODE_CUSTOM_SAY
return lowertext(copytext_char(input, 1, customsayverb))
- else
- return ..()
+ return ..()
/mob/proc/whisper_keybind()
var/message = input(src, "", "whisper") as text|null
From 02f46322ad53876d80dd87a98bf29f624021628f Mon Sep 17 00:00:00 2001
From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com>
Date: Thu, 9 Jul 2020 18:32:45 +0100
Subject: [PATCH 27/51] port examine
---
code/__DEFINES/dcs/signals.dm | 14 ++--
code/__DEFINES/mobs.dm | 6 ++
code/datums/mind.dm | 2 +
code/datums/traits/negative.dm | 46 +++++++++++++
code/game/atoms.dm | 14 ++++
code/game/machinery/computer/arcade/battle.dm | 9 +++
code/game/objects/items/cards_ids.dm | 20 ++++++
code/modules/client/client_defines.dm | 2 +
code/modules/mob/mob.dm | 69 ++++++++++++++++---
code/modules/paperwork/paper.dm | 3 +
10 files changed, 172 insertions(+), 13 deletions(-)
diff --git a/code/__DEFINES/dcs/signals.dm b/code/__DEFINES/dcs/signals.dm
index d9a6452f38..5c28694005 100644
--- a/code/__DEFINES/dcs/signals.dm
+++ b/code/__DEFINES/dcs/signals.dm
@@ -37,12 +37,14 @@
#define COMSIG_ATOM_HULK_ATTACK "hulk_attack" //from base of atom/attack_hulk(): (/mob/living/carbon/human)
#define COMSIG_ATOM_ATTACK_ANIMAL "attack_animal" //from base of atom/animal_attack(): (/mob/user)
#define COMSIG_PARENT_EXAMINE "atom_examine" //from base of atom/examine(): (/mob, list/examine_return_text)
-#define COMSIG_ATOM_GET_EXAMINE_NAME "atom_examine_name" //from base of atom/get_examine_name(): (/mob, list/overrides)
+///from base of atom/get_examine_name(): (/mob, list/overrides)
+#define COMSIG_ATOM_GET_EXAMINE_NAME "atom_examine_name"
+#define COMSIG_PARENT_EXAMINE_MORE "atom_examine_more" ///from base of atom/examine_more(): (/mob)
//Positions for overrides list
- #define EXAMINE_POSITION_ARTICLE 1
- #define EXAMINE_POSITION_BEFORE 2
+ #define EXAMINE_POSITION_ARTICLE (1<<0)
+ #define EXAMINE_POSITION_BEFORE (1<<1)
//End positions
- #define COMPONENT_EXNAME_CHANGED 1
+ #define COMPONENT_EXNAME_CHANGED (1<<0)
#define COMSIG_ATOM_UPDATE_ICON "atom_update_icon" //from base of atom/update_icon(): ()
#define COMSIG_ATOM_NO_UPDATE_ICON_STATE 1
#define COMSIG_ATOM_NO_UPDATE_OVERLAYS 2
@@ -179,6 +181,10 @@
#define COMSIG_MOB_THROW "mob_throw" //from base of /mob/throw_item(): (atom/target)
#define COMSIG_MOB_KEY_CHANGE "mob_key_change" //from base of /mob/transfer_ckey(): (new_character, old_character)
#define COMSIG_MOB_PRE_PLAYER_CHANGE "mob_pre_player_change" //sent to the target mob from base of /mob/transfer_ckey() and /mind/transfer_to(): (our_character, their_character)
+///from /mob/living/handle_eye_contact(): (mob/living/other_mob)
+#define COMSIG_MOB_EYECONTACT "mob_eyecontact"
+ /// return this if you want to block printing this message to this person, if you want to print your own (does not affect the other person's message)
+ #define COMSIG_BLOCK_EYECONTACT (1<<0)
// #define COMPONENT_STOP_MIND_TRANSFER 1
#define COMSIG_MOB_UPDATE_SIGHT "mob_update_sight" //from base of /mob/update_sight(): ()
#define COMSIG_MOB_ON_NEW_MIND "mob_on_new_mind" //called when a new mind is assigned to a mob: ()
diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm
index fa7758be1f..42139cdeda 100644
--- a/code/__DEFINES/mobs.dm
+++ b/code/__DEFINES/mobs.dm
@@ -310,3 +310,9 @@
#define FOV_90_DEGREES 90
#define FOV_180_DEGREES 180
#define FOV_270_DEGREES 270
+
+/// How far away you can be to make eye contact with someone while examining
+#define EYE_CONTACT_RANGE 5
+
+/// If you examine the same atom twice in this timeframe, we call examine_more() instead of examine()
+#define EXAMINE_MORE_TIME 1 SECONDS
\ No newline at end of file
diff --git a/code/datums/mind.dm b/code/datums/mind.dm
index 8ac9bc4276..d02249fb38 100644
--- a/code/datums/mind.dm
+++ b/code/datums/mind.dm
@@ -124,6 +124,8 @@
transfer_martial_arts(new_character)
if(active || force_key_move)
new_character.key = key //now transfer the key to link the client to our new body
+ if(new_character.client)
+ LAZYCLEARLIST(new_character.client.recent_examines)
current.update_atom_languages()
//CIT CHANGE - makes arousal update when transfering bodies
diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm
index 9c2128163f..40b71eec0a 100644
--- a/code/datums/traits/negative.dm
+++ b/code/datums/traits/negative.dm
@@ -314,6 +314,13 @@ GLOBAL_LIST_EMPTY(family_heirlooms)
medical_record_text = "Patient is usually anxious in social encounters and prefers to avoid them."
var/dumb_thing = TRUE
+/datum/quirk/social_anxiety/add()
+ RegisterSignal(quirk_holder, COMSIG_MOB_EYECONTACT, .proc/eye_contact)
+ RegisterSignal(quirk_holder, COMSIG_MOB_EXAMINATE, .proc/looks_at_floor)
+
+/datum/quirk/social_anxiety/remove()
+ UnregisterSignal(quirk_holder, list(COMSIG_MOB_EYECONTACT, COMSIG_MOB_EXAMINATE))
+
/datum/quirk/social_anxiety/on_process()
var/nearby_people = 0
for(var/mob/living/carbon/human/H in oview(3, quirk_holder))
@@ -330,6 +337,45 @@ GLOBAL_LIST_EMPTY(family_heirlooms)
dumb_thing = FALSE //only once per life
if(prob(1))
new/obj/item/reagent_containers/food/snacks/pastatomato(get_turf(H)) //now that's what I call spaghetti code
+// small chance to make eye contact with inanimate objects/mindless mobs because of nerves
+
+
+
+/datum/quirk/social_anxiety/proc/looks_at_floor(datum/source, atom/A)
+ var/mob/living/mind_check = A
+ if(prob(85) || (istype(mind_check) && mind_check.mind))
+ return
+
+ addtimer(CALLBACK(GLOBAL_PROC, .proc/to_chat, quirk_holder, "You make eye contact with [A]."), 3)
+
+/datum/quirk/social_anxiety/proc/eye_contact(datum/source, mob/living/other_mob, triggering_examiner)
+ if(prob(75))
+ return
+ var/msg
+ if(triggering_examiner)
+ msg = "You make eye contact with [other_mob], "
+ else
+ msg = "[other_mob] makes eye contact with you, "
+
+ switch(rand(1,3))
+ if(1)
+ quirk_holder.Jitter(10)
+ msg += "causing you to start fidgeting!"
+ if(2)
+ quirk_holder.stuttering = max(3, quirk_holder.stuttering)
+ msg += "causing you to start stuttering!"
+ if(3)
+ quirk_holder.Stun(2 SECONDS)
+ msg += "causing you to freeze up!"
+
+ SEND_SIGNAL(quirk_holder, COMSIG_ADD_MOOD_EVENT, "anxiety_eyecontact", /datum/mood_event/anxiety_eyecontact)
+ addtimer(CALLBACK(GLOBAL_PROC, .proc/to_chat, quirk_holder, "[msg]"), 3) // so the examine signal has time to fire and this will print after
+ return COMSIG_BLOCK_EYECONTACT
+
+/datum/mood_event/anxiety_eyecontact
+ description = "Sometimes eye contact makes me so nervous...\n"
+ mood_change = -5
+ timeout = 3 MINUTES
/datum/quirk/phobia
name = "Phobia"
diff --git a/code/game/atoms.dm b/code/game/atoms.dm
index bbd38e9021..5d29ef1598 100644
--- a/code/game/atoms.dm
+++ b/code/game/atoms.dm
@@ -366,6 +366,20 @@
SEND_SIGNAL(src, COMSIG_PARENT_EXAMINE, user, .)
+/**
+ * Called when a mob examines (shift click or verb) this atom twice (or more) within EXAMINE_MORE_TIME (default 1.5 seconds)
+ *
+ * This is where you can put extra information on something that may be superfluous or not important in critical gameplay
+ * moments, while allowing people to manually double-examine to take a closer look
+ *
+ * Produces a signal [COMSIG_PARENT_EXAMINE_MORE]
+ */
+/atom/proc/examine_more(mob/user)
+ . = list()
+ SEND_SIGNAL(src, COMSIG_PARENT_EXAMINE_MORE, user, .)
+ if(!LAZYLEN(.)) // lol ..length
+ return list("You examine [src] closer, but find nothing of interest...")
+
/// Updates the icon of the atom
/atom/proc/update_icon()
// I expect we're going to need more return flags and options in this proc
diff --git a/code/game/machinery/computer/arcade/battle.dm b/code/game/machinery/computer/arcade/battle.dm
index b906b1afb5..fc99edd3eb 100644
--- a/code/game/machinery/computer/arcade/battle.dm
+++ b/code/game/machinery/computer/arcade/battle.dm
@@ -184,6 +184,15 @@
blocked = FALSE
return
+/obj/machinery/computer/arcade/battle/examine_more(mob/user)
+ to_chat(user, "Scribbled on the side of the Arcade Machine you notice some writing...\
+ \nmagical -> >=50 power\
+ \nsmart -> defend, defend, light attack\
+ \nshotgun -> defend, defend, power attack\
+ \nshort temper -> counter, counter, counter\
+ \npoisonous -> light attack, light attack, light attack\
+ \nchonker -> power attack, power attack, power attack")
+ return ..()
/obj/machinery/computer/arcade/battle/emag_act(mob/user)
. = ..()
diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm
index 58d907e14b..60e869815b 100644
--- a/code/game/objects/items/cards_ids.dm
+++ b/code/game/objects/items/cards_ids.dm
@@ -113,6 +113,26 @@
. = ..()
. += "It has [uses ? uses : "no"] charges left."
+/obj/item/card/id/examine_more(mob/user)
+ var/list/msg = list("You examine [src] closer, and note the following...")
+
+ if(mining_points)
+ msg += "There's [mining_points] mining equipment redemption point\s loaded onto this card."
+ if(registered_account)
+ msg += "The account linked to the ID belongs to '[registered_account.account_holder]' and reports a balance of [registered_account.account_balance] cr."
+ if(registered_account.account_job)
+ var/datum/bank_account/D = SSeconomy.get_dep_account(registered_account.account_job.paycheck_department)
+ if(D)
+ msg += "The [D.account_holder] reports a balance of [D.account_balance] cr."
+ msg += "Alt-Click the ID to pull money from the linked account in the form of holochips."
+ msg += "You can insert credits into the linked account by pressing holochips, cash, or coins against the ID."
+ if(registered_account.account_holder == user.real_name)
+ msg += "If you lose this ID card, you can reclaim your account by Alt-Clicking a blank ID card while holding it and entering your account ID number."
+ else
+ msg += "There is no registered account linked to this card. Alt-Click to add one."
+
+ return msg
+
/obj/item/card/emag/attackby(obj/item/W, mob/user, params)
if(istype(W, /obj/item/emagrecharge))
var/obj/item/emagrecharge/ER = W
diff --git a/code/modules/client/client_defines.dm b/code/modules/client/client_defines.dm
index 7f670e756f..7f1ba86ff5 100644
--- a/code/modules/client/client_defines.dm
+++ b/code/modules/client/client_defines.dm
@@ -119,6 +119,8 @@
/// Messages currently seen by this client
var/list/seen_messages
+ ///A lazy list of atoms we've examined in the last EXAMINE_MORE_TIME (default 1.5) seconds, so that we will call [atom/proc/examine_more()] instead of [atom/proc/examine()] on them when examining
+ var/list/recent_examines
///When was the last time we warned them about not cryoing without an ahelp, set to -5 minutes so that rounstart cryo still warns
var/cryo_warned = -5 MINUTES
diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm
index fd9afc91cd..dda7d68046 100644
--- a/code/modules/mob/mob.dm
+++ b/code/modules/mob/mob.dm
@@ -288,8 +288,14 @@ mob/visible_message(message, self_message, blind_message, vision_distance = DEFA
. = view(dist, src)
SEND_SIGNAL(src, COMSIG_MOB_FOV_VIEW, .)
-//mob verbs are faster than object verbs. See https://secure.byond.com/forum/?post=1326139&page=2#comment8198716 for why this isn't atom/verb/examine()
-/mob/verb/examinate(atom/A as mob|obj|turf in fov_view()) //It used to be oview(12), but I can't really say why
+/**
+ * Examine a mob
+ *
+ * mob verbs are faster than object verbs. See
+ * [this byond forum post](https://secure.byond.com/forum/?post=1326139&page=2#comment8198716)
+ * for why this isn't atom/verb/examine()
+ */
+/mob/verb/examinate(atom/A as mob|obj|turf in view()) //It used to be oview(12), but I can't really say why
set name = "Examine"
set category = "IC"
@@ -297,18 +303,63 @@ mob/visible_message(message, self_message, blind_message, vision_distance = DEFA
// shift-click catcher may issue examinate() calls for out-of-sight turfs
return
- if(is_blind(src))
+ if(is_blind())
to_chat(src, "Something is there but you can't see it!")
return
face_atom(A)
- var/flags = SEND_SIGNAL(src, COMSIG_MOB_EXAMINATE, A)
- if(flags & COMPONENT_DENY_EXAMINATE)
- if(flags & COMPONENT_EXAMINATE_BLIND)
- to_chat(src, "Something is there but you can't see it!")
- return
- var/list/result = A.examine(src)
+ var/list/result
+ if(client)
+ LAZYINITLIST(client.recent_examines)
+ if(isnull(client.recent_examines[A]) || client.recent_examines[A] < world.time)
+ result = A.examine(src)
+ client.recent_examines[A] = world.time + EXAMINE_MORE_TIME // set the value to when the examine cooldown ends
+ RegisterSignal(A, COMSIG_PARENT_QDELETING, .proc/clear_from_recent_examines, override=TRUE) // to flush the value if deleted early
+ addtimer(CALLBACK(src, .proc/clear_from_recent_examines, A), EXAMINE_MORE_TIME)
+ handle_eye_contact(A)
+ else
+ result = A.examine_more(src)
+ else
+ result = A.examine(src) // if a tree is examined but no client is there to see it, did the tree ever really exist?
+
to_chat(src, result.Join("\n"))
+ SEND_SIGNAL(src, COMSIG_MOB_EXAMINATE, A)
+
+/mob/proc/clear_from_recent_examines(atom/A)
+ if(!client)
+ return
+ UnregisterSignal(A, COMSIG_PARENT_QDELETING)
+ LAZYREMOVE(client.recent_examines, A)
+
+/**
+ * handle_eye_contact() is called when we examine() something. If we examine an alive mob with a mind who has examined us in the last second within 5 tiles, we make eye contact!
+ *
+ * Note that if either party has their face obscured, the other won't get the notice about the eye contact
+ * Also note that examine_more() doesn't proc this or extend the timer, just because it's simpler this way and doesn't lose much.
+ * The nice part about relying on examining is that we don't bother checking visibility, because we already know they were both visible to each other within the last second, and the one who triggers it is currently seeing them
+ */
+/mob/proc/handle_eye_contact(mob/living/examined_mob)
+ return
+
+/mob/living/handle_eye_contact(mob/living/examined_mob)
+ if(!istype(examined_mob) || src == examined_mob || examined_mob.stat >= UNCONSCIOUS || !client || !examined_mob.client?.recent_examines || !(src in examined_mob.client.recent_examines))
+ return
+
+ if(get_dist(src, examined_mob) > EYE_CONTACT_RANGE)
+ return
+
+ var/mob/living/carbon/examined_carbon = examined_mob
+ // check to see if their face is blocked (or if they're not a carbon, in which case they can't block their face anyway)
+ if(!istype(examined_carbon) || (!(examined_carbon.wear_mask && examined_carbon.wear_mask.flags_inv & HIDEFACE) && !(examined_carbon.head && examined_carbon.head.flags_inv & HIDEFACE)))
+ if(SEND_SIGNAL(src, COMSIG_MOB_EYECONTACT, examined_mob, TRUE) != COMSIG_BLOCK_EYECONTACT)
+ var/msg = "You make eye contact with [examined_mob]."
+ addtimer(CALLBACK(GLOBAL_PROC, .proc/to_chat, src, msg), 3) // so the examine signal has time to fire and this will print after
+
+ var/mob/living/carbon/us_as_carbon = src // i know >casting as subtype, but this isn't really an inheritable check
+ if(!istype(us_as_carbon) || (!(us_as_carbon.wear_mask && us_as_carbon.wear_mask.flags_inv & HIDEFACE) && !(us_as_carbon.head && us_as_carbon.head.flags_inv & HIDEFACE)))
+ if(SEND_SIGNAL(examined_mob, COMSIG_MOB_EYECONTACT, src, FALSE) != COMSIG_BLOCK_EYECONTACT)
+ var/msg = "[src] makes eye contact with you."
+ addtimer(CALLBACK(GLOBAL_PROC, .proc/to_chat, examined_mob, msg), 3)
//same as above
//note: ghosts can point, this is intended
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index aed3ff5848..4afc2f1d5b 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -96,6 +96,9 @@
else
. += "You're too far away to read it!"
+/obj/item/paper/examine_more(mob/user)
+ ui_interact(user)
+
/obj/item/paper/proc/show_content(mob/user)
user.examinate(src)
From e0428e946e8eff4cf0ac18acaa3718c270cfd8f7 Mon Sep 17 00:00:00 2001
From: EmeraldSundisk
Date: Thu, 9 Jul 2020 12:46:29 -0700
Subject: [PATCH 28/51] Update CogStation.dmm
---
_maps/map_files/CogStation/CogStation.dmm | 146045 +------------------
1 file changed, 8019 insertions(+), 138026 deletions(-)
diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm
index 2f27c3f747..27b35ae367 100644
--- a/_maps/map_files/CogStation/CogStation.dmm
+++ b/_maps/map_files/CogStation/CogStation.dmm
@@ -1,138029 +1,8022 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aaa" = (
-/turf/open/space/basic,
-/area/space)
-"aab" = (
-/obj/structure/sign/poster/official/anniversary_vintage_reprint,
-/turf/closed/wall/r_wall,
-/area/science/research{
- name = "Research Sector"
- })
-"aac" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"aad" = (
-/turf/open/floor/engine{
- name = "Holodeck Projector Floor"
- },
-/area/holodeck/rec_center)
-"aae" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 4;
- height = 12;
- id = "arrivals_stationary";
- name = "cog arrivals";
- roundstart_template = /datum/map_template/shuttle/arrival/cog;
- width = 9
- },
-/turf/open/space/basic,
-/area/space)
-"aaf" = (
-/turf/closed/wall,
-/area/science/test_area)
-"aag" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/stairs/medium,
-/area/hallway/secondary/entry)
-"aah" = (
-/obj/structure/sign/warning/electricshock,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"aai" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/closed/wall/r_wall/rust,
-/area/maintenance/fore)
-"aaj" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/port/fore)
-"aak" = (
-/obj/machinery/conveyor/auto{
- id = "pb"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"aal" = (
-/turf/closed/wall,
-/area/maintenance/port/fore)
-"aam" = (
-/obj/structure/table,
-/obj/item/storage/box/lights/mixed,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aan" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/ai_monitored/security/armory)
-"aao" = (
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard/fore)
-"aap" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aaq" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aar" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "pb"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"aas" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/spawner/north,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aat" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/observatory";
- dir = 1;
- name = "Observatory APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aau" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/port/fore";
- dir = 8;
- name = "Port Bow Maintenance APC";
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aav" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "solar"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"aaw" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/test_area)
-"aax" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aay" = (
-/obj/structure/sign/warning/electricshock,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"aaz" = (
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/ai_monitored/security/armory)
-"aaA" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"aaB" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/kitchen/backroom";
- dir = 1;
- name = "Kitchen Coldroom APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"aaC" = (
-/obj/structure/closet/secure_closet/lethalshots,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/storage/box/firingpins,
-/obj/item/storage/box/firingpins,
-/obj/effect/spawner/lootdrop/armory_contraband/metastation,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"aaD" = (
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"aaE" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/camera{
- c_tag = "Port Bow Maintenance - Fore";
- network = list("ss13","rd")
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aaF" = (
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"aaG" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/stairs/left,
-/area/security/brig)
-"aaH" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/machinery/camera/motion{
- c_tag = "Armory Motion Sensor";
- pixel_x = 22
- },
-/obj/structure/rack,
-/obj/item/gun/energy{
- pixel_y = -6
- },
-/obj/item/gun/energy{
- pixel_y = -3
- },
-/obj/item/gun/energy,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"aaI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aaJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"aaK" = (
-/obj/machinery/power/solar{
- id = "foreport";
- name = "Fore-Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
-"aaL" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"aaM" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"aaN" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aaO" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"aaP" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"aaQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"aaR" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aaS" = (
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aaT" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"aaU" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"aaV" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"aaW" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aaX" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aaY" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 8;
- sortType = 21
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"aaZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aba" = (
-/obj/machinery/door/airlock/external{
- name = "Arrival Shuttle Airlock"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"abb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"abc" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"abd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"abe" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"abf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"abg" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"abh" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space/basic,
-/area/solar/port)
-"abi" = (
-/obj/machinery/power/solar{
- id = "foreport";
- name = "Fore-Port Solar Array"
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/port)
-"abj" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"abk" = (
-/obj/structure/closet/crate/secure/gear{
- name = "Grenade Crate"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/storage/box/flashbangs{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/item/storage/box/teargas{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"abl" = (
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/structure/rack,
-/obj/item/gun/energy/laser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/laser,
-/obj/item/gun/energy/laser{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"abm" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"abn" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/gun/ballistic/shotgun/riot{
- pixel_y = 6
- },
-/obj/item/gun/ballistic/shotgun/riot,
-/obj/item/gun/ballistic/shotgun/riot{
- pixel_y = -6
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"abo" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"abp" = (
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"abq" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/box/rubbershot,
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"abr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"abs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"abt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"abu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"abv" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"abw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/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
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"abx" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/solars/port)
-"aby" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"abz" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"abA" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"abB" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre/clown)
-"abC" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/crew_quarters/theatre/clown)
-"abD" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"abE" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/deliveryChute{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"abF" = (
-/obj/machinery/mass_driver{
- dir = 8;
- id = "sb_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"abG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/storage/box/trackimp{
- pixel_x = 4
- },
-/obj/item/storage/box/chemimp{
- pixel_x = -4
- },
-/obj/item/storage/lockbox/loyalty,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"abH" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"abI" = (
-/obj/structure/table,
-/obj/structure/mirror{
- icon_state = "mirror_broke";
- pixel_x = -24
- },
-/obj/item/storage/briefcase,
-/obj/item/circuitboard/machine/vending/donksofttoyvendor,
-/obj/item/storage/pill_bottle/happy,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/paper/fluff/cogstation/cluwne,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"abJ" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "sb_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"abK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"abL" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"abM" = (
-/turf/closed/wall/r_wall,
-/area/router/aux)
-"abN" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/checker,
-/area/hallway/secondary/entry)
-"abO" = (
-/obj/structure/chair/comfy/brown,
-/obj/item/beacon,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"abP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/gun/energy/ionrifle{
- pixel_y = 4
- },
-/obj/item/gun/energy/temperature/security{
- pixel_y = -4
- },
-/obj/item/clothing/suit/armor/laserproof,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"abQ" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"abR" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"abS" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
-"abT" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/dorms/purple";
- name = "Crew Quarters A APC";
- pixel_y = -26
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"abU" = (
-/obj/machinery/space_heater,
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/dorms/blue";
- name = "Crew Quarters B APC";
- pixel_y = -26
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"abV" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"abW" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/router/aux)
-"abX" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint)
-"abY" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"abZ" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "sb_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"aca" = (
-/obj/machinery/conveyor{
- dir = 5;
- id = "pb_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acb" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"acc" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "solitarylock";
- name = "Brig Lockdown"
- },
-/turf/open/floor/plating,
-/area/security/brig)
-"acd" = (
-/obj/machinery/button/door{
- id = "armory";
- name = "Armory Blast Door Control";
- pixel_x = -28;
- pixel_y = -28
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"ace" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "pb_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acf" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "pb_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acg" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"ach" = (
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aci" = (
-/turf/closed/wall,
-/area/medical{
- name = "Medical Booth"
- })
-"acj" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "solar_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"ack" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/shield/riot{
- pixel_x = -6
- },
-/obj/item/shield/riot{
- pixel_x = -6
- },
-/obj/item/shield/riot{
- pixel_x = -6
- },
-/obj/item/clothing/mask/gas/sechailer/swat{
- pixel_x = -4
- },
-/obj/item/clothing/mask/gas/sechailer/swat{
- pixel_x = -4
- },
-/obj/item/clothing/mask/gas/sechailer/swat{
- pixel_x = -4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"acl" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Armory";
- req_one_access_txt = "3"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"acm" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aco" = (
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"acp" = (
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"acq" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/machinery/conveyor{
- id = "solar_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acr" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 4;
- sortType = 7
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acs" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"act" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"acu" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/machinery/recharger,
-/obj/item/assembly/signaler{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/assembly/signaler{
- pixel_x = 8;
- pixel_y = 4
- },
-/obj/item/assembly/signaler{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/item/electropack{
- pixel_x = -10
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"acv" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"acw" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"acx" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/gun/energy/e_gun/advtaser{
- pixel_y = 6
- },
-/obj/item/gun/energy/e_gun/advtaser,
-/obj/item/gun/energy/e_gun/advtaser{
- pixel_y = -6
- },
-/obj/structure/rack,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"acz" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "sb_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acA" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "sb_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acB" = (
-/obj/machinery/conveyor{
- dir = 6;
- id = "sb_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- id = "armory";
- name = "Armory"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"acD" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"acE" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"acF" = (
-/turf/closed/wall,
-/area/crew_quarters/lounge)
-"acG" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "pb_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acH" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"acI" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"acJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor{
- id = "solar_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acK" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/medical{
- name = "Medical Booth"
- })
-"acL" = (
-/obj/machinery/door/poddoor{
- id = "executionspaceblast"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"acM" = (
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_x = -32
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"acN" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"acO" = (
-/obj/structure/sign/warning/electricshock,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"acP" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"acQ" = (
-/turf/closed/wall,
-/area/crew_quarters/theatre/clown)
-"acR" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/kirbyplants{
- icon_state = "plant-16"
- },
-/turf/open/floor/plasteel/checker,
-/area/hallway/secondary/entry)
-"acS" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/on,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"acT" = (
-/obj/structure/table/reinforced,
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"acU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/sign/warning/securearea{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/camera{
- c_tag = "Armory Access";
- network = list("ss13","rd")
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"acV" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"acW" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/deliveryChute,
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"acX" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"acY" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"acZ" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ada" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"adb" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"adc" = (
-/obj/machinery/conveyor{
- id = "sb_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"add" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/crew_quarters/observatory)
-"ade" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/on,
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"adf" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/crew_quarters/observatory)
-"adg" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"adh" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/crew_quarters/observatory)
-"adi" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"adj" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/crew_quarters/observatory)
-"adk" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/conveyor{
- id = "solar_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"adl" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"adm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Fore Maintenance";
- req_one_access_txt = "12;46"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"adn" = (
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/entry)
-"ado" = (
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard/fore)
-"adp" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"adq" = (
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/entry)
-"adr" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/kirbyplants{
- icon_state = "plant-16"
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"ads" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"adt" = (
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"adu" = (
-/obj/structure/sign/warning{
- name = "\improper CONSTRUCTION AREA";
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"adv" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"adw" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "solar"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"adx" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"ady" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/airless,
-/area/solar/starboard/fore)
-"adz" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"adA" = (
-/obj/effect/turf_decal/tile/red,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"adB" = (
-/obj/structure/sign/poster/official/enlist{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"adC" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/observatory)
-"adD" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/vending/security,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"adE" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/item/gun/energy/laser/practice,
-/obj/item/gun/energy/laser/practice,
-/obj/machinery/syndicatebomb/training,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"adF" = (
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"adG" = (
-/obj/machinery/mass_driver{
- id = "serv_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"adH" = (
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "solar"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"adI" = (
-/obj/machinery/disposal/bin{
- name = "Service Delivery"
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"adJ" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/closet,
-/obj/item/clothing/under/misc/staffassistant,
-/obj/item/clothing/under/misc/staffassistant,
-/obj/item/clothing/under/misc/staffassistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"adK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/stairs/medium,
-/area/security/brig)
-"adL" = (
-/obj/machinery/mass_driver{
- id = "starboard_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"adM" = (
-/turf/closed/wall,
-/area/crew_quarters/observatory)
-"adN" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"adO" = (
-/obj/structure/noticeboard{
- dir = 4;
- pixel_x = -27
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"adP" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"adQ" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"adR" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/storage/box/beakers,
-/obj/item/hand_labeler,
-/obj/item/folder/white{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/stamp/denied{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/stamp,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"adS" = (
-/turf/closed/wall,
-/area/construction)
-"adT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/construction)
-"adU" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"adV" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/starboard/fore";
- dir = 1;
- name = "Starboard Bow Maintenance APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"adW" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs/right,
-/area/security/brig)
-"adX" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"adY" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"adZ" = (
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"aea" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aeb" = (
-/obj/structure/table,
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aec" = (
-/turf/closed/wall/r_wall,
-/area/construction)
-"aed" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aee" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"aef" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aeg" = (
-/obj/structure/sign/warning/electricshock,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"aeh" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aei" = (
-/obj/machinery/light,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/hallway/secondary/entry";
- dir = 8;
- name = "Arrival Shuttle Hallway APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aej" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on,
-/turf/open/floor/plating/airless,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aek" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ael" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aem" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aen" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aeo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/circuitboard/machine/sleeper,
-/obj/structure/frame/machine,
-/turf/open/floor/plasteel,
-/area/construction)
-"aep" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aeq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aer" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aes" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/chair{
- dir = 1
- },
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aet" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aeu" = (
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aev" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/fore)
-"aew" = (
-/turf/closed/wall/r_wall,
-/area/security/prison)
-"aex" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/storage/hypospraykit/regular,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aey" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aez" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aeA" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aeB" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/toilet/fitness";
- name = "Fitness Toilets APC";
- pixel_y = -26
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aeC" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aeD" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aeE" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel,
-/area/construction)
-"aeF" = (
-/obj/structure/table,
-/obj/item/assembly/infra,
-/obj/item/assembly/voice{
- pixel_x = 4;
- pixel_y = 12
- },
-/obj/item/assembly/health{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = 4;
- pixel_y = -2
- },
-/turf/open/floor/plating,
-/area/construction)
-"aeG" = (
-/obj/item/stack/tile/plasteel{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/construction";
- dir = 1;
- name = "Construction Area APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/construction)
-"aeH" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aeI" = (
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aeJ" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/plating,
-/area/security/prison)
-"aeK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"aeL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aeM" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aeN" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Router";
- req_one_access_txt = "1"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aeO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aeP" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"aeQ" = (
-/obj/structure/closet/secure_closet/brig,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aeR" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aeS" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aeT" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aeU" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aeV" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/suit/straight_jacket,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aeW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Construction Area";
- req_access_txt = "12"
- },
-/turf/open/floor/plasteel,
-/area/construction)
-"aeX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aeY" = (
-/turf/closed/wall,
-/area/crew_quarters/toilet/fitness)
-"aeZ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"afa" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"afb" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afc" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afd" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"afe" = (
-/obj/machinery/door/airlock,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aff" = (
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"afg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/binary/valve/digital/on,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"afh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/obj/machinery/power/apc/highcap/fifteen_k{
- areastring = /area/maintenance/solars/starboard/fore;
- dir = 4;
- name = "Starboard Bow Solars APC";
- pixel_x = 28
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"afi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"afj" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afk" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afl" = (
-/obj/effect/landmark/secequipment,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"afm" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/construction)
-"afn" = (
-/obj/machinery/biogenerator,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"afo" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/landmark/start/mime,
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/theatre/mime";
- dir = 4;
- name = "Mime's Office APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/theatre/mime)
-"afp" = (
-/turf/open/floor/plating,
-/area/construction)
-"afq" = (
-/obj/structure/table,
-/obj/item/modular_computer/laptop/preset/civilian,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"afr" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/camera{
- pixel_y = -8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"afs" = (
-/obj/machinery/flasher{
- id = "executionflash";
- pixel_x = -25
- },
-/obj/structure/chair/e_chair,
-/obj/effect/decal/cleanable/ash{
- pixel_y = -8
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aft" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"afu" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afv" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afw" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"afx" = (
-/obj/machinery/computer/holodeck{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afy" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afz" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afA" = (
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"afB" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afC" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"afD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall/r_wall,
-/area/maintenance/port/fore)
-"afE" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall,
-/area/crew_quarters/theatre/clown)
-"afF" = (
-/obj/machinery/sparker{
- id = "executionburn";
- pixel_x = 25
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"afG" = (
-/obj/structure/sink{
- pixel_y = 28
- },
-/obj/item/paper/guides/jobs/hydroponics,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"afH" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- name = "Security RC";
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"afI" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afJ" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/plant_analyzer,
-/obj/item/cultivator,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/reagent_containers/glass/bucket,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"afK" = (
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"afL" = (
-/obj/machinery/door/airlock,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afM" = (
-/obj/structure/closet/crate/internals,
-/obj/machinery/camera{
- c_tag = "Construction Area";
- pixel_x = 22
- },
-/obj/item/flashlight,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/turf/open/floor/plating,
-/area/construction)
-"afN" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afO" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel/checker,
-/area/hallway/secondary/entry)
-"afP" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"afR" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/table/reinforced,
-/obj/item/paicard,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"afS" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"afT" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"afU" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/stairs/left,
-/area/hallway/secondary/entry)
-"afV" = (
-/obj/structure/closet/crate,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/clothing/gloves/color/white,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/structure/sign/poster/contraband/red_rum{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"afW" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"afX" = (
-/obj/item/cigbutt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/camera{
- c_tag = "Port Bow Maintenance - Aft";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"afY" = (
-/obj/item/seeds/carrot,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"afZ" = (
-/obj/machinery/disposal/bin{
- name = "Brig Catering"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5;
- layer = 2.03
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/kitchen)
-"aga" = (
-/obj/structure/table,
-/obj/item/paper/fluff/holodeck/disclaimer,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agb" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"agd" = (
-/obj/structure/fans/tiny/invisible,
-/obj/docking_port/stationary{
- dwidth = 1;
- height = 4;
- name = "escape pod loader";
- roundstart_template = /datum/map_template/shuttle/escape_pod/default;
- width = 3
- },
-/turf/open/space/basic,
-/area/space)
-"age" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"agf" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"agg" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"agh" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"agi" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"agj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Observatory Access"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"agk" = (
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agl" = (
-/obj/machinery/disposal/bin{
- name = "Bar Catering"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6;
- layer = 2.03
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/effect/turf_decal/tile/bar,
-/turf/open/floor/plasteel,
-/area/crew_quarters/kitchen)
-"agm" = (
-/obj/structure/table,
-/obj/item/sharpener,
-/obj/item/kitchen/knife,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"agn" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall,
-/area/crew_quarters/lounge)
-"ago" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"agp" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agq" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"agr" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ags" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"agt" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agu" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"agv" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/brig)
-"agw" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/displaycase/labcage{
- desc = "A glass lab container for storing smelly creatures.";
- name = "stinky panda containment";
- start_showpiece_type = /mob/living/simple_animal/pet/redpanda/stinky
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"agx" = (
-/mob/living/simple_animal/bot/floorbot,
-/turf/open/floor/plating,
-/area/construction)
-"agy" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"agz" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"agA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/warning{
- name = "\improper CONSTRUCTION AREA";
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"agB" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"agC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"agD" = (
-/obj/machinery/seed_extractor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"agE" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"agF" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/camera{
- c_tag = "Observatory Viewing Area";
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agG" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/theatre/mime)
-"agH" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"agI" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/tower,
-/obj/item/seeds/amanita,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"agJ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Fore Maintenance";
- req_one_access_txt = "12;46"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"agK" = (
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agL" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating/airless,
-/area/solar/port)
-"agM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agN" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agO" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Holodeck Door"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"agQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"agR" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agS" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/suit_storage_unit/engine,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"agU" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_y = 3
- },
-/obj/item/assembly/timer{
- pixel_x = 6;
- pixel_y = 4
- },
-/obj/item/t_scanner{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/t_scanner,
-/obj/item/assembly/igniter{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/structure/sign/poster/contraband/missing_gloves{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"agV" = (
-/obj/machinery/newscaster{
- pixel_x = 28
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"agW" = (
-/turf/closed/wall/r_wall,
-/area/security/processing)
-"agX" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- name = "Starboard Bow Solar Exterior Airlock";
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"agY" = (
-/obj/structure/table,
-/obj/item/storage/crayons,
-/obj/item/toy/beach_ball/holoball,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"agZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"aha" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_y = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ahb" = (
-/obj/machinery/processor,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ahc" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_y = 8
- },
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ahd" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ahe" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ahf" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Labor Camp Shuttle Airlock"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ahg" = (
-/turf/closed/wall/r_wall,
-/area/security/warden)
-"ahh" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"ahi" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = 28
- },
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ahj" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Fore Maintenance - Fore";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahk" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ahl" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "Labor Camp Shuttle Airlock"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ahm" = (
-/obj/structure/falsewall/reinforced,
-/turf/closed/wall,
-/area/maintenance/port/fore)
-"ahn" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aho" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ahp" = (
-/obj/machinery/gulag_item_reclaimer{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ahq" = (
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ahr" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/ambrosia,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"ahs" = (
-/obj/machinery/light,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/machinery/camera{
- c_tag = "Kitchen";
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aht" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/item/storage/box/disks,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ahu" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hydroponics)
-"ahv" = (
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_x = 32
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"ahw" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ahx" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ahy" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "solitarylock";
- name = "Brig Lockdown"
- },
-/turf/open/floor/plating,
-/area/security/warden)
-"ahz" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"ahA" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/crew_quarters/fitness)
-"ahB" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/door/window/eastleft{
- name = "Bathroom Stall"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"ahC" = (
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"ahD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/fore";
- dir = 1;
- name = "Fore Maintenance APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ahF" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/structure/mirror{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"ahG" = (
-/obj/structure/sink{
- pixel_y = 28
- },
-/obj/structure/sign/poster/official/cleanliness{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"ahH" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"ahI" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/fitness";
- name = "Fitness Room APC";
- pixel_y = -26
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ahJ" = (
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"ahK" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ahL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/observatory)
-"ahM" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"ahN" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ahO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"ahP" = (
-/turf/closed/wall,
-/area/maintenance/solars/starboard/fore)
-"ahQ" = (
-/obj/structure/closet/lasertag/blue,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"ahR" = (
-/obj/item/beacon,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"ahS" = (
-/obj/structure/closet/cabinet,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"ahT" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/storage/bag/plants,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ahU" = (
-/obj/machinery/vending/wardrobe/chef_wardrobe,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ahV" = (
-/obj/structure/closet/lasertag/red,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"ahW" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"ahX" = (
-/obj/machinery/deepfryer,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ahY" = (
-/obj/machinery/vending/autodrobe,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"ahZ" = (
-/obj/structure/table/glass,
-/obj/item/storage/toolbox/emergency{
- pixel_y = 4
- },
-/obj/item/radio/off,
-/obj/machinery/camera{
- c_tag = "Arrival Shuttle Hallway"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/hallway/secondary/entry)
-"aia" = (
-/obj/effect/landmark/start/cook,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aib" = (
-/obj/structure/table/glass,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/hallway/secondary/entry)
-"aic" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"aid" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/cotton,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"aie" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aif" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"aig" = (
-/obj/machinery/camera{
- c_tag = "Observatory Holodeck";
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aih" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aii" = (
-/obj/structure/closet,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/gps,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aij" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aik" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ail" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aim" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ain" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/processing)
-"aio" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"aip" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aiq" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"air" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stack/cable_coil/red{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/item/stack/cable_coil/red,
-/obj/item/screwdriver,
-/obj/item/multitool{
- pixel_x = -6;
- pixel_y = -2
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"ais" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"ait" = (
-/obj/machinery/vending/dinnerware,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aiu" = (
-/obj/effect/landmark/start/mime,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/checker,
-/area/crew_quarters/theatre/mime)
-"aiv" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aiw" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aix" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aiy" = (
-/obj/structure/bed,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/effect/landmark/start/clown,
-/obj/item/bedsheet/clown,
-/obj/structure/sign/plaques/kiddie/perfect_man{
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"aiz" = (
-/turf/closed/wall,
-/area/maintenance/starboard/fore)
-"aiA" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/construction)
-"aiB" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/kitchen";
- name = "Kitchen APC";
- pixel_y = -26
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"aiC" = (
-/turf/closed/wall,
-/area/hallway/secondary/service)
-"aiD" = (
-/obj/structure/closet/crate/wooden/toy,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera{
- c_tag = "Clown's Office";
- pixel_x = 22
- },
-/obj/item/clothing/under/rank/civilian/clown/yellow,
-/obj/item/clothing/under/rank/civilian/clown/blue,
-/obj/item/clothing/under/rank/civilian/clown/green,
-/obj/item/toy/crayon/spraycan/lubecan,
-/obj/item/megaphone/clown,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"aiE" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"aiF" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Starboard Bow Maintenance";
- req_one_access_txt = "12;25;26;28;35;46"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"aiG" = (
-/obj/structure/closet,
-/obj/structure/window/reinforced,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"aiH" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/grass,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/security/prison)
-"aiI" = (
-/obj/structure/closet/boxinggloves,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aiJ" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"aiK" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/genpop,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aiL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/prison)
-"aiM" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/observatory)
-"aiN" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aiO" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aiP" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aiQ" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aiR" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/glass/beaker/waterbottle,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aiS" = (
-/obj/item/kirbyplants{
- icon_state = "plant-06"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aiT" = (
-/obj/machinery/door/airlock/maintenance/abandoned{
- name = "Port Bow Maintainance";
- req_one_access_txt = "1"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aiU" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/deepfryer,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aiV" = (
-/obj/item/stack/tile/plasteel{
- pixel_x = 10;
- pixel_y = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"aiW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Observatory"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/observatory)
-"aiX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall,
-/area/crew_quarters/observatory)
-"aiY" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/window/eastright{
- name = "Bathroom Stall"
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"aiZ" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/observatory)
-"aja" = (
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/caution,
-/turf/open/floor/plating,
-/area/construction)
-"ajb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ajc" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"ajd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"aje" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ajf" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ajg" = (
-/obj/structure/table,
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/item/reagent_containers/food/snacks/pie/cream,
-/obj/item/instrument/bikehorn,
-/obj/item/flashlight/lamp/bananalamp{
- pixel_y = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"ajh" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin/construction,
-/obj/item/storage/crayons,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/hallway/secondary/entry)
-"aji" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"ajj" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ajk" = (
-/obj/effect/landmark/start/clown,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"ajl" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/mob/living/simple_animal/cockroach,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ajm" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"ajn" = (
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"ajo" = (
-/obj/structure/table,
-/obj/item/toy/dummy,
-/obj/structure/mirror{
- pixel_x = -24
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/checker,
-/area/crew_quarters/theatre/mime)
-"ajp" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/observatory)
-"ajq" = (
-/obj/effect/landmark/start/clown,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/theatre/clown";
- dir = 4;
- name = "Clown's Office APC";
- pixel_x = 24
- },
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"ajr" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/observatory)
-"ajs" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/mint,
-/obj/item/reagent_containers/food/condiment/mayonnaise,
-/obj/item/bikehorn{
- pixel_x = -8;
- pixel_y = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ajt" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"aju" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"ajv" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/theatre/mime)
-"ajw" = (
-/turf/closed/wall,
-/area/construction/secondary)
-"ajx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajy" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/computer/prisoner/management,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajz" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajA" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/genpop,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ajB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Hydroponics"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "Brig Lockdown"
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"ajC" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ajD" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/cook,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ajE" = (
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ajF" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/construction/secondary)
-"ajG" = (
-/obj/machinery/computer/arcade,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"ajH" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/crowbar,
-/obj/item/extinguisher,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ajI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ajJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ajK" = (
-/obj/structure/sign/warning{
- name = "\improper CONSTRUCTION AREA";
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"ajL" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/lounge";
- name = "Lounge APC";
- pixel_y = -26
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/observatory)
-"ajM" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder{
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -8;
- pixel_y = 12
- },
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = -8;
- pixel_y = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ajN" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ajO" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"ajP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ajQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ajR" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/observatory)
-"ajS" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"ajT" = (
-/obj/structure/weightmachine/weightlifter,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"ajU" = (
-/obj/structure/rack,
-/obj/item/wrench,
-/obj/item/light/tube,
-/obj/item/radio/off,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/structure/cable,
-/obj/machinery/camera{
- c_tag = "Security - Interrogation Maintenance";
- dir = 1
- },
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/security/brig";
- dir = 4;
- name = "Brig APC";
- pixel_x = 26
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"ajV" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall,
-/area/crew_quarters/theatre/mime)
-"ajW" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/observatory)
-"ajX" = (
-/obj/item/pipe{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/item/melee/baseball_bat,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/machinery/camera{
- c_tag = "Secondary Construction Area"
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"ajY" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ajZ" = (
-/obj/item/multitool,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/tcommsat/computer";
- dir = 1;
- name = "Telecomms Access APC";
- pixel_y = 28
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"aka" = (
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"akb" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Mime's Office";
- req_access_txt = "46"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/mime)
-"akc" = (
-/obj/machinery/computer/slot_machine,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/construction/secondary)
-"akd" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/checkpoint)
-"ake" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/rnd/production/techfab/department/service,
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"akf" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/emergency{
- pixel_y = 4
- },
-/obj/item/electronics/firelock,
-/obj/item/electronics/firealarm,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/construction/secondary)
-"akg" = (
-/obj/machinery/power/solar_control{
- dir = 4;
- id = "foreport";
- name = "Port Bow Solar Control"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = -32
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"akh" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/construction/secondary)
-"aki" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plating,
-/area/construction/secondary)
-"akj" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"akk" = (
-/obj/item/stack/tile/plasteel{
- pixel_x = 10;
- pixel_y = 4
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"akl" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/computer/shuttle/labor{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel,
-/area/construction/secondary)
-"akn" = (
-/obj/machinery/power/solar_control{
- id = "forestarboard";
- name = "Starboard Bow Solar Control"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"ako" = (
-/obj/machinery/button/flasher{
- id = "executionflash";
- pixel_x = 7;
- pixel_y = 24
- },
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plasteel,
-/area/maintenance/port/fore)
-"akp" = (
-/obj/structure/closet/secure_closet/warden,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"akq" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/storage/box/prisoner,
-/obj/item/razor,
-/obj/item/paper/guides/jobs/security/labor_camp,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akr" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/machinery/computer/prisoner/gulag_teleporter_computer{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Security - Prison Shuttle Dock";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"aks" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"akt" = (
-/obj/machinery/computer/prisoner/management,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/central";
- dir = 1;
- name = "Brig Control APC";
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"aku" = (
-/obj/machinery/computer/secure_data,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"akv" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"akw" = (
-/obj/structure/bed,
-/obj/item/clothing/glasses/sunglasses/blindfold,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"akx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Secondary Construction Area";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"aky" = (
-/obj/machinery/computer/crew,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"akz" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"akA" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/turf/open/floor/plating,
-/area/security/warden)
-"akB" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"akC" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"akD" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/hand_labeler{
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"akE" = (
-/turf/closed/wall/r_wall,
-/area/router/sec)
-"akF" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red,
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"akG" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"akH" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"akI" = (
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"akJ" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Telecommunications Maintenance";
- req_access_txt = "61"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"akK" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"akL" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Security - Brig";
- pixel_x = 22
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"akM" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"akN" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "secblock";
- name = "Security Router"
- },
-/obj/machinery/conveyor/auto{
- id = "sec"
- },
-/turf/open/floor/plating,
-/area/router/sec)
-"akO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/computer/security/labor{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akP" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- name = "Security Router"
- },
-/turf/open/floor/plating,
-/area/router/sec)
-"akQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"akR" = (
-/obj/structure/punching_bag,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"akS" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/item/soap/nanotrasen,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"akT" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akU" = (
-/obj/machinery/door/window/northleft{
- name = "Showers"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"akV" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"akW" = (
-/obj/structure/table/wood,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/reagent_containers/hypospray/medipen,
-/obj/item/reagent_containers/hypospray/medipen,
-/obj/item/reagent_containers/hypospray/medipen,
-/obj/item/reagent_containers/hypospray/medipen,
-/obj/structure/sign/departments/restroom{
- pixel_x = -32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"akX" = (
-/turf/closed/wall,
-/area/crew_quarters/dorms/purple)
-"akY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"akZ" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"ala" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"alb" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"alc" = (
-/obj/structure/fermenting_barrel,
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"ald" = (
-/obj/machinery/chem_master/condimaster,
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"ale" = (
-/turf/closed/wall,
-/area/crew_quarters/dorms/blue)
-"alf" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"alg" = (
-/obj/structure/frame/machine,
-/obj/item/circuitboard/computer/arcade/minesweeper,
-/turf/open/floor/plating,
-/area/construction/secondary)
-"alh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ali" = (
-/turf/open/floor/plating,
-/area/construction/secondary)
-"alj" = (
-/obj/machinery/gulag_teleporter,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"alk" = (
-/obj/item/caution,
-/turf/open/floor/plating,
-/area/construction/secondary)
-"all" = (
-/obj/structure/table/glass,
-/obj/item/wrench{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/reagent_containers/glass/bottle/mutagen{
- pixel_x = -4
- },
-/turf/open/floor/grass,
-/area/hydroponics)
-"alm" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/turf/open/floor/grass,
-/area/hydroponics)
-"aln" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/grass,
-/area/hydroponics)
-"alo" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"alp" = (
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel,
-/area/construction/secondary)
-"alq" = (
-/obj/machinery/conveyor/auto{
- id = "sec"
- },
-/turf/open/floor/plating,
-/area/router/sec)
-"alr" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"als" = (
-/obj/machinery/mass_driver{
- dir = 1;
- id = "sec_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router/sec)
-"alt" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"alu" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"alv" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"alw" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/landmark/start/warden,
-/obj/machinery/camera{
- c_tag = "Security - Brig Control";
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"alx" = (
-/turf/open/floor/plasteel,
-/area/maintenance/port/fore)
-"aly" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"alz" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"alA" = (
-/obj/structure/bed,
-/obj/item/bedsheet/purple,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"alB" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"alC" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"alD" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"alE" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"alF" = (
-/obj/machinery/photocopier,
-/obj/machinery/newscaster/security_unit{
- pixel_y = -28
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/item/paper/guides/cogstation/letter_sec,
-/turf/open/floor/plasteel,
-/area/security/warden)
-"alG" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"alH" = (
-/obj/structure/table,
-/obj/item/storage/box/beakers{
- pixel_x = -8
- },
-/obj/item/storage/box/ingredients{
- pixel_x = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"alI" = (
-/obj/structure/weightmachine/stacklifter,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"alJ" = (
-/obj/machinery/vending/hydroseeds,
-/turf/open/floor/grass,
-/area/hydroponics)
-"alK" = (
-/obj/effect/landmark/xmastree,
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"alL" = (
-/obj/structure/weightmachine/weightlifter,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"alM" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"alN" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alO" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"alP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alQ" = (
-/obj/structure/dresser,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"alR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"alS" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/obj/item/reagent_containers/rag,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"alT" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"alU" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"alV" = (
-/obj/structure/bed,
-/obj/item/bedsheet/blue,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"alW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"alX" = (
-/obj/structure/table,
-/obj/item/storage/box/ingredients,
-/obj/item/clothing/head/chefhat,
-/obj/item/reagent_containers/glass/beaker,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"alY" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/t_scanner,
-/turf/open/floor/plating,
-/area/construction/secondary)
-"alZ" = (
-/turf/closed/wall/r_wall,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"ama" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/warden)
-"amb" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"amc" = (
-/turf/closed/wall,
-/area/storage/tools)
-"amd" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ame" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/warden)
-"amf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"amg" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"amh" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/machinery/recharger,
-/obj/item/pen/red{
- pixel_y = 4
- },
-/obj/item/pen/blue{
- pixel_x = -4;
- pixel_y = -4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ami" = (
-/obj/structure/sign/poster/contraband/grey_tide{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"amj" = (
-/turf/closed/wall/rust,
-/area/maintenance/port/fore)
-"amk" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/port/fore)
-"aml" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"amm" = (
-/obj/structure/closet/crate/secure/weapon{
- desc = "A secure clothing crate.";
- name = "formal uniform crate";
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"amn" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/mob/living/simple_animal/mouse/brown,
-/turf/open/floor/plating,
-/area/construction/secondary)
-"amo" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"amp" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Fore Maintenance";
- req_one_access_txt = "12;46"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"amq" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"amr" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Starboard Bow Maintenance";
- req_one_access_txt = "12;25;26;28;35;46"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ams" = (
-/obj/machinery/camera{
- c_tag = "Fitness Toilets";
- pixel_x = 22
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"amt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"amu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"amv" = (
-/obj/structure/punching_bag,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"amw" = (
-/obj/structure/sign/poster/contraband/eat{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"amx" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"amy" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"amz" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"amA" = (
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"amB" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/warden)
-"amC" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"amD" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"amE" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/cable,
-/obj/machinery/power/apc/highcap/five_k{
- areastring = "/area/crew_quarters/bar";
- dir = 8;
- name = "Bar APC";
- pixel_x = -26
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"amF" = (
-/obj/effect/landmark/start/cook,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -30
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"amG" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/chapel/main)
-"amH" = (
-/obj/item/crowbar/large{
- pixel_y = 3
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/construction/secondary)
-"amI" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/warden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"amJ" = (
-/obj/structure/lattice,
-/obj/structure/sign/departments/botany{
- pixel_x = -32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"amK" = (
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"amL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"amM" = (
-/obj/machinery/light,
-/obj/machinery/disposal/bin{
- name = "Kitchen Mailbox"
- },
-/obj/effect/turf_decal/delivery/white,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"amN" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/storage/tools)
-"amO" = (
-/obj/item/bedsheet/mime,
-/obj/structure/bed,
-/obj/effect/landmark/start/mime,
-/obj/machinery/camera{
- c_tag = "Mime's Office";
- pixel_x = 22
- },
-/turf/open/floor/plasteel/checker,
-/area/crew_quarters/theatre/mime)
-"amP" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/hallway/secondary/entry)
-"amQ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastleft{
- name = "Reception Window"
- },
-/obj/machinery/door/window/westleft{
- name = "Warden's Desk";
- req_one_access_txt = "2"
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"amR" = (
-/obj/machinery/light/small,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"amS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"amT" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"amU" = (
-/obj/structure/beebox,
-/obj/item/queen_bee/bought,
-/turf/open/floor/grass,
-/area/hydroponics)
-"amV" = (
-/turf/open/floor/grass,
-/area/hydroponics)
-"amW" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = -4
- },
-/obj/item/book/manual/hydroponics_pod_people{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/paper/guides/jobs/hydroponics{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/grass,
-/area/hydroponics)
-"amX" = (
-/obj/machinery/suit_storage_unit/security,
-/turf/open/floor/plasteel/dark,
-/area/security/processing)
-"amY" = (
-/turf/closed/wall,
-/area/chapel/main)
-"amZ" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ana" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"anb" = (
-/obj/structure/table,
-/obj/item/lipstick/black,
-/obj/item/lipstick/random{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/theatre/mime)
-"anc" = (
-/obj/item/cigbutt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"and" = (
-/turf/closed/wall/r_wall,
-/area/chapel/main)
-"ane" = (
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"anf" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/construction/secondary";
- dir = 1;
- name = "Secondary Construction Area APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"ang" = (
-/turf/closed/wall/r_wall,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"anh" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/clothing/glasses/regular,
-/obj/machinery/door/window/northright{
- name = "Medical Booth Desk";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"ani" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/sign/poster/official/duelshotgun{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"anj" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ank" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/easel,
-/obj/item/canvas/nineteenXnineteen,
-/obj/machinery/camera{
- c_tag = "Crew Lounge";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"anl" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"anm" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "disposal"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ann" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/goonplaque{
- desc = "It reads 'In honor of spacemen past, whose work allowed this station to find its new home. The fact that you stand on a station originally built light years away is a definitive representation of the ingenuity of the human spirit.' Beneath this is the image of a spaceman rocketing upwards by means of what appears to be a match and flatulence."
- },
-/area/hallway/secondary/entry)
-"ano" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"anp" = (
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"anq" = (
-/turf/closed/wall,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"anr" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"ans" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/destTagger,
-/obj/machinery/button/door{
- id = "secblock";
- name = "Router Access Control";
- pixel_x = 8;
- pixel_y = 24;
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"ant" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"anu" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"anv" = (
-/obj/item/stack/sheet/plasteel{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/box/beakers,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/construction)
-"anw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"anx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"any" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/pill/patch/styptic,
-/obj/item/reagent_containers/pill/patch/styptic,
-/obj/item/reagent_containers/pill/patch/styptic,
-/obj/item/reagent_containers/pill/patch/styptic,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"anz" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"anA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Fitness Room Maintenance";
- req_one_access_txt = "12;46"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"anB" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/sign/barsign{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"anC" = (
-/obj/machinery/computer/cargo/request,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/requests_console{
- department = "Security Router";
- name = "Security Router RC";
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"anD" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"anE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"anF" = (
-/obj/machinery/smartfridge,
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"anG" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"anH" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/security/checkpoint)
-"anI" = (
-/obj/machinery/computer/arcade/orion_trail,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"anJ" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/item/paper_bin,
-/obj/item/stamp/denied{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/stamp{
- pixel_x = 6;
- pixel_y = 4
- },
-/obj/item/pen,
-/obj/machinery/power/apc{
- areastring = "/area/security/checkpoint";
- dir = 4;
- name = "Security Checkpoint APC";
- pixel_x = 24
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- name = "Security RC";
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"anK" = (
-/turf/closed/wall/r_wall,
-/area/security/detectives_office)
-"anL" = (
-/obj/machinery/computer/arcade/minesweeper,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"anM" = (
-/obj/machinery/recharge_station,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"anN" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/analyzer,
-/obj/item/wrench{
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"anO" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/storage/belt/utility,
-/obj/item/extinguisher,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"anP" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"anQ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"anR" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"anS" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/power/apc{
- areastring = "/area/storage/tools";
- name = "Auxiliary Tool Storage APC";
- pixel_y = -26
- },
-/obj/machinery/camera{
- c_tag = "Auxiliary Tool Storage";
- dir = 4;
- pixel_y = -22
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"anT" = (
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"anU" = (
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"anV" = (
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"anW" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "sec_off"
- },
-/turf/open/floor/plating,
-/area/router/sec)
-"anX" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"anY" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"anZ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"aoa" = (
-/obj/item/clockwork/component/geis_capacitor/fallen_armor,
-/obj/structure/table/bronze,
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aob" = (
-/obj/structure/closet/emcloset,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aoc" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/requests_console{
- department = "Recreation";
- name = "Recreation RC";
- pixel_y = -32
- },
-/obj/item/storage/box/drinkingglasses,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = -4;
- pixel_y = 2
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aod" = (
-/obj/machinery/computer/security{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/warden)
-"aoe" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"aof" = (
-/obj/structure/sign/poster/official/foam_force_ad{
- pixel_y = 32
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"aog" = (
-/turf/open/floor/grass,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aoh" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aoi" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"aoj" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"aok" = (
-/obj/structure/chair/wood/normal{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "Dorm1";
- name = "Dormitory Door Lock";
- normaldoorcontrol = 1;
- pixel_x = -7;
- pixel_y = -24;
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"aol" = (
-/obj/machinery/button/door{
- id = "Dorm3";
- name = "Dormitory Door Lock";
- normaldoorcontrol = 1;
- pixel_x = 7;
- pixel_y = -24;
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"aom" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"aon" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"aoo" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/clothing/ears/earmuffs,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/construction/secondary)
-"aop" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"aoq" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/warden)
-"aor" = (
-/obj/machinery/shower{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"aos" = (
-/obj/structure/window/reinforced,
-/obj/structure/closet/athletic_mixed,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aot" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aou" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aov" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/grass,
-/area/hydroponics)
-"aow" = (
-/mob/living/simple_animal/banana_spider{
- name = "Henry"
- },
-/turf/open/floor/grass,
-/area/hydroponics)
-"aox" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"aoy" = (
-/obj/machinery/computer/secure_data,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Security Checkpoint";
- pixel_x = 22
- },
-/obj/machinery/newscaster/security_unit{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"aoz" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 4;
- name = "4maintenance loot spawner"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/construction/secondary)
-"aoA" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/item/flashlight/lamp,
-/obj/machinery/door/window/westright{
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"aoB" = (
-/obj/structure/bed,
-/obj/item/clothing/glasses/sunglasses/blindfold,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/camera{
- c_tag = "Security - Prison Beds";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/power/apc/highcap/five_k{
- areastring = "/area/security/prison";
- dir = 4;
- name = "Prison APC";
- pixel_x = 26
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aoC" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aoD" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"aoE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/main)
-"aoF" = (
-/turf/closed/wall/r_wall,
-/area/security/main)
-"aoG" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"aoH" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Port Bow Solars External Access";
- req_access_txt = "10;13"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aoI" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/grass,
-/area/hydroponics)
-"aoJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/machinery/space_heater,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aoK" = (
-/turf/closed/wall/r_wall,
-/area/router/service)
-"aoL" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"aoM" = (
-/obj/structure/closet/crate,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stock_parts/scanning_module,
-/obj/item/stock_parts/capacitor,
-/turf/open/floor/plating,
-/area/construction)
-"aoN" = (
-/obj/structure/closet/crate/internals,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = -26
- },
-/obj/item/clothing/head/hardhat/orange,
-/obj/item/clothing/head/hardhat/orange,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aoO" = (
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aoP" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aoQ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aoR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Brig Control";
- req_access_txt = "3"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/warden)
-"aoS" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/conveyor{
- id = "serv_off"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "servblock";
- name = "Service Router"
- },
-/turf/open/floor/plating,
-/area/router/service)
-"aoT" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "servblock";
- name = "Service Router"
- },
-/turf/open/floor/plating,
-/area/router/service)
-"aoU" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"aoV" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aoW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external/glass{
- name = "Port Bow Solars External Access";
- req_access_txt = "10;13"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aoX" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aoY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aoZ" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"apa" = (
-/obj/structure/chair/sofa/right,
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"apb" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"apc" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"apd" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"ape" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"apf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"apg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"aph" = (
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"api" = (
-/obj/machinery/door/window/southright{
- name = "Weightroom"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"apj" = (
-/obj/structure/window/reinforced,
-/obj/structure/punching_bag,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"apk" = (
-/obj/structure/closet/lasertag/blue,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"apl" = (
-/obj/structure/chair/sofa/right,
-/obj/item/clothing/head/beret/black,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"apm" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 1
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"apn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"apo" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/construction)
-"app" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"apq" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"apr" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/button/massdriver{
- id = "sec_out";
- pixel_x = 24;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"aps" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/security{
- name = "Security EVA Prep Room";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"apt" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/construction)
-"apu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"apv" = (
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"apw" = (
-/obj/structure/chair/sofa/left,
-/obj/effect/landmark/start/assistant,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"apx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"apy" = (
-/obj/machinery/vr_sleeper{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"apz" = (
-/obj/machinery/vr_sleeper{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"apA" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall,
-/area/crew_quarters/dorms/purple)
-"apB" = (
-/obj/structure/flora/tree/jungle/small,
-/turf/open/floor/grass,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"apC" = (
-/turf/closed/wall/r_wall,
-/area/hydroponics)
-"apD" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm1";
- name = "Room 1"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"apE" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/grass,
-/area/hydroponics)
-"apF" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"apG" = (
-/mob/living/simple_animal/chicken{
- name = "Featherbottom";
- real_name = "Featherbottom"
- },
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"apH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/main)
-"apI" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"apJ" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green,
-/obj/machinery/camera{
- c_tag = "Hydroponics - Fore";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"apK" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -30
- },
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/grass,
-/area/hydroponics)
-"apL" = (
-/obj/structure/chair/sofa/left,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"apM" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"apN" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm3";
- name = "Room 3"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"apO" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall,
-/area/crew_quarters/dorms/blue)
-"apP" = (
-/obj/structure/table,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"apQ" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Solitary Confinement";
- req_one_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"apR" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 1;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = -5;
- pixel_y = 7
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"apS" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"apT" = (
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/construction)
-"apU" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate,
-/obj/item/gun/ballistic/revolver/russian,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"apV" = (
-/turf/closed/wall/rust,
-/area/chapel/main)
-"apW" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"apX" = (
-/obj/structure/fermenting_barrel,
-/turf/open/floor/grass,
-/area/hydroponics)
-"apY" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"apZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Fitness Toilets"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"aqa" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aqb" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Secondary Construction Area";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/construction/secondary)
-"aqc" = (
-/obj/structure/sign/departments/medbay/alt,
-/turf/closed/wall/r_wall,
-/area/medical{
- name = "Medical Booth"
- })
-"aqd" = (
-/obj/structure/chair/sofa/right,
-/obj/machinery/camera{
- c_tag = "Chapel - Fore"
- },
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aqe" = (
-/obj/machinery/conveyor{
- id = "serv_off"
- },
-/turf/open/floor/plating,
-/area/router/service)
-"aqf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aqg" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Fitness Room";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aqh" = (
-/obj/structure/chair/sofa/left,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aqi" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/paper_bin{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/pen,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aqj" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aqk" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aql" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/bar)
-"aqm" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"aqn" = (
-/turf/closed/wall/r_wall,
-/area/medical{
- name = "Medical Booth"
- })
-"aqo" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"aqp" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"aqq" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aqr" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aqs" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqt" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/structure/sign/poster/contraband/hacking_guide{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aqu" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aqv" = (
-/obj/structure/sign/poster/official/no_erp{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"aqw" = (
-/turf/closed/wall/r_wall/rust,
-/area/maintenance/solars/port)
-"aqx" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"aqy" = (
-/obj/machinery/mass_driver{
- dir = 1;
- id = "serv_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router/service)
-"aqz" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aqA" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"aqB" = (
-/turf/closed/wall,
-/area/hydroponics)
-"aqC" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/hydroponics)
-"aqD" = (
-/obj/machinery/vending/sustenance,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aqE" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"aqF" = (
-/turf/open/floor/plasteel,
-/area/router/sec)
-"aqG" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"aqH" = (
-/obj/machinery/power/apc{
- name = "Security Router APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/router/sec)
-"aqI" = (
-/obj/structure/flora/ausbushes/genericbush,
-/turf/open/floor/grass,
-/area/hydroponics)
-"aqJ" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"aqK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aqL" = (
-/turf/closed/wall,
-/area/security/checkpoint)
-"aqM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aqN" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock{
- name = "Service Hallway";
- req_one_access_txt = "25;26;28;35"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"aqO" = (
-/obj/machinery/door/airlock/engineering{
- name = "Engineering EVA";
- req_access_txt = "11"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aqP" = (
-/obj/structure/chair/stool,
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"aqQ" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"aqR" = (
-/obj/item/grown/bananapeel,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"aqS" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aqT" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aqU" = (
-/turf/closed/wall/r_wall,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"aqV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Purple Dorms Maintenance";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/dorms/purple)
-"aqW" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/book/manual/chef_recipes,
-/obj/item/storage/box/donkpockets,
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aqX" = (
-/obj/structure/sign/warning/fire{
- desc = "A sign that states the labeled room's number.";
- icon_state = "roomnum";
- name = "Room Number 1";
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"aqY" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aqZ" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"ara" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"arb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/barbershop";
- dir = 4;
- name = "Barbershop APC";
- pixel_x = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"arc" = (
-/obj/structure/closet/secure_closet/freezer/cream_pie,
-/obj/item/toy/figure/clown,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"ard" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"are" = (
-/obj/machinery/chem_heater,
-/obj/effect/turf_decal/stripes/end{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"arf" = (
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"arg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"arh" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"ari" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"arj" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/dorms/purple)
-"ark" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"arl" = (
-/obj/machinery/vending/kink,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Locker Room";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"arm" = (
-/obj/structure/chair/sofa/right,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"arn" = (
-/obj/machinery/vending/tool,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aro" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/camera{
- c_tag = "Starboard Bow Maintenance - Starboard";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"arp" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "disposal"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"arq" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"arr" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = -32
- },
-/obj/item/stock_parts/cell/high/plus,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"ars" = (
-/obj/structure/chair/stool,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/landmark/start/bartender,
-/obj/item/clothing/under/costume/maid,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"art" = (
-/obj/structure/punching_bag,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aru" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/dorms/blue)
-"arv" = (
-/obj/structure/table,
-/obj/item/modular_computer/laptop/preset/civilian{
- pixel_x = 1;
- pixel_y = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"arw" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/public/glass{
- name = "Crew Quarters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"arx" = (
-/obj/machinery/button/door{
- id = "kitchenlock";
- name = "Kitchen Lockup";
- pixel_x = -24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"ary" = (
-/obj/machinery/food_cart,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"arz" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"arA" = (
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"arB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"arC" = (
-/obj/structure/sign/warning/fire{
- desc = "A sign that states the labeled room's number.";
- dir = 4;
- icon_state = "roomnum";
- name = "Room Number 3";
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"arD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 8;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Blue Dorms Maintenance";
- req_one_access_txt = "12;46"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/dorms/blue)
-"arE" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/starboard/central)
-"arF" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "hot loop to space"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"arG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"arH" = (
-/obj/machinery/disposal/bin{
- name = "Detective's Mailbox"
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/delivery/white,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"arI" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"arJ" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"arK" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/item/destTagger,
-/obj/machinery/button/massdriver{
- id = "serv_out";
- pixel_x = 8;
- pixel_y = -4
- },
-/obj/machinery/requests_console{
- department = "Service Router";
- name = "Service Router RC";
- pixel_y = 28
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"arL" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "serv_off"
- },
-/turf/open/floor/plating,
-/area/router/service)
-"arM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/router/service)
-"arN" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "gas to sauna"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"arO" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"arP" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"arQ" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"arR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/falsewall/reinforced{
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel,
-/area/router/sec)
-"arS" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/crew_quarters/dorms/purple)
-"arT" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"arU" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/sign/warning/fire{
- desc = "A sign that states the labeled room's number.";
- dir = 1;
- icon_state = "roomnum";
- name = "Room Number 2";
- pixel_y = -28
- },
-/obj/machinery/camera{
- c_tag = "Dormitories - Purple";
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"arV" = (
-/obj/machinery/vr_sleeper{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/structure/sign/poster/official/soft_cap_pop_art{
- pixel_x = -32
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"arW" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"arX" = (
-/obj/machinery/computer/med_data{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"arY" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"arZ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"asa" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"asb" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"asc" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"asd" = (
-/turf/closed/wall/rust,
-/area/maintenance/starboard/fore)
-"ase" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Purple Dorms"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/dorms/purple)
-"asf" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Blue Dorms"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/dorms/blue)
-"asg" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"ash" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"asi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asj" = (
-/obj/effect/turf_decal/tile/red,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ask" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Security - Prison Fore";
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/mob/living/simple_animal/mouse/brown/Tom,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"asl" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/camera{
- c_tag = "Port Bow Solar Maintenance";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"asm" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/hallway/secondary/service";
- dir = 8;
- name = "Service Hall APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"asn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"aso" = (
-/obj/structure/sign/warning/fire{
- desc = "A sign that states the labeled room's number.";
- dir = 8;
- icon_state = "roomnum";
- name = "Room Number 4";
- pixel_y = -28
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Dormitories - Blue";
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"asp" = (
-/obj/structure/chair/comfy/brown,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"asq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/crew_quarters/dorms/blue)
-"asr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ass" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/light/small,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"ast" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"asu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/rust,
-/area/maintenance/disposal)
-"asv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asw" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asy" = (
-/obj/effect/landmark/start/assistant,
-/obj/machinery/holopad,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/hallway/secondary/entry)
-"asz" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Security - Prison Bathroom";
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"asA" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/turf/open/floor/plating,
-/area/router/service)
-"asB" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/button/door{
- id = "servblock";
- name = "Router Access Control";
- pixel_x = 8;
- pixel_y = 24;
- req_one_access_txt = "12;25;26;28;35;46"
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"asF" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/security{
- name = "Labor Camp Arrivals"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"asG" = (
-/obj/structure/sign/warning/nosmoking/circle,
-/turf/closed/wall/r_wall,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"asH" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"asI" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"asJ" = (
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"asK" = (
-/obj/machinery/vr_sleeper{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"asL" = (
-/turf/closed/wall,
-/area/security/brig)
-"asM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"asN" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"asP" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"asQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"asR" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"asS" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"asT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/mob/living/simple_animal/mouse/gray{
- desc = "A strangely observant rodent.";
- name = "Remy"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"asU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Router";
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"asV" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"asW" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/security/main)
-"asX" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/item/tape,
-/obj/item/radio/off,
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"asY" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"asZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"ata" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/security/main)
-"atb" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"atc" = (
-/turf/closed/wall,
-/area/security/main)
-"atd" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/central";
- dir = 1;
- name = "Service Router APC";
- pixel_y = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"ate" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/dark,
-/area/router/service)
-"atf" = (
-/turf/closed/wall/r_wall/rust,
-/area/maintenance/starboard/central)
-"atg" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/router/service)
-"ath" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/dark,
-/area/router/service)
-"ati" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel,
-/area/router/service)
-"atj" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"atk" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"atl" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/router/service)
-"atm" = (
-/obj/structure/table,
-/obj/item/kitchen/rollingpin,
-/obj/item/reagent_containers/food/condiment/enzyme,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"atn" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel,
-/area/router/service)
-"ato" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"atp" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm2";
- name = "Room 2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"atq" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"atr" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm4";
- name = "Room 4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"ats" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Clown's Office";
- req_access_txt = "46"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/theatre/clown)
-"att" = (
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"atu" = (
-/obj/machinery/computer/cargo/request{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router/service)
-"atv" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/on{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"atw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"atx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"aty" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"atz" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"atA" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"atB" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/item/bikehorn/rubberducky,
-/obj/structure/sign/poster/official/no_erp{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"atC" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"atD" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router/service)
-"atE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/router/service)
-"atF" = (
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"atG" = (
-/turf/open/floor/plasteel/dark,
-/area/router/service)
-"atH" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/machinery/power/apc{
- areastring = "/area/security/processing";
- name = "Labor Shuttle Dock APC";
- pixel_y = -26
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/dark,
-/area/security/processing)
-"atI" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/warden)
-"atJ" = (
-/turf/closed/wall/rust,
-/area/crew_quarters/theatre/clown)
-"atK" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"atL" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"atM" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"atN" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"atO" = (
-/obj/structure/table,
-/obj/item/storage/bag/tray,
-/obj/item/clothing/gloves/color/white,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/item/paper/guides/cogstation/cooks,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"atP" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"atQ" = (
-/obj/structure/closet/lasertag/red,
-/obj/structure/sign/poster/official/space_cops{
- pixel_x = -32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"atR" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/machinery/vending/wardrobe/bar_wardrobe,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"atS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Bar Backroom";
- req_access_txt = "25"
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"atT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"atU" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"atV" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"atW" = (
-/obj/machinery/disposal/bin{
- name = "Parolee Exit"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"atX" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/stock_parts/cell/high/plus,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 28
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"atY" = (
-/obj/machinery/button/door{
- id = "Dorm2";
- name = "Dormitory Door Lock";
- normaldoorcontrol = 1;
- pixel_x = -7;
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"atZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"aua" = (
-/obj/structure/chair/wood/normal,
-/obj/machinery/button/door{
- id = "Dorm4";
- name = "Dormitory Door Lock";
- normaldoorcontrol = 1;
- pixel_x = 7;
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"aub" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"auc" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aud" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"aue" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/seeds/random,
-/turf/open/floor/plating,
-/area/router/service)
-"auf" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/router/service)
-"aug" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/storage/bag/plants,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"auh" = (
-/obj/structure/table/wood,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/item/storage/pill_bottle/dice,
-/obj/item/toy/cards/deck,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aui" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 1;
- name = "Freezer AC Pump"
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"auj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"auk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"aul" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/mob/living/simple_animal/mouse/brown{
- name = "Chewy"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"aum" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"aun" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/vending/hydronutrients,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"auo" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder{
- pixel_y = 6
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aup" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/bucket{
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"auq" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/router/service)
-"aur" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/router/service)
-"aus" = (
-/turf/open/floor/engine,
-/area/engine/gravity_generator)
-"aut" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"auu" = (
-/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel/dark,
-/area/router/service)
-"auv" = (
-/obj/structure/bed,
-/obj/item/bedsheet/purple,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"auw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aux" = (
-/obj/machinery/light/small,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"auy" = (
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"auz" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/chem_master,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"auA" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/beacon,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"auB" = (
-/obj/structure/dresser,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/dorms/purple)
-"auC" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"auD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"auE" = (
-/obj/structure/bed,
-/obj/item/clothing/glasses/sunglasses/blindfold,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"auF" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"auG" = (
-/obj/machinery/light/small,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"auH" = (
-/obj/structure/girder/displaced,
-/obj/item/reagent_containers/rag,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"auI" = (
-/obj/structure/closet/secure_closet/brig,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"auJ" = (
-/obj/structure/bed,
-/obj/item/bedsheet/blue,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/dorms/blue)
-"auK" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"auL" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"auM" = (
-/obj/machinery/door/firedoor,
-/obj/structure/sign/poster/official/bless_this_spess{
- pixel_x = -32
- },
-/obj/machinery/door/airlock/public/glass,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"auN" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"auO" = (
-/obj/structure/closet/crate/freezer,
-/turf/open/floor/plating,
-/area/router/service)
-"auP" = (
-/obj/structure/chair/sofa/right,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/effect/landmark/start/assistant/override,
-/turf/open/floor/plasteel,
-/area/security/main)
-"auQ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/public/glass,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"auR" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/power/apc{
- areastring = "/area/engine/secure_construction";
- dir = 1;
- name = "Engineering Construction Area APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"auS" = (
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"auT" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"auU" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs/left,
-/area/router/service)
-"auV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"auW" = (
-/obj/structure/chair/sofa/left,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/sign/poster/official/the_owl{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"auX" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/stairs/right,
-/area/router/service)
-"auY" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"auZ" = (
-/obj/structure/disposalpipe/junction/flip,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ava" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"avb" = (
-/turf/closed/wall,
-/area/hallway/secondary/civilian)
-"avc" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avd" = (
-/obj/structure/sign/warning{
- name = "\improper COLD TEMPERATURES";
- pixel_x = 32
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"ave" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"avf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Starboard Bow Maintenance";
- req_one_access_txt = "12;25;26;28;35;46"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/hallway/secondary/civilian)
-"avg" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Brig";
- req_access_txt = "2"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"avh" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"avi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance/abandoned{
- name = "Port Bow Maintainance";
- req_one_access_txt = "13"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"avj" = (
-/obj/machinery/photocopier,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"avk" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/item/plant_analyzer,
-/obj/structure/table/glass,
-/obj/machinery/plantgenes{
- pixel_y = 6
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"avl" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"avm" = (
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/civilian)
-"avn" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/stripes/white/full,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/sign/poster/official/spiderlings{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"avo" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"avp" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/glass{
- name = "East Primary Hallway";
- req_one_access_txt = "10;12;25;26;28;35;46"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/router/service)
-"avq" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/glass{
- name = "East Primary Hallway";
- req_one_access_txt = "10;12;25;26;28;35;46"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/router/service)
-"avr" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/space/basic,
-/area/solar/starboard/fore)
-"avs" = (
-/turf/closed/wall,
-/area/router/service)
-"avt" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"avu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"avv" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/spawner/north,
-/turf/open/floor/plating,
-/area/space/nearstation)
-"avw" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/structure/sign/poster/official/wtf_is_co2{
- pixel_x = 32
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"avx" = (
-/obj/structure/table,
-/obj/item/hand_labeler,
-/obj/item/crowbar/large,
-/obj/item/crowbar{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"avy" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/spawner/north,
-/turf/open/floor/plating,
-/area/space/nearstation)
-"avz" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"avA" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"avB" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"avC" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avD" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/fragile,
-/obj/item/clothing/head/helmet/space/fragile,
-/obj/item/storage/belt/utility,
-/obj/item/tank/internals/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/service)
-"avE" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "generator to hot loop"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avF" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"avG" = (
-/turf/closed/wall,
-/area/security/prison)
-"avH" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
-/obj/machinery/meter,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avJ" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel,
-/area/security/main)
-"avK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avL" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"avM" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"avN" = (
-/turf/closed/wall,
-/area/crew_quarters/barbershop)
-"avO" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin/color,
-/obj/item/clothing/gloves/color/white,
-/obj/machinery/camera{
- c_tag = "Laundry Room"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"avP" = (
-/obj/structure/reagent_dispensers/keg,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"avQ" = (
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avR" = (
-/obj/machinery/washing_machine,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"avS" = (
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"avT" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"avU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 6
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"avW" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"avX" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"avY" = (
-/obj/machinery/newscaster/security_unit{
- pixel_y = 32
- },
-/obj/machinery/turretid{
- name = "AI Chamber turret control";
- pixel_x = 5;
- pixel_y = -24
- },
-/obj/machinery/door/window/westleft{
- name = "AI Core Access";
- req_access_txt = "65"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"avZ" = (
-/obj/effect/landmark/start/cook,
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"awa" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible,
-/obj/machinery/meter,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"awb" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"awc" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awd" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"awe" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"awf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"awg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera{
- c_tag = "Civilian Wing Hallway - Fore"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"awh" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/sign/poster/official/fruit_bowl{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"awi" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"awj" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"awk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"awl" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/item/kirbyplants{
- icon_state = "applebush"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"awm" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall,
-/area/maintenance/solars/port)
-"awn" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/ai_slipper{
- uses = 10
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"awo" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"awp" = (
-/turf/closed/wall,
-/area/hydroponics/lobby)
-"awq" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plating,
-/area/space/nearstation)
-"awr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aws" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"awt" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/item/folder/red,
-/obj/machinery/door/window/westleft{
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"awu" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"awv" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
-/obj/structure/table,
-/obj/item/clothing/gloves/color/white,
-/obj/item/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"aww" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"awx" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hydroponics/lobby)
-"awy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Laundry Room Maintenance";
- req_one_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/crew_quarters/barbershop)
-"awz" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"awA" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"awB" = (
-/obj/machinery/microwave,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/crew_quarters/bar)
-"awC" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"awD" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"awE" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"awF" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"awG" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"awH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "Brig Lockdown"
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"awI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"awJ" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/flasher/portable,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"awK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"awL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"awM" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/item/crowbar/large,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"awN" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"awO" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/port/central";
- dir = 1;
- name = "Central Port Maintenance APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"awP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"awQ" = (
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/table,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "Brig Lockdown"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"awR" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"awS" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"awT" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 1;
- sortType = 7
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"awU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"awV" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/vending/assist,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"awW" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "cold loop to space"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"awX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"awY" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "solitarylock";
- name = "Solitary Lockdown";
- pixel_x = -24;
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"awZ" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axa" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"axb" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"axc" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/solars/port)
-"axd" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"axe" = (
-/obj/structure/closet/crate,
-/obj/item/storage/belt/utility,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"axf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"axg" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/machinery/camera{
- c_tag = "Arcade";
- dir = 4
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"axh" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"axi" = (
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/genpop,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axj" = (
-/obj/machinery/vr_sleeper{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"axk" = (
-/obj/item/storage/pill_bottle/penis_enlargement,
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"axl" = (
-/obj/machinery/shower{
- dir = 8;
- pixel_y = -4
- },
-/obj/item/soap/homemade,
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"axm" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/closed/wall,
-/area/security/prison)
-"axn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"axo" = (
-/obj/structure/table,
-/obj/item/tape,
-/obj/item/wrench,
-/obj/item/radio/off,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axp" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"axq" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"axr" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"axs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"axt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"axu" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/brig)
-"axv" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/clothing/accessory/armband/deputy,
-/obj/item/encryptionkey/headset_sec,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/item/clothing/head/cowboyhat/sec,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axw" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"axx" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/camera{
- c_tag = "Fore Maintenance - Aft";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"axy" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/botanist,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"axz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axA" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot,
-/obj/item/clothing/accessory/armband/science,
-/obj/item/encryptionkey/headset_sci,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axB" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot,
-/obj/item/clothing/accessory/armband/medblue,
-/obj/item/encryptionkey/headset_med,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axC" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axD" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Hydroponics Storage";
- req_access_txt = "35"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"axE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/contraband/kudzu{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"axF" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"axG" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"axH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"axI" = (
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"axJ" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"axK" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axL" = (
-/obj/structure/sign/warning{
- name = "\improper CONSTRUCTION AREA";
- pixel_y = 32
- },
-/obj/item/assembly/prox_sensor,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"axM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"axN" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/computer/security{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axO" = (
-/obj/structure/weightmachine/stacklifter,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axP" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"axQ" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"axR" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plating,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"axS" = (
-/obj/structure/closet/crate,
-/obj/item/storage/box/lights/mixed,
-/obj/item/clothing/mask/gas,
-/obj/item/cane,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"axT" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/storage/crayons{
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"axV" = (
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"axW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"axY" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"axZ" = (
-/obj/machinery/requests_console{
- department = "AI";
- departmentType = 5;
- pixel_y = 28
- },
-/obj/machinery/door/window/eastright{
- name = "AI Core Access";
- req_access_txt = "65"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aya" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "AI Core Exterior";
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ayb" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"ayc" = (
-/obj/structure/kitchenspike,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"ayd" = (
-/turf/closed/wall,
-/area/hallway/primary/port/fore)
-"aye" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space/basic,
-/area/space/nearstation)
-"ayf" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 2
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"ayg" = (
-/obj/machinery/vending/wardrobe/hydro_wardrobe,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"ayh" = (
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"ayi" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/paper_bin{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/pen,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayj" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/security/brig)
-"ayk" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"ayl" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aym" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"ayn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/open/floor/plating,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"ayo" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"ayp" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"ayq" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"ayr" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"ays" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/soda_cans/space_up,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"ayt" = (
-/obj/structure/closet/crate,
-/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"ayu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ayv" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"ayw" = (
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Service Hallway - Fore";
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"ayx" = (
-/obj/effect/turf_decal/tile/green,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"ayy" = (
-/turf/open/floor/carpet,
-/area/chapel/main)
-"ayz" = (
-/obj/structure/chair/pew/right{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"ayA" = (
-/obj/structure/window/reinforced,
-/obj/structure/destructible/cult/tome,
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"ayB" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"ayC" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ayD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"ayE" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hydroponics/lobby)
-"ayF" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"ayG" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"ayH" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/mob/living/simple_animal/cockroach,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"ayI" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ayJ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/solars/port)
-"ayK" = (
-/obj/structure/flora/tree/jungle/small,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"ayL" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"ayM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ayN" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"ayO" = (
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/table,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "Brig Lockdown"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ayP" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"ayQ" = (
-/obj/machinery/vr_sleeper{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"ayR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Prison Wing";
- req_access_txt = "2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ayS" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ayT" = (
-/obj/machinery/vending/security,
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ayU" = (
-/obj/vehicle/ridden/secway,
-/obj/effect/turf_decal/bot,
-/obj/item/key/security,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ayV" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"ayW" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"ayX" = (
-/obj/structure/closet/wardrobe/mixed,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"ayY" = (
-/obj/machinery/vending/medical,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"ayZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aza" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/clothing/gloves/botanic_leather,
-/obj/item/hand_labeler,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"azb" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"azc" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"azd" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/clothing/mask/gas,
-/obj/machinery/camera{
- c_tag = "Central Port Maintenace - Port"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aze" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "AI Chamber APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"azf" = (
-/obj/machinery/newscaster/security_unit{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"azg" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"azh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"azi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Interrogation Maintenance";
- req_access_txt = "63;12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/security/brig)
-"azj" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"azk" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"azl" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Security - Brig Aft";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"azm" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"azn" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"azo" = (
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"azp" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"azq" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plating,
-/area/space/nearstation)
-"azr" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"azs" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"azt" = (
-/obj/structure/chair/pew/right{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"azu" = (
-/obj/structure/chair/pew{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"azv" = (
-/obj/machinery/door/window/westleft{
- name = "Holy Driver";
- req_one_access_txt = "22"
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "Holydriver"
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"azw" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "Holydriver"
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"azx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"azy" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"azz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"azA" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"azB" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"azC" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/barbershop)
-"azD" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"azE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"azF" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/tools)
-"azG" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"azH" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/sign/departments/botany{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"azI" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"azJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"azK" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/door/window/westleft{
- name = "Boxing Ring"
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azL" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"azM" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 2
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"azN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"azO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"azP" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"azQ" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"azR" = (
-/obj/structure/closet/secure_closet/bar,
-/obj/structure/disposalpipe/segment,
-/obj/item/clothing/under/costume/maid,
-/obj/item/stack/spacecash/c10,
-/obj/item/clothing/under/suit/waiter,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"azS" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/cable_coil/red{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil/red,
-/obj/item/wrench,
-/obj/item/screwdriver{
- pixel_y = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"azT" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"azU" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"azV" = (
-/obj/structure/kitchenspike,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"azW" = (
-/obj/effect/landmark/start/botanist,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"azX" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"azY" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- areastring = "/area/hydroponics/lobby";
- dir = 4;
- name = "Hydroponics Lobby APC";
- pixel_x = 24
- },
-/obj/item/clothing/suit/beekeeper_suit,
-/obj/item/melee/flyswatter,
-/obj/item/clothing/head/beekeeper_head,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"azZ" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "chapelgun";
- name = "Holy Driver"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"aAa" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen)
-"aAb" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aAc" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aAd" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"aAe" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aAf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/mineral_door/wood,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/barbershop)
-"aAg" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
-/obj/machinery/gibber,
-/obj/machinery/camera{
- c_tag = "Kitchen Coldroom";
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"aAh" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/easel,
-/obj/item/canvas/nineteenXnineteen,
-/obj/item/storage/crayons,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aAi" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aAj" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aAk" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aAl" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aAm" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/door/airlock/freezer{
- name = "Kitchen Coldroom";
- req_access_txt = "28"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"aAn" = (
-/obj/machinery/vending/wardrobe/sec_wardrobe,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aAo" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/sign/poster/official/twelve_gauge{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"aAp" = (
-/obj/machinery/computer/security/telescreen/entertainment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/bar)
-"aAq" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"aAr" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aAs" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aAt" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency,
-/obj/machinery/camera{
- c_tag = "Hydroponics Storage";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aAu" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/circuitboard/machine/hydroponics,
-/obj/item/circuitboard/machine/hydroponics,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aAv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/vending/security,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aAw" = (
-/obj/machinery/door/poddoor{
- id = "chapelgun";
- name = "Chapel Launcher Door"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/chapel/main)
-"aAx" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aAy" = (
-/obj/machinery/atmospherics/components/binary/circulator{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aAz" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aAA" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aAB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aAC" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aAD" = (
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aAE" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aAF" = (
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aAG" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aAH" = (
-/obj/structure/chair/pew{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aAI" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"aAJ" = (
-/obj/structure/transit_tube/station/reverse/flipped{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"aAK" = (
-/obj/structure/transit_tube/horizontal,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"aAL" = (
-/obj/machinery/shower{
- dir = 8
- },
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aAM" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aAN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aAO" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aAP" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/security/brig)
-"aAQ" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"aAR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Telecomms Access Maintenance";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aAS" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot,
-/obj/item/clothing/accessory/armband/engine,
-/obj/item/encryptionkey/headset_eng,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aAT" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aAU" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aAV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aAW" = (
-/obj/machinery/chem_master/condimaster{
- name = "BrewMaster 3000"
- },
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aAX" = (
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aAY" = (
-/obj/structure/chair,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aAZ" = (
-/obj/structure/chair,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aBa" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aBb" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aBc" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/suit/beekeeper_suit,
-/obj/item/melee/flyswatter,
-/obj/item/clothing/head/beekeeper_head,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aBd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aBe" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aBf" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aBg" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/junction,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aBh" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aBi" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aBj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"aBk" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/crew_quarters/barbershop)
-"aBl" = (
-/obj/structure/chair/comfy/brown,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/barbershop)
-"aBm" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Dormitories"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aBn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aBo" = (
-/obj/structure/table,
-/obj/item/storage/pill_bottle/epinephrine,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/barbershop)
-"aBp" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/computer/pod/old{
- density = 0;
- icon = 'icons/obj/airlock_machines.dmi';
- icon_state = "airlock_control_standby";
- id = "chapelgun";
- name = "Mass Driver Controller";
- pixel_x = 24
- },
-/obj/machinery/conveyor_switch/oneway{
- id = "Holydriver"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aBq" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aBr" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/barbershop)
-"aBs" = (
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aBt" = (
-/obj/structure/chair/comfy/brown,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/barbershop)
-"aBu" = (
-/obj/item/flashlight/lantern,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aBv" = (
-/obj/structure/chair/pew/left{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aBw" = (
-/obj/structure/chair/comfy/brown,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/barbershop)
-"aBx" = (
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/structure/table,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "Brig Lockdown"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aBy" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/kirbyplants{
- icon_state = "plant-16"
- },
-/obj/machinery/camera{
- c_tag = "Port Bow Hall - Central";
- dir = 4;
- network = list("ss13","medbay")
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aBz" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBA" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/healthanalyzer,
-/obj/item/storage/hypospraykit/fire{
- pixel_x = -4
- },
-/obj/item/storage/hypospraykit/brute{
- pixel_x = 4
- },
-/obj/structure/sign/poster/official/nt_storm{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aBB" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aBC" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aBD" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aBE" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aBF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aBG" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aBH" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aBJ" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aBK" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aBL" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBM" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/abandoned_gambling_den";
- name = "Arcade APC";
- pixel_y = -26
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBN" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aBO" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock{
- name = "Hydroponics Storage";
- req_access_txt = "35"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aBP" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aBQ" = (
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aBR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aBS" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aBT" = (
-/obj/item/razor,
-/obj/item/toy/figure/chef{
- pixel_x = -6
- },
-/obj/item/toy/figure/bartender{
- pixel_x = 4
- },
-/obj/structure/table/wood/fancy,
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"aBU" = (
-/obj/structure/window/reinforced/tinted,
-/obj/structure/rack,
-/obj/item/soap/nanotrasen,
-/obj/item/reagent_containers/food/drinks/bottle/vodka,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aBV" = (
-/obj/item/flashlight/lantern,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aBW" = (
-/obj/structure/window/reinforced,
-/obj/item/clothing/head/hardhat/cakehat,
-/obj/structure/table/wood/fancy,
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"aBX" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aBY" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/camera{
- c_tag = "Security Maintenance";
- dir = 1;
- network = list("ss13","medbay")
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aBZ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aCa" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/main)
-"aCb" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCc" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/clothing/accessory/armband/cargo,
-/obj/item/encryptionkey/headset_cargo,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCd" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/highcap/fifteen_k{
- areastring = /area/maintenance/solars/port;
- dir = 1;
- name = "Port Solars APC";
- pixel_y = 26
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aCe" = (
-/obj/effect/spawner/structure/window,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aCf" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"aCg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/landmark/start/depsec/supply,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCh" = (
-/obj/structure/mineral_door/wood{
- name = "Barbershop"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aCi" = (
-/obj/structure/closet/l3closet/security,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCj" = (
-/obj/machinery/door/window/southleft{
- name = "Showers"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aCk" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet/fitness)
-"aCl" = (
-/obj/structure/closet/bombcloset/security,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCm" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aCn" = (
-/obj/machinery/vending/boozeomat,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aCo" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"aCp" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/fitness)
-"aCq" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/closed/wall,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"aCr" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aCs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aCt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCu" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"aCv" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"aCw" = (
-/obj/structure/window/reinforced/tinted,
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aCx" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aCy" = (
-/obj/structure/table/wood,
-/obj/item/storage/book/bible,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aCz" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aCA" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aCB" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"aCC" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/security/prison)
-"aCD" = (
-/obj/item/trash/plate,
-/obj/item/kitchen/fork,
-/obj/structure/table/wood/fancy,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"aCE" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "briglockdown";
- name = "Brig Lockdown";
- pixel_x = 24;
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCF" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"aCG" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCH" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Brig";
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "Brig Lockdown"
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aCI" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/structure/sign/departments/botany{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aCJ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/chapel/main)
-"aCK" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/security/prison)
-"aCL" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/paper/guides/cogstation/letter_sec,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aCM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/fun_police{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aCN" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aCO" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aCP" = (
-/obj/structure/chair/sofa/left,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/landmark/start/botanist,
-/obj/machinery/camera{
- c_tag = "Hydroponics Lobby"
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aCQ" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/harebell,
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aCR" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/modular_computer/laptop/preset/civilian{
- pixel_x = 1;
- pixel_y = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aCS" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aCT" = (
-/obj/machinery/disposal/bin{
- name = "Hydroponics Mailbox"
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/delivery/white,
-/obj/machinery/requests_console{
- department = "Hydroponics";
- name = "Hydroponics RC";
- pixel_y = 28
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aCU" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plating,
-/area/space/nearstation)
-"aCV" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aCW" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/junction,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aCX" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aCY" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aCZ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/electricshock,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aDa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/barbershop)
-"aDb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint)
-"aDc" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Barbershop";
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aDd" = (
-/obj/structure/chair/office/dark,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aDe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aDf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aDg" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Central Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aDh" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Port Bow Primary Hallway"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aDi" = (
-/obj/structure/closet/secure_closet/evidence,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aDj" = (
-/obj/structure/closet/wardrobe/green,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aDk" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/door/window/eastright{
- name = "Bathroom Stall"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDl" = (
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDm" = (
-/obj/machinery/computer/security{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"aDn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/transit_tube/horizontal,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aDo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aDp" = (
-/obj/effect/spawner/structure/window,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/barbershop)
-"aDq" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aDr" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Civilian Wing Hallway"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aDs" = (
-/obj/effect/turf_decal/tile/red,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aDt" = (
-/obj/structure/closet{
- name = "Evidence Closet 1"
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aDu" = (
-/obj/structure/closet{
- name = "Evidence Closet 2"
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aDv" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aDw" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aDx" = (
-/obj/structure/closet/crate,
-/obj/item/gun/ballistic/shotgun/toy/unrestricted,
-/obj/item/gun/ballistic/shotgun/toy/unrestricted,
-/obj/item/toy/gun,
-/obj/item/toy/sword,
-/obj/item/toy/sword,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"aDy" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aDz" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/sign/departments/restroom{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aDA" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aDB" = (
-/obj/structure/closet{
- name = "Evidence Closet 3"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aDC" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aDD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"aDE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aDF" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"aDG" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aDH" = (
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aDI" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aDJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aDK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aDL" = (
-/obj/structure/closet{
- name = "Evidence Closet 4"
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aDM" = (
-/turf/closed/wall,
-/area/maintenance/central)
-"aDN" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aDO" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aDP" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/white/full,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aDQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aDR" = (
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aDS" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/barbershop)
-"aDT" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aDU" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aDV" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aDW" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aDX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aDY" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aDZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aEa" = (
-/obj/structure/transit_tube/horizontal,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aEb" = (
-/obj/structure/transit_tube/crossing/horizontal,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aEc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aEd" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aEe" = (
-/obj/structure/transit_tube/horizontal,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aEf" = (
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Satellite Exterior - Port Bow";
- dir = 1;
- network = list("tcomms")
- },
-/turf/open/space/basic,
-/area/space)
-"aEg" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"aEh" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Fore Maintenance";
- req_one_access_txt = "12;46"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/port/fore)
-"aEi" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aEj" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aEk" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aEl" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aEm" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aEn" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aEo" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/structure/sign/poster/official/fashion{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aEp" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aEq" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aEr" = (
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/lighter,
-/obj/item/clothing/glasses/sunglasses{
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aEs" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/components/binary/valve/digital/on{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aEt" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aEu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aEv" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aEw" = (
-/obj/structure/chair,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aEx" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aEy" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aEz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aEA" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aEB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aEC" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aED" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aEE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aEF" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"aEG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aEH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aEI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aEJ" = (
-/obj/item/kirbyplants{
- icon_state = "plant-08"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aEK" = (
-/obj/structure/table,
-/obj/item/razor,
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aEL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aEM" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/poppy,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aEN" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/razor,
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aEO" = (
-/obj/structure/table,
-/obj/item/clothing/accessory/pocketprotector/cosmetology,
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aEP" = (
-/obj/item/kirbyplants,
-/turf/open/floor/wood,
-/area/crew_quarters/barbershop)
-"aEQ" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/central)
-"aER" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/bot,
-/obj/structure/sign/warning/nosmoking{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aES" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "Brig Lockdown"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aET" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/poddoor/preopen{
- id = "briglockdown";
- name = "Brig Lockdown"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aEU" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aEV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aEW" = (
-/obj/structure/table,
-/obj/machinery/computer/libraryconsole/bookmanagement,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aEX" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/poster/official/safety_internals{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aEY" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/turf_decal/bot,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aEZ" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/central";
- dir = 1;
- name = "Emergency Storage APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFa" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 10
- },
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFb" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFc" = (
-/obj/structure/table,
-/obj/item/clothing/suit/toggle/owlwings,
-/obj/item/clothing/under/costume/owl,
-/obj/item/clothing/mask/gas/owl_mask,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aFd" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFe" = (
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aFf" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=serv";
- location = "sec1"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aFg" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aFh" = (
-/obj/structure/chair/pew/right{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aFi" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=market";
- location = "sec2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aFj" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hos)
-"aFk" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/checkpoint)
-"aFl" = (
-/obj/structure/chair/sofa/right,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/reagent_containers/glass/bottle/diethylamine,
-/obj/structure/sign/poster/official/hydro_ad{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFm" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hos)
-"aFn" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aFo" = (
-/obj/machinery/door/window/southleft{
- name = "Weightroom"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aFp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Bar"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aFq" = (
-/obj/structure/table/wood,
-/obj/item/candle{
- pixel_x = 4
- },
-/obj/item/candle{
- pixel_y = 8
- },
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aFr" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aFs" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aFt" = (
-/obj/structure/table/glass,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aFu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aFv" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"aFw" = (
-/obj/structure/table,
-/obj/item/multitool,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/camera{
- c_tag = "Central Maintenance - Power Monitoring";
- network = list("ss13","rd")
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aFx" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/item/folder/blue,
-/obj/machinery/door/window/westleft{
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFy" = (
-/obj/machinery/computer/monitor,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aFz" = (
-/obj/structure/table,
-/obj/item/multitool{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/item/stack/cable_coil/random,
-/obj/item/crowbar,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aFA" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/landmark/start/botanist,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFB" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFC" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aFD" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=AftH";
- location = "Hydroponics"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFE" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/techstorage/tcomms,
-/turf/open/floor/circuit,
-/area/bridge)
-"aFF" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aFG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/security/prison)
-"aFH" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFI" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- freq = 1400;
- location = "Primary Tool Storage"
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aFJ" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/watertank,
-/obj/item/grenade/chem_grenade/antiweed,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFK" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/item/storage/box/beakers{
- pixel_y = 4
- },
-/obj/item/reagent_containers/dropper,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/item/pen/blue{
- pixel_x = -4;
- pixel_y = -2
- },
-/obj/item/pen/red{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFL" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/machinery/chem_master,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aFM" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/crew_quarters/barbershop)
-"aFN" = (
-/obj/structure/flora/junglebush/b,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aFO" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aFQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFT" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aFU" = (
-/obj/machinery/atmospherics/components/binary/circulator/cold{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aFV" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/table/wood/fancy,
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"aFW" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aFX" = (
-/obj/machinery/computer/security/hos{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aFY" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aFZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/security/prison)
-"aGa" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/transit_tube/horizontal,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"aGb" = (
-/obj/machinery/suit_storage_unit/hos,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aGc" = (
-/obj/item/coin/iron,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/maintenance/port/fore)
-"aGd" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aGe" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aGf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aGg" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aGh" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/landmark/start/security_officer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aGi" = (
-/obj/machinery/porta_turret/ai{
- dir = 1;
- req_access = list(16)
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aGj" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/bot,
-/obj/item/storage/toolbox/emergency{
- pixel_y = 4
- },
-/obj/item/analyzer{
- pixel_y = -4
- },
-/obj/item/flashlight{
- pixel_y = 4
- },
-/obj/item/flashlight{
- pixel_y = 4
- },
-/obj/item/extinguisher,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aGk" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aGl" = (
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/item/clipboard,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aGm" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/machinery/door/window/southright{
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aGn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/bridge)
-"aGo" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/screwdriver,
-/obj/item/wrench,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/multitool,
-/obj/item/multitool,
-/obj/item/wrench,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aGp" = (
-/mob/living/simple_animal/mouse/brown,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aGq" = (
-/turf/closed/wall/r_wall,
-/area/bridge)
-"aGr" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aGs" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/bridge)
-"aGt" = (
-/obj/machinery/computer/card/minor/hos{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aGu" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aGv" = (
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aGw" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock{
- name = "Hydroponics Lobby";
- req_access_txt = "35"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"aGx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aGy" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aGz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/structure/cable,
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/bridge";
- name = "Bridge APC";
- pixel_y = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aGA" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aGB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aGC" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aGD" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/toilet";
- dir = 8;
- name = "Dormitory Toilets APC";
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aGE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aGF" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aGG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aGH" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medical Booth";
- req_access_txt = "5"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/medical{
- name = "Medical Booth"
- })
-"aGI" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = 5
- },
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = 1
- },
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4
- },
-/obj/item/reagent_containers/pill/patch/silver_sulf{
- pixel_x = -4;
- pixel_y = -1
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = 4
- },
-/obj/item/reagent_containers/pill/patch/styptic{
- pixel_x = 4;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aGJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aGK" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/central";
- dir = 1;
- name = "Head of Security's APC";
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Security - Head of Security's Office";
- pixel_x = 22
- },
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aGL" = (
-/obj/structure/table/wood,
-/obj/item/storage/firstaid/regular,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aGM" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/structure/sign/warning/securearea{
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aGN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aGO" = (
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aGP" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aGQ" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aGR" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/store/cake/chocolate,
-/obj/machinery/door/poddoor/preopen{
- id = "kitchenlock";
- name = "Kitchen Lockup"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/kitchen)
-"aGS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aGT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aGU" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aGV" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/table,
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aGW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/bridge)
-"aGX" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/drinks/bottle/vodka,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aGY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -30
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"aGZ" = (
-/turf/open/floor/plasteel/stairs/medium,
-/area/hallway/secondary/entry)
-"aHa" = (
-/obj/structure/disposalpipe/junction/yjunction,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aHb" = (
-/obj/structure/chair,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aHc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"aHd" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aHe" = (
-/obj/structure/sign/poster/official/bless_this_spess{
- pixel_y = -32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aHf" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aHg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aHh" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aHi" = (
-/obj/structure/chair/stool,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aHj" = (
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- name = "Starboard Bow Solar Exterior Airlock";
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"aHk" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aHl" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aHm" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aHn" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aHo" = (
-/obj/structure/rack,
-/obj/item/circuitboard/machine/telecomms/relay,
-/obj/item/circuitboard/machine/telecomms/server,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"aHp" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aHq" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/porta_turret/ai{
- dir = 1;
- req_access = list(16)
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"aHr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/clown{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aHs" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/port/fore)
-"aHt" = (
-/turf/closed/wall/r_wall,
-/area/hallway/primary/port/fore)
-"aHu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aHv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aHw" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aHx" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"aHy" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/security/detectives_office)
-"aHz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"aHA" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"aHB" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/bot,
-/obj/item/storage/toolbox/emergency{
- pixel_y = 4
- },
-/obj/item/wrench,
-/obj/item/wrench{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/light/tube,
-/obj/item/light/tube{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/extinguisher,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aHC" = (
-/obj/machinery/vending/cola/random,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aHD" = (
-/obj/machinery/modular_computer/console/preset/engineering,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aHE" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aHF" = (
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aHG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aHH" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aHI" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aHJ" = (
-/obj/machinery/light,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aHK" = (
-/obj/structure/musician/piano,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aHL" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/stack/medical/gauze,
-/obj/item/reagent_containers/blood,
-/obj/item/stack/medical/suture,
-/obj/item/stack/medical/mesh,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aHM" = (
-/turf/open/floor/plasteel,
-/area/bridge)
-"aHN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Security - Interrogation Room";
- pixel_x = 22
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aHO" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aHP" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hos)
-"aHQ" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aHR" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/central";
- dir = 1;
- name = "Security Office APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aHS" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aHT" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aHU" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/mineral_door/woodrustic{
- name = "Nature Preserve"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aHV" = (
-/obj/structure/flora/junglebush/large,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aHW" = (
-/obj/structure/chair/comfy/brown,
-/obj/effect/landmark/start/head_of_security,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aHX" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aHY" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/cryopod)
-"aHZ" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/machinery/door/window/eastleft{
- name = "Security Office Desk";
- req_one_access_txt = "63"
- },
-/obj/item/folder/red,
-/obj/item/stamp/denied{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/stamp,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aIa" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aIb" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/junction/flip,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aIc" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aId" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIe" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aIf" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aIg" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aIh" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aIi" = (
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIj" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIk" = (
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIl" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aIm" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/requests_console{
- department = "Kitchen";
- departmentType = 2;
- name = "Kitchen RC";
- pixel_x = 30
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aIn" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/security/prison)
-"aIo" = (
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aIp" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aIq" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aIr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/item/folder/red,
-/obj/item/stamp/hos,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aIs" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aIt" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aIu" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIv" = (
-/obj/machinery/cryopod{
- dir = 8
- },
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"aIw" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aIx" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIy" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aIz" = (
-/obj/machinery/cryopod{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aIA" = (
-/obj/machinery/computer/med_data{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aIB" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aIC" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/main)
-"aID" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/security/main)
-"aIE" = (
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aIF" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/recharger,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aIG" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aIH" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aII" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aIJ" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIK" = (
-/obj/structure/table/wood,
-/obj/item/camera,
-/obj/item/folder,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aIL" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aIM" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"aIN" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aIO" = (
-/obj/structure/sign/directions/medical{
- dir = 8;
- pixel_y = -24
- },
-/obj/structure/sign/directions/evac{
- dir = 1;
- pixel_y = -32
- },
-/obj/structure/sign/directions/supply{
- dir = 8;
- pixel_y = -40
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIP" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aIQ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aIR" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aIS" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start/ai,
-/obj/item/radio/intercom{
- freerange = 1;
- frequency = 1447;
- name = "Private Channel";
- pixel_x = 27;
- pixel_y = -7
- },
-/obj/item/radio/intercom{
- freerange = 1;
- name = "Common Channel";
- pixel_x = 27;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "AIShutter";
- layer = 3.6;
- name = "AI Core Shutter Control";
- pixel_x = 24;
- pixel_y = -24
- },
-/obj/item/radio/intercom{
- freerange = 1;
- listening = 0;
- name = "Custom Channel";
- pixel_x = -24;
- pixel_y = -8
- },
-/obj/machinery/button/door{
- id = "AIChamberShutter";
- layer = 3.6;
- name = "AI Chamber Shutter Control";
- pixel_x = -24;
- pixel_y = -24
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aIT" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aIU" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aIV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Interrogation Monitoring";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aIW" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aIX" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aIY" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aIZ" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aJa" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aJb" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aJc" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aJd" = (
-/turf/closed/wall,
-/area/chapel/office)
-"aJe" = (
-/obj/machinery/computer/crew{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aJf" = (
-/obj/machinery/camera{
- c_tag = "Chapel - Aft";
- dir = 1
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aJg" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aJh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aJi" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aJj" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/aft";
- dir = 8;
- name = "Chapel APC";
- pixel_x = -26
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aJk" = (
-/obj/structure/table/wood,
-/obj/item/candle,
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aJl" = (
-/obj/structure/bodycontainer/crematorium{
- id = "foo"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aJm" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aJn" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aJo" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aJp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/camera/motion{
- c_tag = "AI";
- network = list("minisat")
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aJq" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/item/storage/box/beakers{
- pixel_y = 4
- },
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aJr" = (
-/obj/structure/sign/directions/command{
- dir = 8;
- pixel_y = -32
- },
-/obj/structure/sign/directions/security{
- dir = 8;
- pixel_y = -24
- },
-/obj/structure/sign/directions/science{
- dir = 8;
- pixel_y = -40
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aJs" = (
-/obj/structure/noticeboard{
- name = "Hydroponics Requests Board";
- pixel_y = 28
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aJt" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/toy/figure/syndie,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aJu" = (
-/obj/structure/chair/comfy/brown,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aJv" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aJw" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aJx" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aJy" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs/right,
-/area/security/brig)
-"aJz" = (
-/obj/structure/chair/comfy/brown,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aJA" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Port Bow Hall - Dorms Access";
- network = list("ss13","rd")
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aJB" = (
-/obj/machinery/computer/security/mining{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aJC" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aJD" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/item/storage/belt/medical,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/clothing/suit/space/eva/paramedic,
-/obj/item/clothing/head/helmet/space/eva/paramedic,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"aJE" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"aJF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aJG" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aJH" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aJI" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/cable,
-/obj/item/shovel/spade,
-/obj/item/wrench,
-/obj/item/cultivator,
-/obj/item/crowbar,
-/obj/item/wirecutters,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/hatchet,
-/obj/machinery/power/apc/highcap/five_k{
- areastring = "/area/hydroponics";
- name = "Hydroponics APC";
- pixel_y = -28
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aJJ" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aJK" = (
-/obj/structure/filingcabinet,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aJL" = (
-/turf/open/floor/circuit,
-/area/bridge)
-"aJM" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/circuit,
-/area/bridge)
-"aJN" = (
-/obj/machinery/camera{
- c_tag = "Security - Prison Aft";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aJO" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aJP" = (
-/obj/structure/chair/comfy/teal,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/sign/departments/botany{
- pixel_y = 32
- },
-/obj/machinery/camera{
- c_tag = "Civilian Wing Hallway - Starboard";
- dir = 8;
- pixel_y = -22
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aJQ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aJR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"aJS" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aJT" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aJU" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aJV" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"aJW" = (
-/obj/machinery/cryopod{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"aJX" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/modular_computer/console/preset/civilian{
- dir = 8
- },
-/turf/open/floor/circuit,
-/area/bridge)
-"aJY" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/storage/box/lights/mixed,
-/obj/item/stack/sheet/metal/fifty{
- pixel_x = -3;
- pixel_y = -7
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aJZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aKa" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aKb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/secondary/civilian)
-"aKc" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aKd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Interrogation";
- req_access_txt = "63"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aKe" = (
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"aKf" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/storage/emergency/generic)
-"aKg" = (
-/turf/open/floor/plasteel/stairs/right,
-/area/hallway/secondary/entry)
-"aKh" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aKi" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aKj" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aKk" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/landmark/start/detective,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aKl" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aKm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Emergency Storage"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aKn" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aKo" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aKp" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aKq" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Chapel"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/chapel/main)
-"aKr" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/public/glass{
- name = "Emergency Storage"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/storage/emergency/generic)
-"aKs" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/obj/item/reagent_containers/rag,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aKt" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aKu" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/storage/emergency/generic)
-"aKv" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aKw" = (
-/obj/structure/table,
-/obj/item/storage/pill_bottle/dice,
-/obj/item/toy/cards/deck,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aKx" = (
-/obj/machinery/computer/security{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aKy" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/rnd/production/techfab/department/security,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aKz" = (
-/turf/closed/wall,
-/area/storage/emergency/generic)
-"aKA" = (
-/obj/structure/table/wood,
-/obj/machinery/button/door{
- id = "bridge blast";
- name = "Bridge Blast Door Control";
- pixel_x = -6;
- pixel_y = -3;
- req_access_txt = "19"
- },
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aKB" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aKC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Prison Wing";
- req_access_txt = "2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aKD" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aKE" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/donut_box,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aKF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Telecommunications Control Room";
- req_access_txt = "19;61"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aKG" = (
-/obj/structure/table/wood,
-/obj/item/storage/toolbox/emergency,
-/obj/item/crowbar/red,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aKH" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/white/full,
-/obj/machinery/camera{
- c_tag = "Bridge - Fore";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aKI" = (
-/obj/structure/closet/cabinet,
-/obj/item/screwdriver,
-/obj/item/storage/crayons,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aKJ" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aKK" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/vending/snack/blue,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aKL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aKM" = (
-/obj/machinery/camera{
- c_tag = "Chapel - Starboard";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aKN" = (
-/obj/structure/chair/pew/left{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aKO" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/stairs/left,
-/area/security/brig)
-"aKP" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aKQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/office)
-"aKR" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aKS" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aKT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"aKU" = (
-/obj/structure/bodycontainer/morgue,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aKV" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aKW" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aKX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Chapel Morgue";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aKY" = (
-/obj/structure/chair/sofa/left,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aKZ" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"aLa" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/machinery/door/poddoor/preopen{
- id = "hos"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
-"aLb" = (
-/obj/item/toy/prize/honk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aLc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Central Maintenance";
- req_one_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/port/fore)
-"aLd" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLe" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aLg" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aLh" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Central Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aLj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLk" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/brig)
-"aLl" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/vending/autodrobe,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aLm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aLn" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/junction/flip,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aLo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLp" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aLq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLs" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aLt" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Visitation Maintainance";
- req_one_access_txt = "63"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/security/main)
-"aLv" = (
-/obj/machinery/computer/cryopod{
- dir = 8;
- pixel_x = 26
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aLw" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/item/kirbyplants{
- icon_state = "plant-06"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aLx" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aLy" = (
-/obj/machinery/modular_computer/console/preset/command{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aLz" = (
-/obj/machinery/newscaster{
- pixel_y = -28
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLA" = (
-/obj/item/candle{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/candle{
- pixel_x = -8;
- pixel_y = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aLB" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aLC" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLD" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aLE" = (
-/obj/machinery/computer/communications{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aLF" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aLG" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aLH" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"aLI" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/PDAs,
-/obj/item/storage/box/ids{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aLJ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aLK" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aLL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/brig)
-"aLM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aLN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/morgue{
- name = "Confession Booth"
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/main)
-"aLO" = (
-/obj/item/toy/talking/owl,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aLP" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = -26
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aLQ" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aLR" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/storage/box/bodybags{
- pixel_y = 4
- },
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aLS" = (
-/obj/structure/disposaloutlet{
- dir = 8;
- name = "Corpse Outlet"
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/delivery/red,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aLT" = (
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aLU" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/vending/assist,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aLV" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/camera{
- c_tag = "Central Maintenance - Aft";
- network = list("ss13","rd")
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aLW" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aLX" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/main)
-"aLY" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aLZ" = (
-/mob/living/simple_animal/chicken{
- desc = "At least it isn't a court kangaroo.";
- name = "amusing cluck";
- real_name = "amusing cluck"
- },
-/turf/open/floor/carpet,
-/area/security/courtroom)
-"aMa" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aMb" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMc" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 4;
- sortType = 20
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMd" = (
-/obj/machinery/vending/wardrobe/chap_wardrobe,
-/obj/machinery/camera{
- c_tag = "Chapel Office";
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aMe" = (
-/obj/machinery/door/window/northleft{
- name = "Game Room"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aMf" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aMh" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/item/reagent_containers/food/drinks/bottle/champagne,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security RC";
- pixel_y = -32
- },
-/obj/machinery/keycard_auth{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aMi" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aMj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"aMk" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"aMl" = (
-/obj/effect/landmark/start/bartender,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"aMm" = (
-/obj/machinery/computer/med_data,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"aMn" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/sign/warning{
- name = "\improper WARNING: MOVING MACHINERY"
- },
-/turf/closed/wall,
-/area/maintenance/department/chapel)
-"aMo" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"aMp" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aMq" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aMr" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Civilian Wing Hallway - Port"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMs" = (
-/turf/closed/wall,
-/area/maintenance/department/chapel)
-"aMt" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"aMu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aMv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aMw" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aMx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"aMy" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aMz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"aMA" = (
-/turf/closed/wall,
-/area/janitor)
-"aMB" = (
-/turf/closed/wall/r_wall,
-/area/janitor)
-"aMC" = (
-/obj/structure/table/wood,
-/obj/item/kitchen/fork,
-/obj/item/reagent_containers/food/snacks/salad/herbsalad,
-/obj/item/candle{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aMD" = (
-/turf/closed/wall/rust,
-/area/maintenance/disposal)
-"aME" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 4;
- sortType = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMF" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aMG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Central Starboard Maintenance";
- dir = 8;
- pixel_y = -22
- },
-/mob/living/simple_animal/hostile/retaliate/bat,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"aMH" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aMI" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal)
-"aMJ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/obj/effect/landmark/start/assistant,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aMK" = (
-/obj/vehicle/ridden/wheelchair,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aML" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/chapel/office)
-"aMM" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/sign/poster/official/help_others{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMN" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aMO" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMP" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/drinks/bottle/wine,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aMQ" = (
-/obj/machinery/computer/security{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aMR" = (
-/obj/effect/landmark/start/chaplain,
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aMS" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aMT" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMU" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen/fountain,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aMV" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aMW" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aMX" = (
-/obj/structure/chair/comfy/brown{
- buildstackamount = 0;
- dir = 1
- },
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aMY" = (
-/obj/structure/closet,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"aMZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aNa" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aNb" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aNc" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/item/mop,
-/obj/item/storage/box/mousetraps,
-/obj/item/storage/box/mousetraps,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel,
-/area/janitor)
-"aNd" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/paper_bin,
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"aNe" = (
-/obj/structure/closet/crate,
-/obj/item/reagent_containers/food/snacks/spaghetti,
-/obj/item/reagent_containers/food/snacks/spaghetti,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"aNf" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/clipboard,
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"aNg" = (
-/obj/machinery/computer/cargo/request{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aNh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aNi" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aNj" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 2
- },
-/obj/structure/table,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aNk" = (
-/obj/structure/table/glass,
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/pen{
- pixel_y = 8
- },
-/obj/item/pen,
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"aNl" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate,
-/obj/item/reagent_containers/food/condiment/pack/ketchup{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/condiment/pack/mustard{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/candle{
- pixel_x = -8;
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aNm" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aNn" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/reagent_containers/food/drinks/shaker,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aNo" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "AIShutter";
- name = "AI Core Shutters"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"aNp" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aNq" = (
-/obj/machinery/door/window/northright{
- name = "Chapel Office";
- req_access_txt = "22"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aNr" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aNs" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aNt" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aNu" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/bar)
-"aNv" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aNw" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"aNx" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/securearea,
-/turf/open/floor/plating,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"aNy" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aNz" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aNA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "2"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/security/main)
-"aNB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Port Bow Primary Hallway"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aNC" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Control Room";
- network = list("tcomms");
- pixel_x = 22
- },
-/obj/machinery/power/apc/highcap/fifteen_k{
- areastring = "/area/tcommsat/server";
- dir = 1;
- name = "Telecomms Server APC";
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/server)
-"aND" = (
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aNE" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aNF" = (
-/obj/machinery/computer/secure_data{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aNG" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 2
- },
-/obj/structure/table,
-/obj/item/taperecorder,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aNH" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Exterior Engineering Access";
- req_access_txt = "11;13"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aNI" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aNJ" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aNK" = (
-/obj/structure/sign/nanotrasen{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aNL" = (
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aNM" = (
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- name = "Security RC";
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aNN" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aNO" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"aNP" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aNQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/securearea,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"aNR" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hop)
-"aNS" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"aNT" = (
-/turf/closed/wall/r_wall,
-/area/teleporter)
-"aNU" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aNV" = (
-/obj/structure/table,
-/obj/item/locator,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"aNW" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"aNX" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/item/instrument/guitar,
-/obj/machinery/camera{
- c_tag = "Bar - Port";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aNY" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=sec2";
- location = "bar"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aNZ" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aOa" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "E.V.A. Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aOb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "E.V.A. Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aOc" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aOd" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aOe" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"aOf" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aOg" = (
-/obj/structure/chair/comfy/teal{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aOh" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aOi" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aOj" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aOk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aOl" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aOm" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/structure/table/wood,
-/obj/item/toy/windupToolbox,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aOn" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aOo" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/hallway/primary/port/fore";
- dir = 4;
- name = "Port Bow Primary Hallway APC";
- pixel_x = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aOp" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 1;
- sortType = 31
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aOq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/effect/turf_decal/delivery,
-/obj/item/extinguisher,
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aOr" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/sign/warning/securearea{
- pixel_x = -32
- },
-/obj/item/kirbyplants{
- icon_state = "plant-21";
- pixel_y = 3
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/bridge)
-"aOs" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/kirbyplants,
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/bridge)
-"aOt" = (
-/obj/structure/chair/stool,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/main)
-"aOu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/main)
-"aOv" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/gavelblock,
-/obj/item/gavelhammer,
-/obj/machinery/camera{
- c_tag = "Courtroom";
- network = list("ss13","rd")
- },
-/turf/open/floor/carpet,
-/area/security/courtroom)
-"aOw" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aOx" = (
-/obj/structure/table/reinforced,
-/obj/item/grenade/chem_grenade/smart_metal_foam{
- pixel_x = 4
- },
-/obj/item/radio,
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aOy" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aOz" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Port Bow Hall";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aOA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/department/chapel)
-"aOB" = (
-/turf/closed/wall/r_wall,
-/area/security/courtroom)
-"aOC" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aOD" = (
-/obj/machinery/door/airlock{
- name = "Catering";
- req_one_access_txt = "25;28"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"aOE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aOF" = (
-/obj/structure/closet/crate/freezer/surplus_limbs,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"aOG" = (
-/obj/structure/chair/comfy/teal{
- dir = 1
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aOH" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"aOI" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/obj/machinery/flasher{
- id = "ID";
- pixel_x = 8;
- pixel_y = 24
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aOJ" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/fitness/cogpool)
-"aOK" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"aOL" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/brig)
-"aOM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aON" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aOO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aOP" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/gravity_generator)
-"aOQ" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "cold loop to generator"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aOR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/window/reinforced/spawner/east,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aOS" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aOT" = (
-/turf/closed/wall,
-/area/crew_quarters/fitness/cogpool)
-"aOU" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"aOV" = (
-/turf/open/floor/plasteel/stairs,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aOW" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot,
-/obj/item/clothing/accessory/armband/hydro,
-/obj/item/encryptionkey/headset_service,
-/obj/item/clothing/under/misc/vice_officer,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aOX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Pool"
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/white/side,
-/area/crew_quarters/fitness/cogpool)
-"aOY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aOZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aPa" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Pool"
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white/side,
-/area/crew_quarters/fitness/cogpool)
-"aPb" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"aPc" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aPd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aPe" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aPf" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"aPg" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aPh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aPi" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/structure/mirror{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aPj" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aPk" = (
-/obj/effect/landmark/start/depsec/science,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aPl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPm" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aPn" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/landmark/start/depsec/medical,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aPo" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aPp" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aPq" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aPr" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"aPs" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aPt" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"aPu" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aPv" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Equipment Room";
- req_access_txt = "1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aPw" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Central Hall - Courtroom Access";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"aPx" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPz" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aPA" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPB" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/paper/guides/jobs/security/courtroom,
-/obj/item/pen,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/security/courtroom)
-"aPC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPD" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Equipment Room";
- req_access_txt = "1"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aPE" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/toy/talking/AI{
- name = "Nanotrasen-brand toy AI";
- pixel_y = 6
- },
-/obj/item/clothing/glasses/meson,
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"aPF" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/locker)
-"aPG" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- sortType = 21
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPH" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/security/courtroom)
-"aPI" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aPJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=bar";
- location = "serv"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aPL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPM" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"aPN" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/space/nearstation)
-"aPO" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aPP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aPQ" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aPR" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/crew_quarters/fitness/cogpool)
-"aPS" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aPT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aPU" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aPV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aPW" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aPX" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/storage/fancy/donut_box,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aPY" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aPZ" = (
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aQa" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"aQb" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aQc" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aQd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aQe" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aQf" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aQg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aQh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aQi" = (
-/obj/structure/table,
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aQj" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"aQk" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aQl" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aQm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aQn" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"aQo" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/security/courtroom)
-"aQp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aQq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"aQr" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/space/nearstation)
-"aQs" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aQt" = (
-/obj/machinery/pool/controller,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQu" = (
-/obj/structure/table,
-/obj/item/toy/beach_ball{
- pixel_y = 12
- },
-/obj/item/clothing/glasses/sunglasses{
- pixel_y = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQv" = (
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"aQw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aQx" = (
-/obj/machinery/camera{
- c_tag = "Engine Room - Port Bow"
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aQy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/main)
-"aQz" = (
-/obj/structure/chair/comfy/teal,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQA" = (
-/obj/structure/chair/stool,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aQB" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/sunglasses{
- pixel_y = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQC" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aQD" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aQE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aQF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"aQG" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aQH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aQI" = (
-/obj/structure/chair/comfy/teal,
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQJ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aQK" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aQL" = (
-/turf/closed/wall,
-/area/maintenance/port/central)
-"aQM" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aQN" = (
-/obj/structure/chair/comfy/brown,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aQO" = (
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aQP" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/kirbyplants{
- icon_state = "plant-02"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQQ" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQR" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQS" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aQT" = (
-/obj/machinery/door/airlock/engineering{
- name = "Thermo-Electric Generator";
- req_one_access_txt = "10;24"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aQU" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"aQV" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aQW" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/captain)
-"aQX" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aQY" = (
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/table,
-/obj/item/toy/beach_ball/holoball/dodgeball,
-/obj/item/toy/beach_ball/holoball/dodgeball,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aQZ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Service Hallway";
- req_one_access_txt = "25;26;28;35"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"aRa" = (
-/obj/structure/table/wood,
-/obj/item/lighter,
-/obj/item/multitool{
- pixel_x = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aRb" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aRc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/fitness/cogpool)
-"aRd" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRe" = (
-/obj/structure/table/wood,
-/obj/item/storage/secure/briefcase,
-/obj/item/assembly/flash,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aRf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRh" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aRi" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRj" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/obj/machinery/sleep_console{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aRk" = (
-/obj/structure/disposalpipe/junction/yjunction,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRl" = (
-/obj/structure/table/wood,
-/obj/item/restraints/handcuffs,
-/obj/item/laser_pointer/blue,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aRm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aRn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRo" = (
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"aRp" = (
-/obj/structure/sign/warning/fire,
-/turf/closed/wall/r_wall,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aRq" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aRr" = (
-/mob/living/simple_animal/chicken{
- name = "Kentucky";
- real_name = "Kentucky"
- },
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aRs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRt" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRu" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aRv" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_x = -32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aRw" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"aRx" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aRy" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aRz" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aRA" = (
-/obj/structure/table/optable,
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/reagent_containers/blood/random,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aRB" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aRC" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"aRD" = (
-/turf/closed/wall/r_wall/rust,
-/area/engine/gravity_generator)
-"aRE" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aRF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"aRG" = (
-/obj/machinery/power/generator,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable,
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aRH" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/blobstart,
-/obj/machinery/camera{
- c_tag = "Central Port Maintenance - Starboard";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aRI" = (
-/obj/structure/rack,
-/obj/item/extinguisher,
-/obj/item/crowbar,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aRJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aRK" = (
-/obj/structure/sign/departments/holy{
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRL" = (
-/mob/living/simple_animal/crab/kreb,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aRM" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"aRN" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRO" = (
-/obj/structure/disposalpipe/junction/yjunction,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aRP" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRQ" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aRR" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aRS" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/kirbyplants{
- icon_state = "plant-10"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aRT" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aRU" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aRV" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aRW" = (
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aRX" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aRY" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"aRZ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aSa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSb" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aSc" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aSd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aSe" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Chapel"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/chapel/main)
-"aSf" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aSg" = (
-/obj/machinery/power/apc{
- name = "Security Maintainance APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aSh" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aSi" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSj" = (
-/obj/structure/target_stake,
-/obj/item/target/syndicate,
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"aSk" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aSl" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"aSm" = (
-/obj/machinery/teleport/station,
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"aSn" = (
-/obj/machinery/teleport/hub,
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"aSo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aSp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aSq" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aSr" = (
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aSs" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#d1dfff"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/camera{
- c_tag = "Bridge Access";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSt" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/department/eva)
-"aSu" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aSv" = (
-/turf/closed/wall,
-/area/space/nearstation)
-"aSw" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aSx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aSy" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aSz" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aSA" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aSB" = (
-/obj/machinery/door/airlock/command{
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSC" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aSD" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aSE" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aSF" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/surgical_drapes,
-/obj/item/scalpel,
-/obj/item/circular_saw{
- pixel_y = 16
- },
-/obj/item/hemostat,
-/obj/item/retractor,
-/obj/item/surgicaldrill,
-/obj/item/cautery,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aSG" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aSH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"aSI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aSJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aSK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aSL" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aSM" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aSN" = (
-/obj/structure/table,
-/obj/machinery/computer/secure_data/laptop{
- dir = 8;
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aSO" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aSP" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aSQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aSR" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aSS" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- freq = 1400;
- location = "Chapel"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aST" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"aSU" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = -26
- },
-/obj/machinery/requests_console{
- department = "Bar";
- departmentType = 2;
- name = "Bar RC";
- pixel_y = -30
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"aSV" = (
-/obj/item/toy/talking/AI,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"aSW" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aSX" = (
-/obj/machinery/washing_machine,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aSY" = (
-/obj/machinery/vending/medical,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aSZ" = (
-/obj/structure/chair/stool,
-/obj/machinery/light,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aTa" = (
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aTb" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Central Hall - Starboard";
- pixel_x = 22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aTc" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/components/binary/valve/digital/on,
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"aTd" = (
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"
- },
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"aTe" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aTf" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aTg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aTh" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/power/apc{
- name = "AI Upload Foyer APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aTi" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aTj" = (
-/obj/machinery/pool/filter{
- pixel_y = 16
- },
-/turf/open/pool,
-/area/crew_quarters/fitness/cogpool)
-"aTk" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aTl" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aTm" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aTn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/department/eva";
- dir = 8;
- name = "EVA Maintenance APC";
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aTo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"aTp" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/landmark/start/security_officer,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aTq" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aTr" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"aTs" = (
-/turf/closed/wall,
-/area/maintenance/department/eva)
-"aTt" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aTu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge Access";
- req_access_txt = "19"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aTv" = (
-/turf/open/pool,
-/area/crew_quarters/fitness/cogpool)
-"aTw" = (
-/obj/structure/pool/ladder{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/pool,
-/area/crew_quarters/fitness/cogpool)
-"aTx" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_y = -32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aTy" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_y = -32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aTz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aTA" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aTB" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aTC" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aTD" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aTE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"aTF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aTG" = (
-/turf/closed/wall,
-/area/router/public)
-"aTH" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"aTI" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Public Router"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/router/public)
-"aTJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aTK" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Public Router"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/router/public)
-"aTL" = (
-/obj/machinery/cryopod{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Cryogenics";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"aTM" = (
-/turf/closed/wall/r_wall,
-/area/router/public)
-"aTN" = (
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = -26
- },
-/obj/item/kirbyplants{
- icon_state = "plant-14"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aTO" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aTP" = (
-/obj/machinery/status_display/ai,
-/turf/closed/wall/r_wall,
-/area/security/courtroom)
-"aTQ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Thermo-Electric Generator"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aTR" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/stamp,
-/obj/item/stamp/denied{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/pen/red,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aTS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aTT" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aTU" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aTV" = (
-/turf/closed/wall,
-/area/gateway)
-"aTW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aTX" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"aTY" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aTZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "hot loop to space"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aUa" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aUb" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aUc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aUd" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aUe" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aUf" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aUg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aUh" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aUi" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/gateway)
-"aUj" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/destTagger,
-/obj/machinery/requests_console{
- department = "Public Router";
- name = "Public Router RC";
- pixel_x = -32
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aUk" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"aUl" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/router/public)
-"aUm" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aUn" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/computer/cargo/request,
-/turf/open/floor/plasteel,
-/area/router/public)
-"aUo" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aUp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/closet/crate/science,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aUq" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/lounge/jazz)
-"aUr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 10
- },
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aUs" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aUt" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aUu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/rack,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aUv" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start/security_officer,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aUw" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Jazz Lounge"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"aUx" = (
-/obj/machinery/door/window/northright{
- name = "Game Room"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"aUy" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/official/do_not_question{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aUz" = (
-/obj/machinery/computer/telecomms/server{
- dir = 4;
- network = "tcommsat"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/bridge)
-"aUA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aUB" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"aUC" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aUD" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aUE" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aUF" = (
-/obj/machinery/computer/bounty{
- dir = 1
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"aUG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aUH" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light/small,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aUI" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aUJ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aUK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/warning/electricshock{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aUL" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aUM" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/junction,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aUN" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aUO" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/teleporter";
- dir = 4;
- name = "Teleporter Room APC";
- pixel_x = 26
- },
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"aUP" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aUQ" = (
-/obj/structure/table,
-/obj/item/modular_computer/laptop/preset/civilian,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aUR" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 8;
- icon_state = "intact"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aUS" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"aUT" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aUU" = (
-/obj/machinery/pool/drain,
-/turf/open/pool,
-/area/crew_quarters/fitness/cogpool)
-"aUV" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aUW" = (
-/obj/structure/pool/Lboard,
-/turf/open/pool,
-/area/crew_quarters/fitness/cogpool)
-"aUX" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aUY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aUZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"aVa" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aVb" = (
-/obj/structure/pool/Rboard,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aVc" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/item/kirbyplants{
- icon_state = "applebush"
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aVd" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aVe" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aVf" = (
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aVg" = (
-/obj/machinery/computer/cryopod{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"aVh" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aVi" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/router/public)
-"aVj" = (
-/obj/machinery/vending/cola/random,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aVk" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/gateway)
-"aVl" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aVm" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aVn" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aVo" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aVp" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/item/radio/intercom{
- dir = 8;
- name = "Station Intercom (Common)";
- pixel_x = 28
- },
-/obj/machinery/camera{
- c_tag = "Public Router";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/button/massdriver{
- id = "public_out";
- pixel_x = 24;
- pixel_y = -6
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "pubblock";
- name = "Router Access Control";
- pixel_x = 24;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aVq" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"aVr" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/item/storage/box/cups,
-/obj/structure/sign/poster/official/here_for_your_safety{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aVs" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/crew_quarters/lounge/jazz)
-"aVt" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aVu" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aVv" = (
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aVw" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aVx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"aVy" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aVz" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aVA" = (
-/obj/machinery/cryopod{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"aVB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aVC" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/central)
-"aVD" = (
-/obj/machinery/vending/clothing,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aVE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Dormitory Toilets"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aVF" = (
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"aVG" = (
-/obj/machinery/ore_silo,
-/obj/effect/turf_decal/bot_white,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/nuke_storage";
- dir = 4;
- name = "Vault APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aVH" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/hallway/secondary/civilian";
- dir = 8;
- name = "Civilian Wing Hallway APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aVI" = (
-/obj/structure/table,
-/obj/item/storage/box/zipties,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aVJ" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aVK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/space/nearstation)
-"aVL" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aVM" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/eva)
-"aVN" = (
-/obj/machinery/vending,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aVO" = (
-/obj/structure/table,
-/obj/item/tape,
-/obj/item/taperecorder{
- pixel_x = -4
- },
-/obj/item/radio/off,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aVP" = (
-/obj/structure/window/reinforced,
-/obj/structure/displaycase/captain,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/heads/captain)
-"aVQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aVR" = (
-/obj/structure/window/reinforced,
-/obj/structure/filingcabinet,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/heads/captain)
-"aVS" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aVT" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: WASTE EJECTION";
- pixel_x = -32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aVU" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aVV" = (
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/mob/living/simple_animal/bot/secbot/beepsky{
- desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. ";
- health = 45;
- maxHealth = 45;
- name = "Officer Beepsky"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aVW" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aVX" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/clothing/mask/surgical,
-/obj/item/clothing/suit/apron/surgical,
-/obj/item/clothing/gloves/color/latex,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aVY" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"aVZ" = (
-/obj/machinery/computer/security/wooden_tv,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aWa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aWb" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aWc" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aWd" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aWe" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aWf" = (
-/obj/effect/turf_decal/tile/red,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aWg" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"aWh" = (
-/obj/effect/landmark/start/lawyer,
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"aWi" = (
-/obj/machinery/cryopod{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/disposal";
- dir = 8;
- name = "Cryogenics APC";
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"aWj" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space/basic,
-/area/space/nearstation)
-"aWk" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/modular_computer/laptop/preset/civilian,
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aWl" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aWm" = (
-/turf/open/floor/plasteel,
-/area/gateway)
-"aWn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aWo" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/cryopod)
-"aWp" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/gateway)
-"aWq" = (
-/obj/structure/rack,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/extinguisher,
-/obj/item/crowbar,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aWr" = (
-/obj/machinery/gateway{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/gateway)
-"aWs" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aWt" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aWu" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/fitness/cogpool";
- dir = 4;
- name = "Pool APC";
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aWv" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aWw" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aWx" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"aWy" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aWz" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Power Monitoring";
- req_access_txt = "10"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aWA" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aWB" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aWC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Defendent's Chair";
- req_one_access_txt = "63"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aWD" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/item/cigbutt,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aWE" = (
-/obj/structure/sign/warning{
- name = "\improper WARNING: MOVING MACHINERY"
- },
-/turf/closed/wall/r_wall,
-/area/janitor)
-"aWF" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/janitor)
-"aWG" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/clothing/shoes/magboots,
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aWH" = (
-/obj/machinery/disposal/bin{
- name = "Corpse Delivery"
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/delivery/red,
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aWI" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aWJ" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"aWK" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/item/storage/box/lights/mixed,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aWL" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "public"
- },
-/turf/open/floor/plating,
-/area/router/public)
-"aWM" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aWN" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/conveyor/auto{
- id = "public"
- },
-/turf/open/floor/plating,
-/area/router/public)
-"aWO" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/ai_monitored/storage/eva)
-"aWP" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aWQ" = (
-/obj/structure/closet/crate/rcd,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aWR" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_x = 32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aWS" = (
-/obj/structure/table,
-/obj/item/storage/box/flashes{
- pixel_x = 8
- },
-/obj/item/storage/box/handcuffs{
- pixel_x = -8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"aWT" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/window/reinforced/spawner/west,
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/router/public";
- dir = 4;
- name = "Public Router APC";
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aWU" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"aWV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 10
- },
-/obj/structure/sign/warning/securearea,
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aWW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aWX" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/medical";
- dir = 8;
- name = "Medical Booth APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aWY" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- frequency = 1359;
- name = "Station Intercom (Security)";
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aWZ" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/nuke_storage)
-"aXa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aXb" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/central)
-"aXc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aXd" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/central)
-"aXe" = (
-/obj/machinery/bookbinder,
-/turf/open/floor/wood,
-/area/library)
-"aXf" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/structure/table/wood,
-/obj/machinery/light{
- dir = 1;
- light_color = "#c1caff"
- },
-/turf/open/floor/carpet,
-/area/library)
-"aXg" = (
-/obj/structure/bookcase/random/reference,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aXh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 6
- },
-/obj/structure/sign/warning/securearea,
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"aXi" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aXj" = (
-/obj/structure/transit_tube/station/reverse,
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Transit Tube Access";
- pixel_x = 22
- },
-/obj/structure/transit_tube_pod{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aXk" = (
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Port Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aXl" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "Port Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aXm" = (
-/obj/machinery/gateway,
-/turf/open/floor/engine,
-/area/gateway)
-"aXn" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aXo" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aXp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/reagent_dispensers/foamtank,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"aXq" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aXr" = (
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aXs" = (
-/obj/machinery/gateway{
- dir = 6
- },
-/turf/open/floor/engine,
-/area/gateway)
-"aXt" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/securearea,
-/turf/open/floor/plating,
-/area/gateway)
-"aXu" = (
-/turf/closed/wall,
-/area/security/courtroom/jury)
-"aXv" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Bar"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aXw" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/kirbyplants{
- icon_state = "plant-08"
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aXx" = (
-/obj/structure/grille,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"aXy" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/ai_monitored/storage/eva)
-"aXz" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aXA" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/security/courtroom/jury)
-"aXB" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aXC" = (
-/obj/machinery/computer/bank_machine,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aXD" = (
-/obj/effect/turf_decal/bot_white/right,
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/structure/closet/crate/silvercrate,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aXE" = (
-/obj/effect/turf_decal/bot_white,
-/obj/structure/closet/crate/goldcrate,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aXF" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- name = "gas to hot loop"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"aXG" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"aXH" = (
-/obj/structure/sign/warning/securearea,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aXI" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aXJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aXK" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aXL" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/paper/fluff/jobs/security/beepsky_mom,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aXM" = (
-/turf/closed/wall,
-/area/maintenance/department/security)
-"aXN" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/ai_monitored/storage/eva)
-"aXO" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aXP" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Pool Maintenance";
- req_one_access_txt = "12"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"aXQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical{
- name = "Medical Booth"
- })
-"aXR" = (
-/turf/closed/wall,
-/area/security/courtroom)
-"aXS" = (
-/obj/structure/chair/comfy/brown{
- buildstackamount = 0;
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aXT" = (
-/obj/structure/chair/comfy/brown{
- buildstackamount = 0;
- dir = 1
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"aXU" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aXV" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/assembly/timer{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/stack/cable_coil/random{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/multitool,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aXW" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aXX" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aXY" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aXZ" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aYa" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"aYb" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aYc" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/wood,
-/area/library)
-"aYd" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aYe" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aYf" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"aYg" = (
-/obj/effect/turf_decal/bot_white/right,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aYh" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/radio/off,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aYi" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aYj" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aYk" = (
-/turf/open/floor/circuit/green,
-/area/ai_monitored/nuke_storage)
-"aYl" = (
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aYm" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aYn" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/storage/box/smart_metal_foam,
-/obj/item/wrench,
-/obj/item/radio/off,
-/obj/item/radio/off,
-/obj/item/radio/off,
-/obj/item/assembly/prox_sensor,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aYo" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Security"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"aYp" = (
-/obj/structure/fans/tiny/invisible,
-/turf/open/space/basic,
-/area/space)
-"aYq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aYr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "1"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aYs" = (
-/obj/structure/rack,
-/obj/item/tank/jetpack/carbondioxide,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aYt" = (
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aYu" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aYv" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/analyzer,
-/obj/item/storage/toolbox/electrical,
-/obj/item/gps,
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aYw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aYx" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aYy" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark/side,
-/area/bridge)
-"aYz" = (
-/obj/effect/turf_decal/bot_white,
-/obj/effect/landmark/start/ai/secondary,
-/obj/machinery/camera{
- c_tag = "Vault";
- dir = 4;
- network = list("vault")
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aYA" = (
-/obj/machinery/nuclearbomb/selfdestruct,
-/obj/effect/turf_decal/box/white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aYB" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aYC" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/detectives_office";
- dir = 1;
- name = "Detective's Office APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"aYD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aYE" = (
-/obj/structure/closet/crate/trashcart,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/junction,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aYF" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/evidence,
-/obj/item/hand_labeler,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"aYG" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"aYH" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aYI" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/photocopier,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/obj/item/paper/fluff/cogstation/secsolars,
-/turf/open/floor/plasteel,
-/area/security/main)
-"aYJ" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aYK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Civilian Wing Hallway"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"aYL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"aYM" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aYN" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aYO" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"aYP" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aYQ" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aYR" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"aYS" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/security/brig)
-"aYT" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/customs)
-"aYU" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aYV" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"aYW" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/northright{
- name = "Customs Desk";
- req_access_txt = "57"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "HoPFore";
- name = "HoP Fore Desk Shutters"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"aYX" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/flashlight/lamp,
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "HoPFore";
- name = "HoP Fore Desk Shutters"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"aYY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Port Central Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/security/courtroom)
-"aYZ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"aZa" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aZb" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/eva)
-"aZc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aZd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "E.V.A. Maintenance";
- req_access_txt = "18"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"aZe" = (
-/obj/structure/sign/warning/biohazard{
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"aZf" = (
-/obj/effect/turf_decal/bot_white/left,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aZg" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"aZh" = (
-/obj/structure/closet/crate,
-/obj/machinery/light,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/window/reinforced/spawner/east,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aZi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"aZj" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/caution{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/caution{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/caution{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/caution{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/extinguisher{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/extinguisher{
- pixel_x = -4;
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aZk" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/mass_driver{
- id = "public_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router/public)
-"aZl" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router/public)
-"aZm" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"aZn" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera/motion{
- c_tag = "EVA";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aZo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"aZp" = (
-/obj/structure/lattice,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aZq" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"aZr" = (
-/obj/structure/filingcabinet,
-/obj/item/folder/documents,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aZs" = (
-/obj/structure/safe,
-/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/lazarus_injector,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c1000,
-/obj/effect/turf_decal/bot_white/left,
-/obj/item/stack/sheet/mineral/diamond,
-/obj/item/clothing/under/costume/soviet,
-/obj/item/clothing/suit/armor/vest/russian_coat,
-/obj/item/clothing/head/helmet/rus_helmet,
-/obj/machinery/light,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aZt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"aZu" = (
-/obj/machinery/blackbox_recorder,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"aZv" = (
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aZw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/weldingtool,
-/obj/item/flashlight,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aZx" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"aZy" = (
-/turf/closed/wall,
-/area/lawoffice)
-"aZz" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"aZA" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"aZB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"aZC" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"aZD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/central";
- dir = 1;
- name = "Chapel Maintenance APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"aZE" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/highcap/five_k{
- areastring = "/area/hallway/primary/central";
- dir = 8;
- name = "Central Primary Hallway APC";
- pixel_x = -26
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"aZF" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aZG" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_y = 32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"aZH" = (
-/obj/structure/disposalpipe/junction,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aZI" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/landmark/start/lawyer,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"aZJ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aZK" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/storage/toolbox/electrical,
-/obj/item/weldingtool,
-/obj/item/multitool{
- pixel_x = -6;
- pixel_y = -2
- },
-/obj/item/assembly/signaler{
- pixel_x = 6;
- pixel_y = 4
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aZL" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/poster/official/cohiba_robusto_ad{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"aZM" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/carpet,
-/area/security/courtroom)
-"aZN" = (
-/obj/machinery/computer/station_alert{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"aZO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"aZP" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/aiModule/reset/purge{
- pixel_y = 6
- },
-/obj/item/aiModule/reset{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/aiModule/core/full/custom{
- pixel_x = -4
- },
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"aZQ" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/plasteel{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aZR" = (
-/turf/open/floor/plasteel/dark/corner,
-/area/ai_monitored/storage/eva)
-"aZS" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/ai_monitored/storage/eva)
-"aZT" = (
-/obj/structure/closet/secure_closet/hos,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/storage/box/deputy,
-/obj/item/paper/guides/cogstation/letter_hos,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"aZU" = (
-/obj/structure/chair,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"aZV" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"aZW" = (
-/obj/structure/chair,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"aZX" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"aZY" = (
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"aZZ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/ai_monitored/storage/eva)
-"baa" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bab" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bac" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/stack/rods/fifty,
-/obj/item/stack/rods/fifty,
-/obj/item/storage/toolbox/emergency,
-/obj/item/stack/sheet/rglass,
-/obj/item/stack/sheet/rglass,
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"bad" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/stripes/white/full,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bae" = (
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"baf" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Central Plaza - Starboard";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bag" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/storage/belt/utility,
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"bah" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/lawoffice)
-"bai" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baj" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/reagent_containers/glass/beaker/waterbottle,
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bak" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/lawoffice)
-"bal" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"bam" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/turf/open/space/basic,
-/area/space/nearstation)
-"ban" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"bao" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/white/full,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"bap" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"baq" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bar" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"bas" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"bat" = (
-/obj/structure/chair/stool/bar,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/bar)
-"bau" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Aft Maintenance - Port";
- pixel_x = 22
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bav" = (
-/obj/structure/chair/sofa/right,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/item/clipboard,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"baw" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/lawoffice)
-"bax" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"bay" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"baz" = (
-/obj/machinery/photocopier,
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"baA" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/item/folder/blue,
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"baB" = (
-/obj/structure/rack,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/item/extinguisher,
-/obj/item/crowbar,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"baC" = (
-/obj/machinery/vending/cart,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"baD" = (
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"baE" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/library)
-"baF" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/head_of_personnel,
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"baG" = (
-/obj/machinery/computer/secure_data{
- dir = 8
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"baH" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/item/crowbar,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"baI" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baJ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baK" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/item/kitchen/fork,
-/obj/item/reagent_containers/food/snacks/pastatomato,
-/obj/machinery/newscaster/security_unit{
- pixel_y = -30
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"baL" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"baM" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/item/crowbar/large,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"baN" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"baO" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"baP" = (
-/obj/structure/closet/secure_closet/captains,
-/obj/item/reagent_containers/food/drinks/flask/gold,
-/obj/item/clothing/under/rank/captain/suit,
-/obj/item/clothing/under/rank/captain/suit/skirt,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/item/clothing/head/centhat{
- name = "\improper green captain's hat"
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/heads/captain)
-"baQ" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"baR" = (
-/obj/structure/chair/sofa/left,
-/obj/effect/landmark/start/lawyer,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"baS" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"baT" = (
-/obj/machinery/iv_drip,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"baU" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"baV" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"baW" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/aiModule/core/full/asimov{
- pixel_x = 2;
- pixel_y = 10
- },
-/obj/effect/spawner/lootdrop/aimodule_neutral{
- pixel_x = 1;
- pixel_y = 8
- },
-/obj/effect/spawner/lootdrop/aimodule_harmless{
- pixel_y = 6
- },
-/obj/item/aiModule/core/freeformcore{
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/item/aiModule/supplied/freeform{
- pixel_x = -2
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"baX" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/structure/displaycase,
-/turf/open/floor/wood,
-/area/library)
-"baY" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"baZ" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Port Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bba" = (
-/obj/effect/landmark/start/assistant,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"bbb" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"bbc" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"bbd" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"bbe" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"bbf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hop)
-"bbg" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"bbh" = (
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"bbi" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"bbj" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/teleporter)
-"bbk" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Telecomms Admin";
- departmentType = 5;
- name = "Telecomms RC";
- pixel_y = 30
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bbl" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bbm" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/lawyer,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bbn" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbo" = (
-/obj/structure/closet/crate,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/book/manual/wiki/security_space_law,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bbp" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/carpet,
-/area/security/courtroom)
-"bbq" = (
-/obj/effect/landmark/start/librarian,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"bbr" = (
-/obj/structure/filingcabinet/employment,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bbs" = (
-/obj/structure/table/wood,
-/obj/item/camera,
-/obj/item/pen/red,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bbt" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bbu" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plating,
-/area/space/nearstation)
-"bbv" = (
-/turf/open/space,
-/area/space)
-"bbw" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bbx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bby" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bbz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bbA" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bbB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bbC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bbD" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"bbE" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bbF" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 6
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bbG" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"bbH" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"bbI" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbJ" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bbK" = (
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bbL" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 10
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bbM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bbN" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bbO" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bbP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "HoP Office Maintenance";
- req_access_txt = "57"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/customs)
-"bbQ" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"bbR" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/item/reagent_containers/food/snacks/grown/wheat,
-/obj/item/reagent_containers/food/snacks/grown/corn,
-/obj/item/reagent_containers/food/snacks/grown/cocoapod,
-/obj/item/reagent_containers/food/snacks/grown/chili,
-/obj/item/reagent_containers/food/snacks/grown/soybeans,
-/obj/item/reagent_containers/food/snacks/grown/tomato,
-/obj/item/reagent_containers/food/snacks/grown/cherries,
-/obj/structure/sign/poster/contraband/have_a_puff{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bbS" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/gateway)
-"bbT" = (
-/turf/closed/wall/r_wall,
-/area/quartermaster/sorting)
-"bbU" = (
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bbV" = (
-/turf/closed/wall/r_wall,
-/area/quartermaster/warehouse)
-"bbW" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/noticeboard{
- dir = 4;
- pixel_x = -27
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bbX" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bbY" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bbZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bca" = (
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bcb" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bcc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"bcd" = (
-/obj/item/kirbyplants{
- icon_state = "plant-14"
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"bce" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "public"
- },
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "cargoblock";
- name = "Public Router"
- },
-/turf/open/floor/plating,
-/area/router/public)
-"bcf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bcg" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "cargoblock";
- name = "Public Router"
- },
-/turf/open/floor/plating,
-/area/router/public)
-"bch" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bci" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bcj" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- id = "cargo"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bck" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bcl" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bcm" = (
-/obj/machinery/computer/cargo/request,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bcn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/vacuum/external,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bco" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/morgue{
- name = "Confession Booth (Chaplain)";
- req_access_txt = "22"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bcp" = (
-/obj/machinery/libraryscanner,
-/obj/machinery/light,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"bcq" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bcr" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bcs" = (
-/obj/machinery/pdapainter,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bct" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bcu" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/camera{
- c_tag = "Aft Maintenance - Air Hookup"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bcv" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/on,
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bcw" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/mixing)
-"bcx" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start/head_of_personnel,
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bcy" = (
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bcz" = (
-/obj/machinery/computer/card{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bcA" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bcB" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/extinguisher,
-/turf/open/floor/plasteel,
-/area/gateway)
-"bcC" = (
-/obj/machinery/power/apc{
- name = "Research Division Storage APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"bcD" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bcE" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/on{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bcF" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bcG" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bcH" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark/side,
-/area/security/courtroom)
-"bcI" = (
-/turf/closed/wall/r_wall,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bcJ" = (
-/obj/machinery/button/door{
- id = "HoPAft";
- name = "Aft Shutters";
- pixel_x = -24;
- pixel_y = -24;
- req_access_txt = "57"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bcK" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Cryogenics"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/circuit/green,
-/area/crew_quarters/cryopod)
-"bcL" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bcM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"bcN" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=bridge2";
- location = "court"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"bcO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"bcP" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bcQ" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"bcR" = (
-/turf/closed/wall,
-/area/hallway/primary/central)
-"bcS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Courtroom"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"bcT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bcU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Jury Room Maintainance";
- req_one_access_txt = "12"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/courtroom/jury)
-"bcV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bcW" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/requests_console{
- department = "Bar";
- departmentType = 2;
- name = "Bar RC";
- pixel_y = -30
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bcX" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/hallway/primary/central)
-"bcY" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bcZ" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bda" = (
-/obj/structure/table,
-/obj/item/hand_tele,
-/obj/machinery/camera{
- c_tag = "Teleporter Room";
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"bdb" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"bdc" = (
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bdd" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Pool";
- dir = 1
- },
-/obj/structure/closet/secure_closet/personal,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/toy/poolnoodle/red,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"bde" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = 32
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bdf" = (
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bdg" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bdh" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/closet/secure_closet/personal,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/toy/poolnoodle/blue,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"bdi" = (
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bdj" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"bdk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bdl" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/closet/athletic_mixed,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/toy/poolnoodle/yellow,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/fitness/cogpool)
-"bdm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bdn" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"bdo" = (
-/obj/structure/sign/warning/biohazard{
- pixel_x = -32
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 4;
- sortType = 17
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bdp" = (
-/obj/structure/chair/stool,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bdq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bdr" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"bds" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/chaplain,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bdt" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bdu" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bdv" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bdw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/spawner/structure/window/reinforced/tinted,
-/turf/open/floor/plating,
-/area/chapel/office)
-"bdx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"bdy" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"bdz" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"bdA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bdB" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb,
-/obj/item/toy/eightball,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"bdC" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bdD" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bdE" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 8;
- icon_state = "intact"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"bdF" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bdG" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bdH" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bdI" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bdJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Telecommunications Control Room Maintenance";
- req_access_txt = "61"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"bdK" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bdL" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bdM" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bdN" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bdO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Pool External Maintenance";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"bdP" = (
-/turf/closed/wall/mineral/wood,
-/area/crew_quarters/fitness/cogpool)
-"bdQ" = (
-/obj/machinery/door/airlock/command{
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"bdR" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bdS" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/bridge)
-"bdT" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/emergency,
-/obj/item/hand_labeler,
-/obj/item/hand_labeler,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bdU" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bdV" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bdW" = (
-/obj/structure/mineral_door/woodrustic{
- name = "Sauna"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness/cogpool)
-"bdX" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/donkpockets,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"bdY" = (
-/obj/structure/sign/warning/fire,
-/turf/closed/wall/mineral/wood,
-/area/crew_quarters/fitness/cogpool)
-"bdZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/quartermaster/sorting)
-"bea" = (
-/obj/structure/disposalpipe/junction,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sign/poster/official/report_crimes{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"beb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/courtroom/jury)
-"bec" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bed" = (
-/obj/machinery/suit_storage_unit/rd,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bee" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bef" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"beg" = (
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"beh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"bei" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"bej" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bek" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bel" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bem" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "hot loop to generator"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"ben" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"beo" = (
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"bep" = (
-/obj/structure/table/wood,
-/obj/item/tape,
-/obj/item/taperecorder{
- pixel_x = -4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/heads/hor";
- dir = 8;
- name = "Research Director's Office APC";
- pixel_x = -24
- },
-/obj/item/reagent_containers/food/snacks/muffin/berry,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"beq" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "generator to cold loop"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"ber" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bes" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"bet" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"beu" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"bev" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/radio/intercom{
- dir = 8;
- name = "Station Intercom (Common)";
- pixel_x = 28
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"bew" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"bex" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"bey" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall/rust,
-/area/space/nearstation)
-"bez" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"beA" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/chapel/main)
-"beB" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"beC" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"beD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"beE" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/fans/tiny,
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"beF" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"beG" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "Routing Depot - Fore Exterior";
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"beH" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"beI" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"beJ" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"beK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"beL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"beM" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"beN" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"beO" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"beP" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"beQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"beR" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"beS" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"beT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"beU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"beV" = (
-/obj/machinery/button/door{
- id = "executionspaceblast";
- name = "Vent to Space";
- pixel_x = 25;
- pixel_y = -5;
- req_access_txt = "7"
- },
-/obj/machinery/button/ignition{
- id = "executionburn";
- pixel_x = 24;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/port/fore)
-"beW" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"beX" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/item/radio/intercom{
- dir = 8;
- name = "Station Intercom (Common)";
- pixel_x = 28
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"beY" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"beZ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bfa" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"bfb" = (
-/obj/machinery/computer/card/minor/qm,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/keycard_auth{
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bfc" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bfd" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bfe" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bff" = (
-/turf/closed/wall/r_wall,
-/area/quartermaster/qm)
-"bfg" = (
-/obj/structure/closet,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bfh" = (
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"bfi" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bfj" = (
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"bfk" = (
-/mob/living/simple_animal/kiwi,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"bfl" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bfm" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"bfn" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "cold loop to space"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"bfo" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bfp" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4
- },
-/obj/machinery/sparker/toxmix{
- pixel_x = 25
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bfq" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp_home";
- name = "fore bay 1";
- roundstart_template = /datum/map_template/shuttle/labour/cog;
- width = 9
- },
-/turf/open/space/basic,
-/area/space)
-"bfr" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#c1caff"
- },
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bfs" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- freq = 1400;
- location = "QM #1"
- },
-/mob/living/simple_animal/bot/mulebot{
- beacon_freq = 1400;
- home_destination = "QM #1";
- suffix = "#1"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bft" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/hallway/primary/central)
-"bfu" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/gateway)
-"bfv" = (
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"bfw" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- dir = 8;
- name = "Station Intercom (Common)";
- pixel_x = 28
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"bfx" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"bfy" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"bfz" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bfA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge Access";
- req_access_txt = "19"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"bfB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Chapel Morgue";
- req_access_txt = "22;27"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bfC" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"bfD" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bfE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 5;
- id = "mail"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bfF" = (
-/obj/machinery/space_heater,
-/obj/structure/sign/poster/official/no_erp{
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness/cogpool)
-"bfG" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bfH" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/button/crematorium{
- id = "foo";
- pixel_x = 8;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bfI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/highcap/fifteen_k{
- areastring = "/area/engine/storage_shared";
- dir = 1;
- name = "Electrical Substation APC";
- pixel_y = 26
- },
-/turf/open/floor/plating,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"bfJ" = (
-/turf/open/floor/wood,
-/area/crew_quarters/fitness/cogpool)
-"bfK" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/candle_box{
- pixel_x = -11;
- pixel_y = 5
- },
-/obj/item/reagent_containers/food/drinks/bottle/holywater,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/item/paper/fluff/cogstation/letter_chap{
- pixel_x = 10;
- pixel_y = 2
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"bfL" = (
-/obj/structure/table/wood,
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"bfM" = (
-/obj/machinery/light/small{
- dir = 4;
- light_color = "#d8b1b1"
- },
-/obj/structure/bedsheetbin/towel,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness/cogpool)
-"bfN" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bfO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Jazz Lounge"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bfP" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bfQ" = (
-/obj/machinery/light/small,
-/obj/item/candle,
-/obj/item/trash/candle,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bfR" = (
-/obj/effect/turf_decal/loading_area{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bfS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bfT" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/chapel/office)
-"bfU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bfV" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/main)
-"bfW" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bfX" = (
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bfY" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- freq = 1400;
- location = "QM #2"
- },
-/mob/living/simple_animal/bot/mulebot{
- home_destination = "QM #2";
- suffix = "#2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bfZ" = (
-/obj/effect/turf_decal/delivery,
-/obj/effect/landmark/start/cargo_technician,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bga" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/highcap/five_k{
- areastring = "/area/hallway/primary/aft";
- dir = 1;
- name = "Aft Primary Hallway APC";
- pixel_x = 1;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bgb" = (
-/obj/structure/disposalpipe/sorting/mail{
- sortType = 30
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bgc" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/sign/directions/command{
- dir = 8;
- pixel_x = -32;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bgd" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"bge" = (
-/turf/closed/wall/r_wall,
-/area/storage/primary)
-"bgf" = (
-/turf/closed/wall,
-/area/quartermaster/warehouse)
-"bgg" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bgh" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 6
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bgi" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space)
-"bgj" = (
-/obj/structure/table,
-/obj/item/weldingtool/mini,
-/obj/item/light/tube,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bgk" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 4;
- id = "mail"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bgl" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/multitool,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bgm" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bgn" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bgo" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/chapel/main)
-"bgp" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"bgq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bgr" = (
-/obj/structure/table/wood,
-/obj/item/clothing/head/helmet/skull,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"bgs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bgt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bgu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bgv" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bgw" = (
-/turf/open/floor/engine,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bgx" = (
-/obj/structure/table/glass,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bgy" = (
-/obj/structure/closet,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/courtroom/jury";
- dir = 4;
- name = "Jury Room APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom/jury)
-"bgz" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bgA" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bgB" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/lightreplacer,
-/obj/item/lightreplacer,
-/obj/item/stack/rods/fifty,
-/obj/item/stack/rods/fifty,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bgC" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bgD" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#c1caff"
- },
-/obj/item/target,
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"bgE" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bgF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Port Central Maintenance";
- req_one_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bgG" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"bgH" = (
-/obj/machinery/pipedispenser,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bgI" = (
-/obj/machinery/pipedispenser/disposal,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bgJ" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"bgK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bgL" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bgM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bgN" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Port Central Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bgO" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/wrench,
-/obj/item/pipe_dispenser,
-/mob/living/simple_animal/sloth/paperwork,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bgP" = (
-/obj/item/analyzer,
-/obj/item/caution,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bgQ" = (
-/turf/closed/wall,
-/area/quartermaster/qm)
-"bgR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/closed/wall/mineral/wood,
-/area/crew_quarters/fitness/cogpool)
-"bgS" = (
-/obj/machinery/computer/bounty,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bgT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bgU" = (
-/obj/machinery/computer/cargo,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bgV" = (
-/turf/closed/wall/r_wall,
-/area/quartermaster/storage)
-"bgW" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/hor)
-"bgX" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
-"bgY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/status_display,
-/turf/closed/wall/r_wall,
-/area/hallway/primary/central)
-"bgZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bha" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness/cogpool)
-"bhb" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bhc" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness/cogpool)
-"bhd" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bhe" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bhf" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bhg" = (
-/obj/structure/chair/stool,
-/obj/machinery/camera{
- c_tag = "Pool - Sauna";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness/cogpool)
-"bhh" = (
-/obj/machinery/status_display,
-/turf/closed/wall/r_wall,
-/area/security/courtroom)
-"bhi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/head/cone,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bhj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Kitchen";
- req_access_txt = "28"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bhk" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bhl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/closed/wall/mineral/wood,
-/area/crew_quarters/fitness/cogpool)
-"bhm" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bhn" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bho" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/storage/belt/utility,
-/obj/item/storage/belt/utility,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bhp" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bhq" = (
-/obj/structure/chair/sofa/right,
-/obj/item/instrument/recorder,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bhr" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bhs" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bht" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"bhu" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/recharge_station,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bhv" = (
-/obj/structure/chair/sofa/left,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bhw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/contraband/cc64k_ad{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bhx" = (
-/obj/machinery/vending/coffee,
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"bhy" = (
-/obj/structure/closet/crate/science,
-/obj/item/stack/sheet/metal/ten,
-/obj/item/stack/sheet/glass/five,
-/obj/item/stack/rods/twentyfive,
-/obj/item/target/syndicate,
-/obj/item/target/alien,
-/obj/item/target,
-/obj/item/target/clown,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bhz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"bhA" = (
-/obj/item/stack/cable_coil/red,
-/obj/item/multitool,
-/obj/item/wrench,
-/obj/item/stack/sheet/metal/five{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/paper/fluff/cogstation/letter_arrd,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bhB" = (
-/obj/structure/table/wood,
-/obj/item/stack/packageWrap,
-/obj/item/paper/fluff/cogstation/bsrb,
-/obj/item/paper/fluff/cogstation/survey{
- pixel_x = -4;
- pixel_y = 2
- },
-/turf/open/floor/carpet/royalblue,
-/area/bridge)
-"bhC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bhD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Chapel Air Hookup";
- req_one_access_txt = "12;22"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bhE" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bhF" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bhG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bhH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bhI" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal/incinerator)
-"bhJ" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bhK" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bhL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Waste Disposal";
- req_one_access_txt = "12;50"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bhM" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bhN" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/kirbyplants/dead,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bhO" = (
-/obj/structure/chair/sofa/right,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bhP" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bhQ" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bhR" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/item/kirbyplants{
- icon_state = "plant-21";
- pixel_y = 3
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"bhS" = (
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "Port Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bhT" = (
-/obj/structure/sign/departments/engineering,
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"bhU" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/janitor)
-"bhV" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/pen/blue{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/pen/red{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"bhW" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"bhX" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bhY" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bhZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bia" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bib" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bic" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/item/radio/intercom{
- dir = 8;
- name = "Station Intercom (Common)";
- pixel_x = -28
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bid" = (
-/obj/structure/chair/sofa/left,
-/mob/living/simple_animal/pet/cat/Proc,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bie" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bif" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"big" = (
-/turf/closed/wall,
-/area/science/circuit)
-"bih" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor{
- dir = 1;
- id = "mail"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bii" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/matches,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bij" = (
-/obj/effect/turf_decal/stripes/end{
- dir = 8
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bik" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"bil" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 6;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bim" = (
-/turf/open/space/basic,
-/area/space/nearstation)
-"bin" = (
-/obj/machinery/computer/mecha{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"bio" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bip" = (
-/obj/effect/landmark/start/quartermaster,
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"biq" = (
-/obj/structure/closet/secure_closet/hop,
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/item/clothing/under/rank/civilian/head_of_personnel/suit,
-/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt{
- name = "head of personnel's suitskirt"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"bir" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bis" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bit" = (
-/obj/machinery/light,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"biu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"biv" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"biw" = (
-/obj/machinery/computer/cargo{
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/button/door{
- id = "QMLoadDoor";
- layer = 4;
- name = "Cargo Loading Doors";
- pixel_x = 24;
- pixel_y = 6
- },
-/obj/machinery/button/door{
- id = "QMUnloadDoor";
- layer = 4;
- name = "Cargo Unloading Doors";
- pixel_x = 24;
- pixel_y = -6
- },
-/obj/machinery/camera{
- c_tag = "Supply - Cargo Bay";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bix" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Courtroom"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"biy" = (
-/obj/machinery/vending/clothing,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"biz" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"biA" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"biB" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/security/telescreen/rd,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"biC" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"biD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"biE" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"biF" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_y = -28
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"biG" = (
-/obj/structure/displaycase/labcage,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Research Director's Office - Starboard";
- network = list("ss13","rd")
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"biH" = (
-/obj/machinery/light/small,
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"biI" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/item/kirbyplants{
- icon_state = "plant-20";
- pixel_y = 3
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"biJ" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"biK" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"biL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/closed/wall,
-/area/crew_quarters/heads/chief)
-"biM" = (
-/obj/machinery/vending/assist,
-/obj/effect/turf_decal/bot,
-/obj/structure/sign/poster/official/foam_force_ad{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"biN" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "recycler"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"biO" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"biP" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"biQ" = (
-/turf/closed/wall,
-/area/crew_quarters/heads/chief)
-"biR" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "CEPrivacy";
- name = "CE Privacy Shutters"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
-"biS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"biT" = (
-/obj/machinery/pipedispenser,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"biU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"biV" = (
-/turf/closed/wall,
-/area/storage/primary)
-"biW" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"biX" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"biY" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"biZ" = (
-/turf/closed/wall/r_wall,
-/area/quartermaster/office)
-"bja" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bjb" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/wrench,
-/obj/item/t_scanner,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bjc" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/stack/sheet/plasteel/twenty,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bjd" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bje" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjf" = (
-/obj/machinery/pipedispenser/disposal/transit_tube,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bjg" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "E.V.A. Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bji" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjj" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjk" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bjl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall/r_wall,
-/area/quartermaster/office)
-"bjm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bjn" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/supply)
-"bjo" = (
-/obj/machinery/rnd/production/techfab/department/cargo,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bjp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bjq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/conveyor{
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bjr" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/vacuum/external,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bjs" = (
-/obj/machinery/computer/robotics{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"bjt" = (
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"bju" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/radio/intercom{
- frequency = 1359;
- name = "Station Intercom (Security)";
- pixel_y = -28
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"bjv" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/security/courtroom/jury)
-"bjw" = (
-/obj/item/storage/secure/safe{
- pixel_x = 4;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bjx" = (
-/obj/structure/table/optable,
-/obj/effect/turf_decal/bot,
-/obj/item/defibrillator/loaded,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bjy" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bjz" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bjA" = (
-/obj/machinery/camera{
- c_tag = "EVA Maintenace - Fore";
- network = list("ss13","rd")
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bjB" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/security/brig)
-"bjC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Jury Room"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/courtroom/jury)
-"bjD" = (
-/turf/closed/wall/r_wall,
-/area/security/courtroom/jury)
-"bjE" = (
-/obj/structure/table,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 29
- },
-/obj/item/cigbutt/cigarbutt{
- pixel_x = 5;
- pixel_y = -1
- },
-/obj/item/phone{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics - Control Room"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/paper/guides/cogstation/letter_atmos,
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/engine/atmos)
-"bjF" = (
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/aft";
- dir = 8;
- name = "Head of Personnel APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"bjG" = (
-/obj/structure/rack,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjH" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bjI" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bjJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -28
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"bjK" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bjL" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/fragile,
-/obj/item/clothing/head/helmet/space/fragile,
-/obj/item/tank/internals/air,
-/obj/item/flashlight,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/machinery/camera{
- c_tag = "Pool Maintenance";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"bjM" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Atmospherics Storage";
- req_one_access_txt = "24;31"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bjN" = (
-/obj/machinery/vending/autodrobe,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjO" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/item/instrument/piano_synth,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bjP" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjQ" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/assistant/override,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjR" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjS" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/bot,
-/obj/structure/sign/poster/official/cohiba_robusto_ad{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bjT" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"bjU" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjV" = (
-/obj/structure/closet{
- name = "Evidence Closet 5"
- },
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"bjW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bjX" = (
-/obj/structure/rack,
-/obj/machinery/button/door{
- id = "marketdoor";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bjY" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bjZ" = (
-/obj/structure/window/reinforced,
-/obj/machinery/shower{
- name = "emergency shower";
- pixel_y = 12
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/westright{
- name = "Emergency Shower"
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bka" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bkb" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor{
- dir = 9;
- id = "mail"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bkc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light,
-/obj/machinery/conveyor_switch/oneway{
- id = "DeliveryConveyer"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bkd" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 8;
- id = "mail"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bke" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=sec1";
- location = "bridge2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bkf" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bkg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/mineral/stacking_unit_console{
- machinedir = 2
- },
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bkh" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bki" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bkj" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor_switch/oneway{
- id = "mail"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bkk" = (
-/obj/machinery/autolathe,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bkl" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/fragile,
-/obj/item/clothing/head/helmet/space/fragile,
-/obj/item/tank/internals/air,
-/obj/item/flashlight,
-/obj/item/storage/belt/utility,
-/obj/item/extinguisher,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bkm" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Supply - Delivery Office Fore";
- network = list("ss13","rd")
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bkn" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bko" = (
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"bkp" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "QMLoad"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bkq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/machinery/conveyor/inverted{
- dir = 9;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bkr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoadDoor";
- name = "Cargo Loading Door"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bks" = (
-/obj/structure/plasticflaps,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bkt" = (
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoadDoor";
- name = "Cargo Loading Door"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bku" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bkv" = (
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bkw" = (
-/obj/structure/bookcase/random/fiction,
-/obj/effect/spawner/lootdrop/gambling,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bkx" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bky" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/research_director,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"bkz" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bkA" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Bridge - Starboard Quarter";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"bkB" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bkC" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "capblast";
- name = "blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
-"bkD" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "CEPrivacy";
- name = "CE Privacy Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
-"bkE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bkF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"bkG" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/closet/crate/engineering,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/item/rcl/pre_loaded,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/clothing/glasses/meson,
-/obj/item/cartridge/atmos,
-/obj/item/cartridge/engineering,
-/obj/item/cartridge/engineering,
-/obj/item/cartridge/engineering,
-/obj/machinery/camera{
- c_tag = "Chief Engineer's Office";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bkH" = (
-/obj/machinery/computer/atmos_control{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/checker,
-/area/engine/atmos)
-"bkI" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/storage/primary)
-"bkJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"bkK" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sign/departments/security{
- pixel_x = -32
- },
-/obj/item/cigbutt,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bkL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bkM" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bkN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bkO" = (
-/obj/machinery/vending/kink,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bkP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bkQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bkR" = (
-/obj/machinery/camera{
- c_tag = "EVA Maintenance - Aft";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bkS" = (
-/obj/machinery/vending/sustenance,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bkT" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"bkU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bkV" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bkW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- name = "Pool Exterior Access";
- req_access_txt = "13"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"bkX" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bkY" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/crate/engineering,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bkZ" = (
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"bla" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"blb" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"blc" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bld" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"ble" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/airlock/external{
- name = "Cargo Freighter Dock";
- req_access_txt = "31"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"blf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel's Office";
- req_access_txt = "57"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/hop)
-"blg" = (
-/obj/effect/turf_decal/caution/stand_clear,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"blh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "Cargo Freighter Dock";
- req_access_txt = "31"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bli" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blj" = (
-/obj/structure/sign/warning/docking,
-/turf/closed/wall/r_wall,
-/area/space/nearstation)
-"blk" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bll" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blm" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bln" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blo" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blp" = (
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/exit)
-"blq" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/vending/wardrobe/engi_wardrobe,
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"blr" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bls" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/sign/poster/official/ion_rifle{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"blt" = (
-/obj/machinery/computer/card/minor/ce{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"blu" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"blv" = (
-/obj/machinery/computer/operating,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"blw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"blx" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bly" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"blz" = (
-/obj/machinery/computer/atmos_control{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/engine/atmos)
-"blA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"blB" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/fitness/cogpool)
-"blE" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blF" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blG" = (
-/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/mixing)
-"blH" = (
-/obj/structure/chair,
-/obj/machinery/button/massdriver{
- id = "toxinsdriver";
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"blI" = (
-/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/mixing)
-"blJ" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blK" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "marketdoor"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blL" = (
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"blM" = (
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"blN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"blO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"blP" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/rust,
-/area/maintenance/department/chapel)
-"blQ" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/northleft{
- name = "Delivery Office";
- req_one_access_txt = "31;48"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"blR" = (
-/obj/machinery/computer/bounty{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"blS" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/structure/chair,
-/obj/effect/landmark/start/cargo_technician,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"blT" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"blU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/closet/cardboard,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"blV" = (
-/obj/machinery/computer/cargo{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"blW" = (
-/obj/structure/table,
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/crowbar,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"blX" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"blY" = (
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"blZ" = (
-/obj/machinery/conveyor_switch/oneway{
- dir = 8;
- id = "QMUnload"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bma" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/landmark/start/assistant/override,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bmb" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
-"bmc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Security's Office";
- req_one_access_txt = "58"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/hos)
-"bmd" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start/research_director,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"bme" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bmf" = (
-/obj/structure/sign/departments/evac,
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/exit)
-"bmg" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmh" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmi" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmj" = (
-/obj/machinery/vending/wardrobe/cap_wardrobe,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/heads/captain)
-"bmk" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/dice/d6,
-/obj/machinery/camera{
- c_tag = "Jazz Lounge";
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bml" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bmm" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bmn" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmo" = (
-/turf/closed/wall/rust,
-/area/maintenance/department/chapel)
-"bmp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bmq" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=court";
- location = "bridge1"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmr" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bms" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/barthpot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bmt" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bmu" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bmv" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bmw" = (
-/obj/machinery/suit_storage_unit/ce,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bmx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bmy" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmz" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bmA" = (
-/obj/item/stack/tile/plasteel{
- pixel_x = 10;
- pixel_y = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/hallway/secondary/civilian)
-"bmB" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bmC" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmD" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/gateway)
-"bmF" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/closed/wall,
-/area/crew_quarters/fitness/cogpool)
-"bmG" = (
-/turf/open/floor/engine,
-/area/gateway)
-"bmH" = (
-/obj/machinery/computer/upload/borg{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bmI" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/chapel/office";
- dir = 4;
- name = "Chapel Office APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bmJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"bmK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/fitness/cogpool)
-"bmL" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bmM" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"bmN" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Waste Disposal Maintenance";
- req_one_access_txt = "12;50"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bmO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/lounge/jazz)
-"bmP" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/departments/engineering{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bmQ" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Engineering Foyer - Starboard";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bmR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Teleport Access";
- req_one_access_txt = "17;19"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"bmS" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bmT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"bmU" = (
-/obj/structure/table/wood,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/item/instrument/saxophone,
-/obj/item/reagent_containers/food/drinks/bottle/vermouth,
-/obj/item/clothing/glasses/sunglasses,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bmV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bmW" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bmX" = (
-/obj/structure/table,
-/obj/item/folder/yellow{
- pixel_y = 4
- },
-/obj/item/pen{
- pixel_y = 4
- },
-/obj/item/clothing/gloves/color/latex{
- pixel_y = 4
- },
-/obj/item/clothing/mask/surgical{
- pixel_y = 4
- },
-/obj/item/healthanalyzer,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/item/paper/guides/cogstation/cdn_chap,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bmY" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bmZ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bna" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnb" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bnc" = (
-/obj/structure/sign/directions/command{
- dir = 1;
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_x = -32;
- pixel_y = 40
- },
-/obj/structure/sign/directions/science{
- pixel_x = -32;
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnd" = (
-/obj/structure/table/wood,
-/obj/item/storage/photo_album,
-/obj/item/storage/box/matches,
-/obj/item/storage/fancy/cigarettes/cigpack_robust,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bne" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bnf" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bng" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "recycler"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bnh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/poddoor{
- id = "DeliveryDoor";
- name = "Delivery Door"
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bni" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/clipboard,
-/obj/item/stamp,
-/obj/item/stamp/denied{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/pen/red,
-/obj/item/pen/blue{
- pixel_x = -5;
- pixel_y = -3
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bnj" = (
-/obj/structure/sign/warning/securearea{
- desc = "A warning sign which reads 'BOMB RANGE";
- name = "BOMB RANGE"
- },
-/turf/closed/wall,
-/area/science/test_area)
-"bnk" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bnl" = (
-/obj/machinery/gateway{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/gateway)
-"bnm" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bnn" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/door/window/southleft{
- name = "Cargo Desk";
- req_access_txt = "31"
- },
-/obj/item/folder,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bno" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bnp" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bnq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bnr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bns" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/department/eva)
-"bnt" = (
-/obj/machinery/camera{
- c_tag = "Electrical Substation";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"bnu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"bnv" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L1"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bnx" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L3"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bny" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/item/paper_bin,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/pen,
-/obj/item/wirecutters,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bnz" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L5"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnA" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L7"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bnC" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Cargo Freighter Dock";
- req_access_txt = "31"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bnD" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L9"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/crowbar,
-/obj/structure/disposalpipe/junction/flip,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bnF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bnG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"bnH" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bnI" = (
-/obj/structure/bed,
-/obj/effect/landmark/start/head_of_personnel,
-/obj/item/bedsheet/hop,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"bnJ" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bnK" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"bnL" = (
-/obj/item/beacon,
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"bnM" = (
-/obj/effect/turf_decal/delivery,
-/obj/item/grown/bananapeel,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bnN" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bnO" = (
-/obj/machinery/status_display,
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/exit)
-"bnP" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L11"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnQ" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/on,
-/turf/closed/wall/r_wall,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bnR" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L13"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnS" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bnT" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/fitness/cogpool)
-"bnU" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/fragile,
-/obj/item/clothing/head/helmet/space/fragile,
-/obj/item/tank/internals/air,
-/obj/item/wrench,
-/obj/item/flashlight,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bnV" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
-"bnW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"bnX" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/closet/secure_closet/security/cargo,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"bnY" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"bnZ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/pen/blue,
-/obj/machinery/camera{
- c_tag = "Customs - Fore";
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "HoPFore";
- name = "HoP Fore Desk Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"boa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 5
- },
-/turf/closed/wall,
-/area/crew_quarters/heads/chief)
-"bob" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/heads/chief)
-"boc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 10
- },
-/turf/closed/wall,
-/area/crew_quarters/heads/chief)
-"bod" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/southleft{
- name = "Primary Tool Storage Desk";
- req_access_txt = "11"
- },
-/obj/item/folder/yellow,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"boe" = (
-/obj/machinery/door/airlock/vault{
- name = "Vault Door";
- req_access_txt = "53"
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/nuke_storage)
-"bof" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Pool Exterior Access";
- req_access_txt = "13"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness/cogpool)
-"bog" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"boh" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"boi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/fitness/cogpool)
-"boj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bok" = (
-/obj/structure/table/wood,
-/obj/item/paicard,
-/obj/item/toy/sword,
-/obj/item/toy/figure/assistant,
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bol" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"bom" = (
-/obj/structure/flora/ausbushes/leafybush,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"bon" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"boo" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"bop" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/door/window/eastleft{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"boq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bor" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bos" = (
-/obj/structure/table,
-/obj/item/stack/sheet/cardboard/fifty,
-/obj/item/stack/wrapping_paper,
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/glass,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bot" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bou" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bov" = (
-/obj/effect/turf_decal/loading_area{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bow" = (
-/obj/effect/turf_decal/stripes/end{
- dir = 8
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMUnload"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"box" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"boy" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"boz" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"boA" = (
-/turf/closed/wall,
-/area/security/detectives_office)
-"boB" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMUnload"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"boC" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/sign/departments/cargo{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"boD" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMUnload"
- },
-/obj/machinery/door/poddoor{
- id = "QMUnloadDoor";
- name = "Cargo Unloading Door"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"boE" = (
-/obj/structure/plasticflaps,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMUnload"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"boF" = (
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMUnload"
- },
-/obj/machinery/door/poddoor{
- id = "QMUnloadDoor";
- name = "Cargo Unloading Door"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"boG" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/weldingtool,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/structure/sign/departments/engineering{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"boH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"boI" = (
-/turf/closed/wall/r_wall,
-/area/quartermaster/miningoffice)
-"boJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/obj/machinery/computer/security/telescreen/toxins{
- dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"boK" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
-"boL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"boM" = (
-/obj/machinery/mineral/ore_redemption{
- input_dir = 4;
- output_dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"boN" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"boO" = (
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/item/storage/box/drinkingglasses{
- pixel_y = 4
- },
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/crew_quarters/bar)
-"boP" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"boQ" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"boR" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"boS" = (
-/obj/structure/sign/mining,
-/turf/closed/wall/r_wall,
-/area/quartermaster/miningoffice)
-"boT" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"boU" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"boV" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"boW" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"boX" = (
-/obj/item/beacon,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"boY" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"boZ" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bpa" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/door/window/westleft{
- name = "Treatment Center";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bpb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bpc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bpd" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bpe" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/door/window/eastright{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bpf" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bpg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bph" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bpi" = (
-/obj/structure/flora/junglebush/b,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"bpj" = (
-/obj/structure/flora/junglebush,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"bpk" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/landmark/start/shaft_miner,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bpl" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/autolathe/secure{
- name = "public autolathe"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bpm" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/item/extinguisher,
-/obj/item/crowbar,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bpn" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpo" = (
-/obj/machinery/holopad,
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"bpp" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bpq" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"bpr" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bps" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/lounge/jazz";
- name = "Jazz Lounge APC";
- pixel_y = -26
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bpt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bpu" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start/shaft_miner,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bpv" = (
-/turf/closed/wall/r_wall,
-/area/engine/break_room)
-"bpw" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L6"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpx" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpy" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/landmark/observer_start,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpz" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bpA" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bpB" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bpC" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L10"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpD" = (
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bpE" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bpF" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L12"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpG" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L14"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bpH" = (
-/obj/machinery/jukebox,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bpI" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bpJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/lounge/jazz)
-"bpK" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"bpL" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/closed/wall/r_wall,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bpM" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bpN" = (
-/obj/structure/grille,
-/obj/machinery/power/terminal,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bpO" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bpP" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bpQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bpR" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bpS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- name = "Security RC";
- pixel_y = -32
- },
-/turf/open/floor/carpet/red,
-/area/security/brig)
-"bpT" = (
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/grass,
-/area/hallway/secondary/exit)
-"bpU" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"bpV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos{
- name = "Aft Air Hookup";
- req_access_txt = "12;24"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bpW" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/security/brig)
-"bpX" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/sign/poster/official/obey{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"bpY" = (
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bpZ" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"bqa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bqb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/civilian)
-"bqc" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/medbay/lobby)
-"bqd" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqe" = (
-/obj/structure/sign/departments/medbay/alt,
-/turf/closed/wall,
-/area/medical/medbay/lobby)
-"bqf" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "disposal"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bqg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "disposal"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bqh" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"bqi" = (
-/obj/machinery/button/door{
- id = "HoPFore";
- name = "Fore Shutters";
- pixel_x = -24;
- pixel_y = 24;
- req_access_txt = "57"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bqj" = (
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bql" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/hallway/secondary/civilian)
-"bqm" = (
-/turf/closed/wall,
-/area/medical/medbay/lobby)
-"bqn" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqo" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bqp" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bqq" = (
-/obj/machinery/chem_master,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/camera{
- c_tag = "Medbay - Chemistry Lab";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"bqr" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bqs" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bqt" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/suit/apron/surgical,
-/obj/item/clothing/mask/surgical,
-/obj/item/healthanalyzer,
-/obj/item/clothing/neck/stethoscope,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bqu" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Waste Disposal Maintenance";
- req_one_access_txt = "12;50"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bqv" = (
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"bqw" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "EngiLockdown";
- name = "Engineering Emergency Lockdown"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/camera{
- c_tag = "Engineering - Entrance";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bqx" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bqy" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/camera{
- c_tag = "Supply - Mining Office";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bqz" = (
-/turf/closed/wall,
-/area/medical/chemistry)
-"bqA" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqB" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Library Access"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/library)
-"bqC" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bqD" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bqE" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bqF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "E.V.A. Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bqG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bqH" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bqI" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bqJ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/obj/machinery/airlock_sensor/incinerator_toxmix{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/engine,
-/area/science/mixing)
-"bqK" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqL" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bqM" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/item/storage/pill_bottle/dice,
-/obj/item/toy/cards/deck,
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bqN" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bqO" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bqP" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bqQ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/hallway/secondary/entry)
-"bqR" = (
-/obj/machinery/computer/operating{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bqS" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bqT" = (
-/obj/machinery/computer/crew,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/window/reinforced/spawner/north,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bqU" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bqV" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bqW" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bqX" = (
-/turf/closed/wall/mineral/titanium/nosmooth,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bqY" = (
-/obj/structure/sign/directions/medical{
- pixel_x = -32;
- pixel_y = -24
- },
-/obj/structure/sign/directions/evac{
- pixel_x = -32;
- pixel_y = -32
- },
-/obj/structure/sign/directions/supply{
- pixel_x = -32;
- pixel_y = -40
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqZ" = (
-/obj/machinery/mineral/equipment_vendor,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bra" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"brb" = (
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/dark,
-/area/science/server{
- name = "Computer Core"
- })
-"brc" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"brd" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bre" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/central)
-"brf" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"brg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"brh" = (
-/obj/structure/sign/departments/custodian{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"bri" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/hallway/secondary/civilian)
-"brj" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Central Starboard Maintenance";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/civilian)
-"brk" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/vending/cola/random,
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"brl" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/item/paper_bin,
-/obj/item/reagent_containers/glass/bottle/epinephrine,
-/obj/item/reagent_containers/dropper,
-/obj/item/stamp/denied{
- pixel_x = -8;
- pixel_y = -2
- },
-/obj/item/stamp{
- pixel_x = -8;
- pixel_y = 2
- },
-/obj/structure/window/reinforced/spawner/north,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"brm" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"brn" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bro" = (
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"brp" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/machinery/smartfridge/disks,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"brq" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"brr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/warning{
- name = "\improper WARNING: MOVING MACHINERY";
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"brs" = (
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"brt" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/chapel/office)
-"bru" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"brv" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"brw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/gateway)
-"brx" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"bry" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"brz" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/power/apc{
- areastring = "/area/science/research";
- name = "Research Sector APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"brA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/poster/official/pda_ad600{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/lounge/jazz)
-"brB" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"brC" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"brD" = (
-/obj/structure/table,
-/obj/machinery/door/window/eastright{
- name = "Auxiliary Tool Storage Desk";
- req_access_txt = "12"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/folder,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"brE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"brF" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "chem1";
- name = "chem lab shutters"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"brG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"brH" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/chemistry)
-"brI" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Central Hall - Aft";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"brJ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/door/airlock/maintenance{
- name = "Chemistry Maintenance";
- req_access_txt = "5; 33"
- },
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"brK" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/chem_dispenser,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"brL" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"brM" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Merchant Plaza"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"brN" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"brO" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/effect/landmark/start/medical_doctor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"brP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"brQ" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"brR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Construction Area";
- req_access_txt = "31"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"brS" = (
-/obj/machinery/suit_storage_unit/open,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"brT" = (
-/obj/machinery/suit_storage_unit/open,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"brU" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/medical/medbay/lobby)
-"brV" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"brW" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock{
- name = "Chapel Maintenance";
- req_one_access_txt = "12;22;26;27;50"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"brX" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"brY" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/camera{
- c_tag = "Waste Disposal - Aft"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"brZ" = (
-/obj/item/kirbyplants{
- icon_state = "plant-02"
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"bsa" = (
-/obj/structure/table/glass,
-/obj/item/scalpel,
-/obj/item/storage/box/cups,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"bsb" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"bsc" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/bottle/ammonia,
-/obj/item/toy/figure/botanist{
- pixel_x = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bsd" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/item/clothing/accessory/armband/hydro{
- pixel_y = 4
- },
-/obj/item/clothing/accessory/armband/hydro{
- pixel_y = 4
- },
-/obj/item/clothing/accessory/armband/hydro{
- pixel_y = 4
- },
-/obj/item/clothing/suit/hooded/wintercoat/hydro{
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bse" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bsf" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/bed/dogbed/ian,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/sign/poster/official/love_ian{
- pixel_y = 32
- },
-/mob/living/simple_animal/pet/dog/corgi/Ian,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"bsg" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bsh" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- name = "Recycler Exterior Access";
- req_one_access_txt = "13;50"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bsi" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bsj" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/green,
-/obj/machinery/seed_extractor,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bsk" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bsl" = (
-/obj/machinery/status_display,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"bsm" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bsn" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/machinery/plantgenes{
- pixel_y = 6
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bso" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/storage/tools)
-"bsp" = (
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"bsq" = (
-/obj/structure/table,
-/obj/machinery/door/window/southleft{
- name = "Auxiliary Tool Storage Desk";
- req_access_txt = "12"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/book/manual/wiki/engineering_hacking,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"bsr" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/table,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = -6;
- pixel_y = 2
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"bss" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/item/hand_labeler{
- pixel_y = 8
- },
-/obj/item/storage/firstaid/regular,
-/obj/item/book/manual/wiki/medicine{
- pixel_x = -6
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bst" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bsu" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bsv" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/warning/vacuum/external,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bsw" = (
-/turf/open/floor/plasteel/stairs/left,
-/area/hydroponics)
-"bsx" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- name = "Recycler Exterior Access";
- req_one_access_txt = "13;50"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bsy" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bsz" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bsA" = (
-/turf/open/floor/plasteel/stairs/right,
-/area/hydroponics)
-"bsB" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bsC" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Hydroponics - Aft"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bsD" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bsE" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/grass,
-/area/hydroponics)
-"bsF" = (
-/obj/machinery/vending/hydronutrients,
-/turf/open/floor/grass,
-/area/hydroponics)
-"bsG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/sign/poster/contraband/borg_fancy_2{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/maintenance/aft)
-"bsH" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/syringes{
- pixel_y = 4
- },
-/turf/open/floor/grass,
-/area/hydroponics)
-"bsI" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bsJ" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 12;
- pixel_y = 8
- },
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 6;
- pixel_y = 4
- },
-/turf/open/floor/grass,
-/area/hydroponics)
-"bsK" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light,
-/turf/open/floor/grass,
-/area/hydroponics)
-"bsL" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/machinery/reagentgrinder{
- pixel_y = 8
- },
-/obj/item/storage/box/syringes,
-/obj/item/storage/box/beakers{
- pixel_x = -2;
- pixel_y = -2
- },
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"bsM" = (
-/turf/closed/wall,
-/area/science/robotics/lab)
-"bsN" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/cable_coil/random,
-/obj/item/grenade/chem_grenade,
-/obj/item/grenade/chem_grenade,
-/obj/item/grenade/chem_grenade,
-/obj/item/screwdriver{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"bsO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/civilian)
-"bsP" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/white/full,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"bsQ" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"bsR" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bsS" = (
-/obj/machinery/door/window/northleft{
- name = "Chapel Office";
- req_access_txt = "22"
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bsT" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bsU" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bsV" = (
-/turf/closed/wall,
-/area/maintenance/aft)
-"bsW" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark/start/chaplain,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"bsX" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bsY" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bsZ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bta" = (
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"btb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/computer/secure_data,
-/obj/machinery/requests_console{
- department = "Detective";
- departmentType = 5;
- name = "Detective's Office RC";
- pixel_y = 30
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"btc" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/central";
- dir = 1;
- name = "Custodial Closet APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"btd" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bte" = (
-/obj/structure/sign/warning/vacuum/external,
-/turf/closed/wall/r_wall,
-/area/quartermaster/miningoffice)
-"btf" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"btg" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bth" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/medical/medbay/lobby)
-"bti" = (
-/obj/machinery/door/window/eastleft{
- name = "Waiting Room"
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"btj" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"btk" = (
-/obj/structure/sign/poster/official/nanomichi_ad{
- pixel_x = 32
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"btl" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"btm" = (
-/obj/machinery/disposal/bin{
- name = "Chapel Mailbox"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/delivery/white,
-/obj/machinery/requests_console{
- department = "Chapel";
- departmentType = 2;
- name = "Chapel RC";
- pixel_x = -32
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"btn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"bto" = (
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"btp" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"btq" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"btr" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/valve/digital/on{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bts" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/light_construct/small{
- icon_state = "bulb-construct-stage1";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/maintenance/aft)
-"btt" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Civilian Wing Hallway - Aft";
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/civilian)
-"btu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/hallway/secondary/civilian)
-"btv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"btw" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/maintenance/department/eva)
-"btx" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bty" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"btz" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"btA" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"btB" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"btC" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"btD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"btE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Tech Storage";
- req_access_txt = "23"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"btF" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"btG" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"btH" = (
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"btI" = (
-/obj/structure/closet/secure_closet/brig{
- name = "Detainee Locker"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"btJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/civilian)
-"btK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Aft Maintenance";
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"btL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"btM" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen/fountain,
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"btN" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/structure/rack,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/item/stack/cable_coil/random,
-/obj/item/weldingtool,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"btO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"btP" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"btQ" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/techstorage/AI,
-/turf/open/floor/plating,
-/area/storage/tech)
-"btR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"btS" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"btT" = (
-/turf/closed/wall/r_wall,
-/area/router)
-"btU" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"btV" = (
-/obj/structure/sign/warning/securearea,
-/turf/closed/wall/r_wall,
-/area/storage/tech)
-"btW" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"btX" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"btY" = (
-/obj/machinery/door/window/eastright{
- name = "Waiting Room"
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"btZ" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/router)
-"bua" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/side,
-/area/science/robotics/lab)
-"bub" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"buc" = (
-/obj/structure/bed,
-/obj/item/clothing/glasses/sunglasses/blindfold,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"bud" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/conveyor{
- id = "router_off"
- },
-/turf/open/floor/plating,
-/area/router)
-"bue" = (
-/turf/closed/wall/r_wall,
-/area/router/eva)
-"buf" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/plasticflaps,
-/obj/machinery/door/window/northleft{
- name = "Showers";
- req_one_access_txt = "29;47"
- },
-/turf/open/floor/plasteel,
-/area/science/lab)
-"bug" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall,
-/area/chapel/office)
-"buh" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bui" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"buj" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"buk" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Routing Depot";
- req_one_access_txt = "10;31"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bul" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bum" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bun" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"buo" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bup" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"buq" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/router)
-"bur" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bus" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/mass_driver{
- dir = 1;
- id = "public_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router)
-"but" = (
-/turf/closed/wall/mineral/titanium/nosmooth,
-/area/hallway/primary/central)
-"buu" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"buv" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"buw" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bux" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"buy" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"buz" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start/cargo_technician,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"buA" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/medical/medbay/lobby)
-"buB" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Ferry Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"buC" = (
-/obj/structure/table/reinforced,
-/obj/item/integrated_circuit_printer,
-/obj/item/integrated_electronics/wirer,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"buD" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"buE" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/conveyor/auto{
- id = "router"
- },
-/turf/open/floor/plating,
-/area/router)
-"buF" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"buG" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"buH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"buI" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"buJ" = (
-/obj/item/beacon,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"buK" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"buL" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"buM" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/button/door{
- id = "capblast";
- name = "Window Blast Door Control";
- pixel_x = -6;
- pixel_y = -3;
- req_access_txt = "19"
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/heads/captain)
-"buN" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall/rust,
-/area/chapel/main)
-"buO" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "capblast";
- name = "blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
-"buP" = (
-/obj/item/trash/plate,
-/obj/item/lighter/greyscale,
-/obj/item/clothing/mask/cigarette/cigar/cohiba,
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"buQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Chapel Morgue";
- req_access_txt = "27"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"buR" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hop)
-"buS" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/cmo)
-"buT" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/structure/sign/poster/official/soft_cap_pop_art{
- pixel_x = -32
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"buU" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/chips{
- pixel_x = 3;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"buV" = (
-/obj/structure/rack,
-/obj/item/circuitboard/machine/telecomms/processor,
-/obj/item/circuitboard/machine/telecomms/bus,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"buW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/janitor)
-"buX" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/bartender,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"buY" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"buZ" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/soulstone/anybody/chaplain,
-/obj/item/organ/heart,
-/obj/item/book/granter/spell/smoke/lesser,
-/obj/item/nullrod,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"bva" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/closed/wall,
-/area/janitor)
-"bvb" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bvc" = (
-/obj/machinery/computer/cargo/request,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"bvd" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bve" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Construction Area";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/construction)
-"bvf" = (
-/obj/item/kirbyplants{
- icon_state = "plant-10"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"bvg" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/destTagger,
-/obj/effect/turf_decal/bot,
-/obj/machinery/requests_console{
- department = "EVA Router";
- name = "EVA Router RC";
- pixel_y = 28
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/router/eva)
-"bvh" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 28
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bvi" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bvj" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bvk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bvl" = (
-/obj/item/trash/plate,
-/obj/item/kitchen/fork,
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bvm" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"bvn" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bvo" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bvp" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"bvq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Kitchen";
- req_access_txt = "28"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bvr" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"bvs" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/department/chapel)
-"bvt" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bvu" = (
-/turf/closed/wall/r_wall,
-/area/chapel/office)
-"bvv" = (
-/turf/closed/wall/r_wall/rust,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"bvw" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"bvx" = (
-/obj/structure/grille,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bvy" = (
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bvz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/router/eva)
-"bvA" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/obj/effect/landmark/start/cook,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"bvB" = (
-/turf/closed/wall/r_wall/rust,
-/area/router)
-"bvC" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/mob/living/simple_animal/hostile/retaliate/goat{
- name = "Pete"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"bvD" = (
-/obj/machinery/camera{
- c_tag = "Bar - Starboard";
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bvE" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"bvF" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bvG" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bvH" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/bar)
-"bvI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/department/chapel)
-"bvJ" = (
-/obj/structure/chair/comfy/brown,
-/obj/effect/landmark/start/head_of_personnel,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"bvK" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bvL" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bvM" = (
-/obj/machinery/door/airlock/external/glass{
- name = "External Construction Access";
- req_one_access_txt = "10;31"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bvN" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/on{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/department/chapel)
-"bvO" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bvP" = (
-/obj/machinery/space_heater,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bvQ" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bvR" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bvS" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bvT" = (
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bvU" = (
-/obj/item/caution,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/warning/biohazard{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bvV" = (
-/obj/structure/table,
-/obj/machinery/light/small,
-/obj/item/storage/pill_bottle/epinephrine,
-/obj/item/wrench{
- pixel_x = -8
- },
-/obj/item/extinguisher{
- pixel_x = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bvW" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bvX" = (
-/obj/machinery/door/airlock/external{
- name = "External Construction Access";
- req_one_access_txt = "10;31"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bvY" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"bvZ" = (
-/obj/item/folder,
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bwa" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bwb" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Chapel Air Hookup";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bwc" = (
-/obj/machinery/computer/atmos_alert{
- dir = 8
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bwd" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bwe" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bwf" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bwg" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bwh" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/requests_console{
- department = "Routing Depot";
- name = "Routing Depot RC";
- pixel_y = 28
- },
-/obj/machinery/button/massdriver{
- id = "eva_in";
- name = "mass driver button (EVA)";
- pixel_x = -24
- },
-/obj/machinery/button/massdriver{
- id = "public_in";
- name = "mass driver button (Public)";
- pixel_x = -24;
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bwi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bwj" = (
-/obj/machinery/space_heater,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bwk" = (
-/obj/machinery/chem_master,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/maintenance/disposal)
-"bwl" = (
-/obj/structure/closet/secure_closet/security,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/sign/poster/official/safety_report{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"bwm" = (
-/obj/structure/sign/departments/science,
-/turf/closed/wall/r_wall,
-/area/gateway)
-"bwn" = (
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bwo" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/mob/living/simple_animal/cockroach,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bwp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bwq" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/conveyor{
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bwr" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bws" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/autolathe/secure{
- name = "public autolathe"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bwt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bwu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/trash/can,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bwv" = (
-/obj/machinery/disposal/bin{
- name = "Mass Driver"
- },
-/obj/structure/sign/warning/deathsposal{
- pixel_x = 32
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bww" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/structure/transit_tube/horizontal,
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bwx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/janitor)
-"bwy" = (
-/obj/machinery/vending/wardrobe/jani_wardrobe,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bwz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bwA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bwB" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/bot_assembly/medbot,
-/obj/item/clothing/head/hardhat{
- pixel_x = -2;
- pixel_y = 6;
- pressure_resistance = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bwC" = (
-/obj/structure/table,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/radio/off{
- pixel_x = -3;
- pixel_y = 1
- },
-/obj/item/storage/box/mousetraps,
-/obj/item/light/tube,
-/obj/item/radio/off{
- pixel_x = -3;
- pixel_y = 1
- },
-/obj/machinery/camera{
- c_tag = "Routing Depot"
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bwD" = (
-/obj/structure/table/reinforced,
-/obj/item/analyzer,
-/obj/item/wrench,
-/obj/item/screwdriver,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bwE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bwF" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bwG" = (
-/obj/item/cigbutt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bwH" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/item/storage/box/mre/menu2/safe,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bwI" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bwJ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"bwK" = (
-/obj/machinery/camera{
- c_tag = "Research - Gateway Chamber";
- network = list("ss13","rd")
- },
-/obj/machinery/gateway{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/gateway)
-"bwL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bwM" = (
-/obj/machinery/gateway{
- dir = 5
- },
-/turf/open/floor/engine,
-/area/gateway)
-"bwN" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Toxins Lab - Port";
- network = list("ss13","rd")
- },
-/obj/machinery/meter,
-/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bwO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bwP" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bwQ" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/conveyor{
- dir = 1;
- id = "router_off"
- },
-/turf/open/floor/plating,
-/area/router)
-"bwR" = (
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bwS" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/disposal/deliveryChute{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bwT" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bwU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bwV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bwW" = (
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bwX" = (
-/obj/machinery/conveyor{
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bwY" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bwZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/clothing/under/misc/mailman,
-/obj/item/clothing/head/mailman,
-/obj/item/wirecutters,
-/obj/item/stack/packageWrap,
-/turf/open/floor/plasteel,
-/area/router)
-"bxa" = (
-/obj/structure/frame/computer,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bxb" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera{
- c_tag = "Waste Disposal - Port";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bxc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bxd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bxe" = (
-/obj/item/stack/tile/plasteel{
- pixel_x = 6;
- pixel_y = 13
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bxf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- name = "EVA Router";
- req_access_txt = "19"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"bxg" = (
-/obj/machinery/light/small,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/stack/tile/plasteel{
- pixel_x = 8;
- pixel_y = 14
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bxh" = (
-/obj/machinery/disposal/bin{
- name = "Corpse Disposal"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/delivery/red,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bxi" = (
-/obj/structure/closet/l3closet/janitor,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/clothing/gloves/color/purple,
-/obj/item/clothing/gloves/color/purple,
-/obj/item/clothing/under/costume/maid,
-/obj/item/clothing/under/costume/maid,
-/obj/structure/sign/poster/official/bless_this_spess{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bxj" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/aft)
-"bxk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bxl" = (
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"bxm" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"bxn" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxo" = (
-/obj/machinery/door/airlock/external{
- name = "Telecommunications External Access";
- req_access_txt = "61"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bxp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bxq" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bxr" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/storage/box/lights/mixed,
-/obj/item/storage/box/lights/mixed,
-/obj/item/radio/off{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/restraints/legcuffs/beartrap,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bxs" = (
-/obj/item/storage/toolbox/mechanical/old,
-/obj/item/reagent_containers/food/snacks/chips{
- pixel_x = 3;
- pixel_y = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bxt" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Telecommunications External Access";
- req_access_txt = "61"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bxu" = (
-/obj/structure/rack,
-/obj/item/circuitboard/machine/telecomms/broadcaster,
-/obj/item/circuitboard/machine/telecomms/receiver,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxv" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxw" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/starboard/aft)
-"bxx" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxy" = (
-/obj/item/trash/candle,
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/disposal)
-"bxz" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/computer/station_alert,
-/obj/structure/sign/poster/official/safety_eye_protection{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/paper/guides/cogstation/letter_eng,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bxA" = (
-/obj/machinery/announcement_system,
-/turf/open/floor/plasteel/dark,
-/area/tcommsat/computer)
-"bxB" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/computer/message_monitor{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxC" = (
-/obj/structure/closet/emcloset/anchored,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"bxD" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/door/airlock/engineering{
- name = "Telecommunications Chamber";
- req_access_txt = "61"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxE" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 29
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bxG" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bxH" = (
-/turf/closed/wall,
-/area/storage/tech)
-"bxI" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxJ" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/suit/hooded/wintercoat/engineering,
-/obj/item/clothing/suit/hooded/wintercoat/engineering,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/shoes/winterboots,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxK" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/radio/off,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxL" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bxM" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"bxN" = (
-/obj/structure/rack,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/spawner/lootdrop/techstorage/command,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bxO" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bxP" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Central Starboard Exterior Access";
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bxQ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxR" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/conveyor_switch{
- id = "MiningConveyer"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bxS" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bxT" = (
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"bxU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bxV" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bxW" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxX" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxY" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bxZ" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"bya" = (
-/obj/machinery/computer/telecomms/monitor{
- dir = 1;
- network = "tcommsat"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"byb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/tcommsat/server)
-"byc" = (
-/obj/machinery/igniter/incinerator_toxmix,
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"byd" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen/fourcolor,
-/obj/item/pen/fountain{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/stamp/hop,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"bye" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"byf" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Telecommunications Mainframe";
- req_access_txt = "61"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plasteel,
-/area/tcommsat/server)
-"byg" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"byh" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"byi" = (
-/turf/closed/wall/r_wall,
-/area/tcommsat/server)
-"byj" = (
-/turf/open/floor/plasteel,
-/area/tcommsat/server)
-"byk" = (
-/obj/machinery/telecomms/message_server,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byl" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Telecommunications Mainframe";
- req_access_txt = "61"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/server)
-"bym" = (
-/obj/machinery/announcement_system,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byn" = (
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"byo" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/pen,
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/machinery/camera{
- c_tag = "Chapel Game Room";
- dir = 1
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"byp" = (
-/obj/machinery/telecomms/bus/preset_three,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byq" = (
-/obj/machinery/telecomms/receiver/preset_left,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byr" = (
-/obj/structure/table/wood,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/flashlight/lamp/green,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bys" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"byt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Central Starboard Exterior Access"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"byu" = (
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Central Starboard Exterior Access";
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"byv" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"byw" = (
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"byx" = (
-/obj/machinery/telecomms/processor/preset_three,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byy" = (
-/obj/machinery/telecomms/bus/preset_one,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byz" = (
-/obj/machinery/telecomms/receiver/preset_right,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byA" = (
-/obj/machinery/telecomms/processor/preset_one,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byB" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"byC" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"byD" = (
-/obj/machinery/camera{
- c_tag = "Medbay - Lobby";
- network = list("ss13","rd")
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"byE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/button/massdriver{
- id = "eva_out";
- pixel_x = 24;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"byF" = (
-/obj/structure/window/reinforced/spawner,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "EVA"
- },
-/turf/open/floor/plating,
-/area/router/eva)
-"byG" = (
-/obj/machinery/telecomms/server/presets/service,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byH" = (
-/obj/machinery/telecomms/server/presets/common,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byI" = (
-/obj/machinery/telecomms/hub/preset,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byJ" = (
-/obj/machinery/telecomms/server/presets/security,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byK" = (
-/obj/machinery/telecomms/server/presets/command,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byL" = (
-/obj/machinery/telecomms/server/presets/science,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"byM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Chapel Maintenance";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"byN" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/medical/morgue)
-"byO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/tile/plasteel{
- pixel_x = 3;
- pixel_y = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"byP" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"byQ" = (
-/turf/closed/wall,
-/area/medical/morgue)
-"byR" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"byS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"byT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"byU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"byV" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"byW" = (
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- sortType = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"byX" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"byY" = (
-/obj/vehicle/ridden/janicart,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/item/key/janitor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"byZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced/spawner,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/mass_driver{
- dir = 4;
- id = "eva_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router/eva)
-"bza" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bzb" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- name = "Ferry Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bzc" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/techstorage/security,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bzd" = (
-/turf/open/floor/plating,
-/area/storage/tech)
-"bze" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/mob/living/simple_animal/cockroach,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bzf" = (
-/obj/structure/janitorialcart,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 26
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bzg" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/janitor)
-"bzh" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bzi" = (
-/obj/item/cardboard_cutout,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bzj" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/assembly/flash,
-/obj/item/assembly/flash,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bzk" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bzl" = (
-/obj/structure/closet/secure_closet,
-/obj/effect/spawner/lootdrop/organ_spawner,
-/obj/effect/spawner/lootdrop/organ_spawner,
-/obj/effect/spawner/lootdrop/organ_spawner,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bzm" = (
-/obj/machinery/conveyor{
- dir = 5;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bzn" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bzo" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/fragile,
-/obj/item/clothing/head/helmet/space/fragile,
-/obj/item/tank/internals/air,
-/obj/item/flashlight,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bzp" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"bzq" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/sign/warning/pods{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bzr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 10
- },
-/obj/machinery/meter,
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"bzs" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bzt" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bzu" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "MiningConveyer"
- },
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningoffice)
-"bzv" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "MiningConveyer"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningoffice)
-"bzw" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/obj/effect/landmark/start/cargo_technician,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bzx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Interrogation Room";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"bzy" = (
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bzz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"bzA" = (
-/obj/machinery/power/apc{
- areastring = "/area/medical/chemistry";
- dir = 1;
- name = "Chemistry APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bzB" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bzC" = (
-/obj/structure/closet/toolcloset,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bzD" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "evablock";
- name = "EVA Router"
- },
-/turf/open/floor/plating,
-/area/router/eva)
-"bzE" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/conveyor{
- dir = 4;
- id = "router_off"
- },
-/turf/open/floor/plating,
-/area/router)
-"bzF" = (
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/conveyor{
- dir = 4;
- id = "router_off"
- },
-/turf/open/floor/plating,
-/area/router)
-"bzG" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bzH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bzI" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bzJ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bzK" = (
-/obj/machinery/disposal/bin{
- name = "Chapel Corpse Delivery"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/red/full,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bzL" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bzM" = (
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bzN" = (
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bzO" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "recycler";
- name = "Recycler Conveyor Control"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bzP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/router)
-"bzQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bzR" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bzS" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/healthanalyzer,
-/obj/item/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bzT" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/port/central";
- dir = 4;
- name = "Central Port Maintenance APC";
- pixel_x = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"bzU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 6
- },
-/obj/machinery/meter,
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"bzV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bzW" = (
-/obj/machinery/vending/assist,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bzX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Toxins Launch Room";
- req_access_txt = "7;8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bzY" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bzZ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/quartermaster/miningoffice)
-"bAa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bAb" = (
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"bAc" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"bAd" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bAe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bAf" = (
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"bAg" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"bAh" = (
-/obj/item/reagent_containers/food/condiment/pack/mustard{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/condiment/pack/ketchup{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = -5;
- pixel_y = 7
- },
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 1;
- pixel_y = 3
- },
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bAi" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bAj" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bAk" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Recycler";
- req_one_access_txt = "12;50"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bAl" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bAm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/cigbutt,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bAn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"bAo" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bAp" = (
-/obj/structure/bed,
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/item/bedsheet/purple,
-/obj/effect/landmark/start/janitor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bAq" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bAr" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bAs" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bAt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Fore Maintenance - Starboard";
- pixel_x = 22
- },
-/obj/structure/sign/warning{
- name = "\improper CONSTRUCTION AREA";
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bAu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bAv" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/structure/bed,
-/obj/item/bedsheet/qm,
-/obj/effect/landmark/start/quartermaster,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 28
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bAw" = (
-/obj/item/paper/fluff/bee_objectives,
-/obj/item/toy/plush/beeplushie,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"bAx" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bAy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bAz" = (
-/obj/machinery/gateway{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/gateway)
-"bAA" = (
-/obj/structure/lattice,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bAB" = (
-/obj/item/beacon,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bAC" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bAD" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/window/eastleft{
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bAE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "chem1";
- name = "Shutters Control Button";
- pixel_x = -8;
- pixel_y = 24;
- req_access_txt = "29"
- },
-/obj/effect/landmark/start/chemist,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bAF" = (
-/obj/machinery/gateway/centerstation,
-/turf/open/floor/engine,
-/area/gateway)
-"bAG" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bAH" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bAI" = (
-/obj/machinery/photocopier,
-/obj/machinery/requests_console{
- department = "Law Office";
- name = "Law Office RC";
- pixel_y = 32
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"bAJ" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/clothing/neck/stethoscope,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/stamp/cmo,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/heads/cmo";
- dir = 1;
- name = "Chief Medical Officer's Office APC";
- pixel_y = 24
- },
-/mob/living/simple_animal/pet/cat/Runtime,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"bAK" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bAL" = (
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: WASTE EJECTION";
- pixel_x = -32
- },
-/turf/open/space/basic,
-/area/space)
-"bAM" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bAN" = (
-/obj/machinery/gateway{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/gateway)
-"bAO" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bAP" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bAQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bAR" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Thermo-Electric Generator Room";
- req_access_txt = "10"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"bAS" = (
-/turf/closed/wall/r_wall/rust,
-/area/maintenance/disposal)
-"bAT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bAU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bAV" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bAW" = (
-/obj/structure/sign/poster/official/get_your_legs,
-/turf/closed/wall,
-/area/hallway/secondary/exit)
-"bAX" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/item/paper/fluff/cogstation/letter_cap{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/flashlight/lamp,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bAY" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/hallway/secondary/exit)
-"bAZ" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/chapel/main)
-"bBa" = (
-/obj/structure/sign/poster/official/help_others,
-/turf/closed/wall,
-/area/hallway/secondary/exit)
-"bBb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/grille/broken,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/chapel)
-"bBc" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 8
- },
-/area/hallway/secondary/exit)
-"bBd" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/popcorn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bBe" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/structure/sign/warning/pods{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bBf" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bBg" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bBh" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "recycler"
- },
-/obj/structure/sign/warning/vacuum{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bBi" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bBj" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/crew_quarters/heads/captain";
- dir = 4;
- name = "Captain's Quarters APC";
- pixel_x = 26
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/captain)
-"bBk" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bBl" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bBm" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 4
- },
-/area/hallway/secondary/exit)
-"bBn" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bBo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Thermo-Electric Generator";
- req_one_access_txt = "10;24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"bBp" = (
-/obj/machinery/conveyor/inverted{
- dir = 9;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bBq" = (
-/obj/machinery/recycler,
-/obj/machinery/conveyor{
- dir = 4;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bBr" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 4;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bBs" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bBt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bBu" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bBv" = (
-/turf/closed/wall,
-/area/router)
-"bBw" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/white/corner{
- dir = 4
- },
-/area/hallway/secondary/exit)
-"bBx" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/multitool,
-/obj/item/t_scanner,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bBy" = (
-/obj/machinery/recharge_station,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bBz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bBA" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/structure/ore_box,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bBB" = (
-/obj/machinery/conveyor/auto{
- id = "router"
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 1;
- sortType = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bBC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bBD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor{
- dir = 4;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bBE" = (
-/obj/structure/grille,
-/obj/machinery/power/terminal,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bBF" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bBG" = (
-/obj/machinery/conveyor/inverted{
- dir = 10;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bBH" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bBI" = (
-/obj/machinery/computer/shuttle/mining,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bBJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"bBK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/button/door{
- id = "recycleraccess";
- name = "Recycler Access Control";
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bBL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bBM" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bBN" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/mixing)
-"bBO" = (
-/turf/closed/wall/r_wall,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bBP" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/door/window/eastright{
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bBQ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/medbay/central)
-"bBR" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Computer Core APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bBS" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bBT" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bBU" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/structure/sign/departments/cargo{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bBV" = (
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bBW" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bBX" = (
-/obj/machinery/door/airlock/external{
- name = "Routing Depot";
- req_one_access_txt = "10;31"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bBY" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external{
- name = "EVA Router";
- req_access_txt = "19"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"bBZ" = (
-/turf/closed/wall,
-/area/hallway/secondary/exit)
-"bCa" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bCb" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"bCc" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"bCd" = (
-/obj/effect/landmark/start/captain,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bCe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Personnel's Desk";
- departmentType = 5;
- name = "Head of Personnel RC";
- pixel_y = -30
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"bCf" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/landmark/start/chemist,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bCg" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/landmark/start/chemist,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bCh" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"bCi" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bCj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bCk" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bCl" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/components/binary/valve/digital/on{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bCm" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/vacuum/external,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bCn" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bCo" = (
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bCp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bCq" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "recycler"
- },
-/obj/machinery/door/poddoor{
- id = "recycleraccess";
- name = "Recycler Access"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bCr" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bCs" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bCt" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/storage/box/engineer{
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"bCu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"bCv" = (
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bCw" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "eva"
- },
-/turf/open/floor/plating,
-/area/router/eva)
-"bCx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bCy" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced/spawner/north,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "eva"
- },
-/turf/open/floor/plating,
-/area/router/eva)
-"bCz" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/item/clothing/under/misc/overalls,
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bCA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bCB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bCC" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bCD" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 1;
- sortType = 29
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bCE" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "eva"
- },
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "evablock";
- name = "EVA Router"
- },
-/turf/open/floor/plating,
-/area/router/eva)
-"bCF" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
-"bCG" = (
-/obj/item/cigbutt,
-/obj/item/radio/intercom{
- frequency = 1359;
- name = "Station Intercom (Security)";
- pixel_x = -26
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bCH" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bCI" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bCJ" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"bCK" = (
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = -26
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bCL" = (
-/turf/closed/wall/rust,
-/area/security/detectives_office)
-"bCM" = (
-/turf/closed/wall/r_wall/rust,
-/area/security/detectives_office)
-"bCN" = (
-/obj/structure/filingcabinet,
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bCO" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bCP" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase,
-/obj/item/taperecorder,
-/obj/item/radio{
- pixel_x = -6
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bCQ" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bCR" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/mass_driver{
- dir = 8;
- id = "airbridge_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router)
-"bCS" = (
-/obj/structure/closet,
-/obj/machinery/camera{
- c_tag = "Central Plaza - Legal Desk";
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bCT" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/sorting/mail/flip,
-/obj/machinery/conveyor{
- dir = 8;
- id = "router_off"
- },
-/turf/open/floor/plating,
-/area/router)
-"bCU" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/maintenance/disposal)
-"bCV" = (
-/turf/open/floor/plating/airless,
-/area/maintenance/disposal)
-"bCW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Thermo-Electric Generator";
- req_one_access_txt = "10;24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"bCX" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/snack/random,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bCY" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/sign/warning/nosmoking{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bCZ" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "router_off"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bDa" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bDb" = (
-/mob/living/simple_animal/mouse/white{
- desc = "Wubba lubba dub dub.";
- name = "Rick"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bDc" = (
-/obj/machinery/vending/security,
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bDd" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bDe" = (
-/obj/machinery/disposal/bin{
- name = "Corpse Delivery"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/delivery/red,
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"bDf" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/techstorage/service,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bDg" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/techstorage/medical,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bDh" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/techstorage/rnd,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bDi" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock{
- name = "Service Hallway";
- req_one_access_txt = "25;26;28;35"
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"bDj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"bDk" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- sortType = 15
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"bDl" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bDm" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bDn" = (
-/obj/machinery/icecream_vat,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"bDo" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bDp" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"bDq" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"bDr" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"bDs" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"bDt" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"bDu" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/book/manual/wiki/barman_recipes,
-/obj/item/reagent_containers/rag,
-/obj/structure/table/wood/fancy,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bDv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"bDw" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "AIChamberShutter";
- name = "AI Chamber Shutters"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"bDx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDy" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bDz" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Service Hallway - Aft";
- pixel_x = 22
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDA" = (
-/turf/closed/wall/r_wall,
-/area/hallway/secondary/service)
-"bDB" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"bDC" = (
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 8;
- id = "router_off"
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/router)
-"bDE" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/food/snacks/store/cheesewheel,
-/obj/item/reagent_containers/food/snacks/grown/pineapple,
-/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,
-/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,
-/obj/item/reagent_containers/food/snacks/grown/tomato,
-/obj/item/reagent_containers/food/snacks/grown/tomato,
-/obj/item/reagent_containers/food/snacks/grown/bluecherries,
-/obj/item/reagent_containers/food/snacks/grown/citrus/lime,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDF" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDG" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDH" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDI" = (
-/obj/structure/closet/crate/freezer,
-/obj/effect/spawner/lootdrop/three_course_meal,
-/obj/item/reagent_containers/food/snacks/chocolatebar,
-/obj/item/reagent_containers/food/snacks/chocolatebar,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDJ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bDK" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"bDL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bDM" = (
-/obj/structure/table/reinforced,
-/obj/item/transfer_valve{
- pixel_x = 6
- },
-/obj/item/transfer_valve{
- pixel_x = 6
- },
-/obj/item/transfer_valve,
-/obj/item/transfer_valve,
-/obj/item/transfer_valve{
- pixel_x = -6
- },
-/obj/item/transfer_valve{
- pixel_x = -6
- },
-/obj/machinery/camera{
- c_tag = "Toxins Lab - Starboard";
- dir = 8;
- pixel_y = -22
- },
-/obj/item/radio/intercom{
- dir = 8;
- name = "Station Intercom (Common)";
- pixel_x = 28
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bDN" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bDO" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bDP" = (
-/obj/machinery/computer/message_monitor{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/circuit,
-/area/bridge)
-"bDQ" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"bDR" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"bDS" = (
-/turf/open/floor/plasteel/stairs,
-/area/crew_quarters/bar)
-"bDT" = (
-/obj/machinery/mecha_part_fabricator,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bDU" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "AIChamberShutter";
- name = "AI Chamber Shutters"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"bDV" = (
-/turf/open/floor/plasteel/stairs/left,
-/area/crew_quarters/bar)
-"bDW" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "AI Chamber";
- req_access_txt = "65"
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/ai)
-"bDX" = (
-/turf/open/floor/plasteel/stairs/right,
-/area/crew_quarters/bar)
-"bDY" = (
-/obj/structure/sign/barsign,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"bDZ" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 4;
- sortType = 26
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bEa" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"bEb" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"bEc" = (
-/obj/structure/table,
-/obj/item/radio/off{
- pixel_x = -3;
- pixel_y = 1
- },
-/obj/item/radio/off{
- pixel_x = 7;
- pixel_y = -3
- },
-/obj/item/radio/off{
- pixel_x = 4;
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/circuit,
-/area/bridge)
-"bEd" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bEe" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "router_off"
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bEf" = (
-/obj/structure/reagent_dispensers,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bEg" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"bEh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "router_off"
- },
-/turf/open/floor/plating,
-/area/router)
-"bEi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bEj" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/structure/closet/crate,
-/obj/machinery/camera{
- c_tag = "Waste Disposal - Starboard"
- },
-/obj/item/stack/tile/noslip/thirty,
-/obj/structure/sign/poster/official/ue_no{
- pixel_y = 32
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/disposal)
-"bEk" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bEl" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bEm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel's Office";
- req_access_txt = "57"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"bEn" = (
-/obj/machinery/computer/card{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 28
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
-"bEo" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bEp" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/solars/starboard/fore)
-"bEq" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bEr" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/locker";
- dir = 8;
- name = "Locker Room APC";
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bEs" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/storage/eva";
- dir = 4;
- name = "EVA APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"bEt" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"bEu" = (
-/obj/structure/sign/warning{
- name = "\improper CONSTRUCTION AREA";
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bEv" = (
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"bEw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Starboard Bow Solar Maintenance";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"bEx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor{
- dir = 8;
- id = "router_off"
- },
-/turf/open/floor/plating,
-/area/router)
-"bEy" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/stock_parts/cell/high/plus,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"bEz" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"bEA" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Starboard Bow Solar Maintenance";
- req_access_txt = "10"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
-"bEB" = (
-/obj/structure/rack,
-/obj/structure/sign/warning/electricshock{
- pixel_y = 32
- },
-/obj/item/radio/off{
- pixel_x = 7;
- pixel_y = 4
- },
-/obj/item/flashlight,
-/obj/item/crowbar/red,
-/obj/item/crowbar/red{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/radio/off{
- pixel_x = -8
- },
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/obj/machinery/camera{
- c_tag = "Starboard Bow Maintenance - Port";
- pixel_x = 22
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bEC" = (
-/obj/structure/table/glass,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bED" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bEE" = (
-/obj/structure/table,
-/obj/item/clothing/under/shorts/red,
-/obj/item/clothing/under/shorts/red,
-/obj/item/clothing/gloves/boxing{
- pixel_y = 8
- },
-/obj/item/clothing/gloves/boxing{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bEF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bEG" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bEH" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/kitchen/backroom)
-"bEI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bEJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bEK" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bEL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bEM" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bEN" = (
-/obj/machinery/computer/communications{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/camera{
- c_tag = "Bridge - Captain's Quarters";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Captain's Desk";
- departmentType = 5;
- name = "Captain RC";
- pixel_x = 30
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bEO" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bEP" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/structure/sign/poster/official/high_class_martini{
- pixel_x = -32
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"bEQ" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/disposal";
- dir = 8;
- name = "Waste Disposal APC";
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bER" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/newscaster{
- pixel_y = -28
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"bES" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"bET" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bEU" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bEV" = (
-/obj/item/radio/intercom{
- frequency = 1359;
- name = "Station Intercom (Security)";
- pixel_x = 26
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"bEW" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bEX" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"bEY" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bEZ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "AIChamberShutter";
- name = "AI Chamber Shutters"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"bFa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/router)
-"bFb" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/router)
-"bFc" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bFd" = (
-/obj/structure/closet/crate/trashcart,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bFe" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bFf" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/aiModule/supplied/oxygen{
- pixel_x = 2;
- pixel_y = 10
- },
-/obj/item/aiModule/supplied/quarantine{
- pixel_x = 1;
- pixel_y = 8
- },
-/obj/item/aiModule/zeroth/oneHuman{
- pixel_y = 4
- },
-/obj/effect/spawner/lootdrop/aimodule_harmful{
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/item/aiModule/supplied/protectStation{
- pixel_x = -2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bFg" = (
-/obj/effect/turf_decal/tile/brown,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bFh" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bFi" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bFj" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/circuit/telecomms,
-/area/science/xenobiology)
-"bFk" = (
-/turf/open/floor/circuit/telecomms,
-/area/science/xenobiology)
-"bFl" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"bFm" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/stripes/line,
-/obj/item/paper_bin,
-/obj/item/pen/fourcolor,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bFn" = (
-/turf/open/floor/plating/asteroid,
-/area/chapel/main)
-"bFo" = (
-/obj/machinery/smartfridge/extract/preloaded,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bFp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bFq" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/stripes/line,
-/obj/item/slime_scanner,
-/obj/item/slime_scanner,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bFr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"bFs" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#c1caff"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bFt" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bFu" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"bFv" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bFw" = (
-/obj/machinery/monkey_recycler,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/science/xenobiology";
- name = "Xenobiology Lab APC";
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bFx" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 1
- },
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 1
- },
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 31;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bFy" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bFz" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/item/paper/guides/cogstation/janitor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bFA" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bFB" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/bodycontainer/morgue{
- dir = 2
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bFC" = (
-/obj/structure/table,
-/obj/item/mmi,
-/obj/item/mmi,
-/obj/item/mmi,
-/obj/item/storage/box/bodybags,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bFD" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bFE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/dropper,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bFF" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bFG" = (
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bFH" = (
-/obj/machinery/power/apc{
- name = "Customs APC";
- pixel_y = -24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bFI" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bFJ" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bFK" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFL" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFM" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFN" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bFO" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFP" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFQ" = (
-/obj/structure/table,
-/obj/item/clothing/under/shorts/blue,
-/obj/item/clothing/under/shorts/blue,
-/obj/item/clothing/gloves/boxing/blue{
- pixel_y = 8
- },
-/obj/item/clothing/gloves/boxing/blue{
- pixel_y = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bFR" = (
-/obj/item/kirbyplants{
- icon_state = "plant-08"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bFS" = (
-/obj/machinery/light,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bFT" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFU" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFV" = (
-/obj/structure/window/reinforced,
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFW" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"bFX" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bFY" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/noticeboard{
- pixel_y = 28
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bFZ" = (
-/obj/machinery/chem_heater,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bGa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bGb" = (
-/obj/machinery/conveyor/auto{
- id = "router"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bGc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bGd" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bGe" = (
-/mob/living/simple_animal/crab/Coffee,
-/turf/open/floor/plating/asteroid,
-/area/chapel/main)
-"bGf" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGg" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bGh" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bGi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bGj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bGk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/router)
-"bGl" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/poster/contraband/punch_shit{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bGm" = (
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bGn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"bGo" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bGp" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"bGq" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bGr" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bGs" = (
-/obj/machinery/vending/assist,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"bGt" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bGu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Fore Maintenance";
- req_one_access_txt = "12;46"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/port/fore)
-"bGv" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Arcade"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"bGw" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Fitness Room"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"bGx" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"bGy" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/button/massdriver{
- id = "eng_in";
- name = "mass driver button (Engineering)";
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/machinery/button/massdriver{
- id = "router_out";
- name = "mass driver button (Other)";
- pixel_x = 24;
- pixel_y = 12
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bGz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bGA" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bGB" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bGC" = (
-/obj/structure/closet/emcloset,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/camera{
- c_tag = "Starboard Quarter Maintenance - Starboard";
- network = list("ss13","rd")
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bGD" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bGE" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bGF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Starboard Quarter Solar Access";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bGG" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"bGH" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"bGI" = (
-/turf/closed/wall/r_wall,
-/area/hallway/primary/central)
-"bGJ" = (
-/obj/structure/rack,
-/obj/item/storage/box/bodybags,
-/obj/item/clothing/gloves/color/grey,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bGK" = (
-/obj/machinery/conveyor{
- id = "starboard_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"bGL" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bGM" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/item/kirbyplants{
- icon_state = "plant-20";
- pixel_y = 3
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bGN" = (
-/obj/structure/closet/wardrobe/white,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bGO" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/window/eastright{
- name = "Bathroom Stall"
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"bGP" = (
-/obj/machinery/mass_driver{
- dir = 1;
- id = "secserv";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"bGQ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/violet/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bGR" = (
-/obj/structure/closet/wardrobe/grey,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/item/clothing/under/misc/staffassistant,
-/obj/item/clothing/under/misc/staffassistant,
-/obj/item/clothing/under/misc/staffassistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bGS" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/window/eastright{
- name = "Bathroom Stall"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"bGT" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"bGU" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/closed/wall,
-/area/maintenance/port/fore)
-"bGV" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/closed/wall,
-/area/maintenance/port/fore)
-"bGW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/port/fore)
-"bGX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bGY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"bGZ" = (
-/obj/structure/closet/crate/internals,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"bHa" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 4;
- light_color = "#d8b1b1"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/router/eva";
- dir = 4;
- name = "EVA Router APC";
- pixel_x = 24
- },
-/obj/machinery/button/door{
- id = "evablock";
- name = "Router Access Control";
- pixel_x = 24;
- pixel_y = 10;
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel,
-/area/router/eva)
-"bHb" = (
-/obj/structure/closet/wardrobe/black,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHc" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/obj/structure/window/reinforced/spawner/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bHd" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"bHe" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/violet/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bHf" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHg" = (
-/obj/machinery/atmospherics/pipe/simple/violet/visible,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bHh" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"bHi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"bHj" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin/towel,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHk" = (
-/turf/closed/wall,
-/area/crew_quarters/locker)
-"bHl" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/port/fore)
-"bHm" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/maintenance/port/fore)
-"bHn" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bHo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHp" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bHq" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHr" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHs" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHt" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bHu" = (
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHv" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/item/clothing/under/misc/staffassistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHw" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/item/clothing/under/misc/staffassistant,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHx" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHy" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/item/kirbyplants{
- icon_state = "plant-14"
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bHz" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bHA" = (
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bHB" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/crew_quarters/locker)
-"bHC" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bHD" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/aft)
-"bHE" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bHF" = (
-/obj/structure/table/reinforced,
-/obj/item/assembly/timer{
- pixel_x = -5
- },
-/obj/item/assembly/timer{
- pixel_y = -7
- },
-/obj/item/assembly/timer{
- pixel_y = 6
- },
-/obj/item/assembly/timer{
- pixel_x = 8
- },
-/obj/machinery/airalarm/unlocked{
- dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bHG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/maintenance/aft)
-"bHH" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/space_cube{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/gateway)
-"bHI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bHJ" = (
-/obj/item/kirbyplants{
- icon_state = "plant-03"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bHK" = (
-/obj/structure/sign/warning/biohazard,
-/turf/closed/wall,
-/area/medical/morgue)
-"bHL" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bHM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHN" = (
-/turf/closed/wall,
-/area/maintenance/solars/starboard/aft)
-"bHO" = (
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bHP" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bHQ" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bHR" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bHS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/circuit/telecomms,
-/area/science/xenobiology)
-"bHT" = (
-/obj/machinery/computer/camera_advanced/xenobio{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bHU" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bHV" = (
-/obj/machinery/processor/slime,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bHW" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bHX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Port Bow Maintenance";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"bHY" = (
-/obj/machinery/computer/camera_advanced/xenobio{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bHZ" = (
-/turf/closed/indestructible{
- desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
- icon_state = "riveted";
- name = "hyper-reinforced wall"
- },
-/area/science/test_area)
-"bIa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bIb" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bIc" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"bId" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel/dark/side{
- dir = 9
- },
-/area/science/robotics/lab)
-"bIe" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/loading_area,
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/science/robotics/lab)
-"bIf" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/science/robotics/lab)
-"bIg" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/item/reagent_containers/food/snacks/chips,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bIh" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bIi" = (
-/obj/machinery/smartfridge/chemistry/preloaded,
-/turf/closed/wall,
-/area/medical/chemistry)
-"bIj" = (
-/obj/machinery/door/window/southright,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bIk" = (
-/turf/closed/wall/r_wall,
-/area/science/robotics/lab)
-"bIl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bIm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bIn" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bIo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/directions/evac{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bIp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bIq" = (
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bIr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bIs" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bIt" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bIu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "5;6"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bIv" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bIw" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bIx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bIy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10;13"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bIz" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bIA" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bIB" = (
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bIC" = (
-/obj/machinery/conveyor/auto{
- id = "disposal"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bID" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"bIE" = (
-/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
-/turf/open/floor/circuit/telecomms,
-/area/science/xenobiology)
-"bIF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bIG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bIH" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bII" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bIJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bIK" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/item/extinguisher{
- pixel_x = -7;
- pixel_y = 3
- },
-/obj/item/extinguisher,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bIL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bIM" = (
-/obj/machinery/shower{
- desc = "The HS-451. Standard Nanotrasen Hygiene Division design, although it looks like this one was installed more recently.";
- dir = 8;
- name = "emergency shower";
- pixel_y = -4
- },
-/obj/structure/window/reinforced/spawner/north,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"bIN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bIO" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bIP" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bIQ" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bIR" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bIS" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bIT" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/violet/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bIU" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bIV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bIW" = (
-/obj/structure/table/wood,
-/obj/machinery/light,
-/obj/item/reagent_containers/food/drinks/bottle/absinthe,
-/obj/item/stack/spacecash/c20,
-/obj/item/coin/gold,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"bIX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bIY" = (
-/obj/machinery/atmospherics/pipe/simple/violet/hidden,
-/turf/open/space/basic,
-/area/space)
-"bIZ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bJa" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bJb" = (
-/obj/machinery/bloodbankgen,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bJc" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bJd" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bJe" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bJf" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Chemistry Maintenance";
- req_access_txt = "5; 33"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"bJg" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/storage/box/rxglasses{
- pixel_x = 2
- },
-/obj/item/pen,
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bJh" = (
-/obj/structure/sign/warning/biohazard,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/medical/morgue)
-"bJi" = (
-/obj/structure/bodycontainer/morgue,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bJj" = (
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 6
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bJk" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bJl" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bJm" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/lawoffice";
- dir = 1;
- name = "Information Office APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bJn" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
-/obj/item/clothing/mask/muzzle,
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bJo" = (
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"bJp" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bJq" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"bJr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 1
- },
-/turf/open/floor/circuit/telecomms,
-/area/science/xenobiology)
-"bJs" = (
-/obj/structure/rack,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/item/clothing/suit/hooded/wintercoat/science,
-/obj/item/clothing/suit/hooded/wintercoat/science,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/shoes/winterboots,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bJt" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bJu" = (
-/obj/effect/turf_decal/loading_area,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/science/lab";
- dir = 8;
- name = "Research and Development APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bJv" = (
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bJw" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bJx" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bJy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bJz" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bJA" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research{
- name = "Circuitry Lab";
- req_access_txt = "47"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bJB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bJC" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "robotics2";
- name = "Shutters Control Button";
- pixel_x = 24;
- pixel_y = -24;
- req_access_txt = "29"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bJD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bJE" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10;
- pixel_x = -5
- },
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/stack/cable_coil/random{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bJF" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bJG" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bJH" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics2";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"bJI" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bJJ" = (
-/obj/machinery/computer/med_data,
-/obj/structure/window/reinforced/spawner/east,
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"bJK" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/medical/medbay/lobby)
-"bJL" = (
-/obj/machinery/dna_scannernew,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"bJM" = (
-/obj/machinery/camera/preset/toxins{
- dir = 4
- },
-/obj/item/target,
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"bJN" = (
-/obj/machinery/clonepod,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"bJO" = (
-/obj/structure/table,
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/item/storage/firstaid/radbgone,
-/obj/item/reagent_containers/glass/beaker/synthflesh,
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"bJP" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bJQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bJR" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bJS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- sortType = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bJT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bJU" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bJV" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- dir = 1;
- name = "euthanization chamber freezer"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bJW" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bJX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bJY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bJZ" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Main Access";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bKa" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bKb" = (
-/obj/machinery/chem_heater,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bKc" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -6
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 4
- },
-/obj/item/reagent_containers/dropper,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bKd" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "robotics";
- name = "Shutters Control Button";
- pixel_y = 8;
- req_access_txt = "29";
- pixel_x = -24
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"bKe" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/science/robotics/lab)
-"bKf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bKg" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bKh" = (
-/obj/machinery/door/window/westleft{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"bKi" = (
-/obj/machinery/disposal/bin{
- name = "Morgue Delivery Bin"
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/stripes/red/full,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bKj" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bKk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Morgue Maintenance";
- req_access_txt = "6"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bKl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/disposaloutlet,
-/turf/open/floor/plating,
-/area/router)
-"bKm" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/item/storage/box/bodybags,
-/obj/structure/table,
-/obj/structure/table,
-/obj/item/bodybag,
-/obj/item/pen/blue,
-/obj/item/pen/red{
- pixel_y = 6
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bKn" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/red/full,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bKo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/vacuum/external,
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
-"bKp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hop)
-"bKq" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bKr" = (
-/obj/item/stack/packageWrap,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bKs" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bKt" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bKu" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bKv" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bKw" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_y = -32
- },
-/turf/open/floor/wood,
-/area/library)
-"bKx" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bKy" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bKz" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/medical/genetics)
-"bKA" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/medical/genetics)
-"bKB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bKC" = (
-/obj/structure/sign/warning/biohazard,
-/turf/closed/wall,
-/area/medical/genetics)
-"bKD" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Mining Dock Ferry";
- req_access_txt = "48"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bKE" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bKF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bKG" = (
-/obj/machinery/computer/cargo/request{
- dir = 1
- },
-/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/heads/hop)
-"bKH" = (
-/obj/item/beacon,
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"bKI" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/engine,
-/area/science/mixing)
-"bKJ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hop)
-"bKK" = (
-/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/crew_quarters/heads/hop)
-"bKL" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bKM" = (
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bKN" = (
-/obj/structure/table,
-/obj/item/book/manual/wiki/robotics_cyborgs{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/book/manual/ripley_build_and_repair{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/item/mmi/posibrain,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bKO" = (
-/obj/structure/table,
-/obj/item/storage/belt/utility,
-/obj/item/storage/belt/utility,
-/obj/item/multitool{
- pixel_x = 3
- },
-/obj/item/multitool{
- pixel_x = 3
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = -1
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = -1
- },
-/obj/item/storage/toolbox/electrical{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/storage/toolbox/electrical{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bKP" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_y = 3;
- pixel_x = 4
- },
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/machinery/button/door{
- id = "robotics3";
- name = "Shutters Control Button";
- pixel_x = 24;
- pixel_y = -24;
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bKQ" = (
-/obj/machinery/droneDispenser,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bKR" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Library";
- network = list("ss13","rd")
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/library)
-"bKS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Genetics Lab";
- req_access_txt = "9"
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bKT" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bKU" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/vending/wardrobe/gene_wardrobe,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bKV" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/item/clipboard{
- pixel_y = 3
- },
-/obj/item/paper_bin,
-/obj/item/hand_labeler,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bKW" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/folder/white,
-/obj/item/storage/pill_bottle/mannitol{
- pixel_x = 4
- },
-/obj/item/storage/pill_bottle/mutadone,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bKX" = (
-/obj/structure/table_frame,
-/obj/item/t_scanner{
- pixel_x = -4
- },
-/obj/machinery/camera{
- c_tag = "Supply - Warehouse Fore";
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bKY" = (
-/turf/closed/wall,
-/area/medical/genetics)
-"bKZ" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bLa" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bLb" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/item/stack/ore/glass,
-/obj/item/stack/ore/iron,
-/obj/item/stack/ore/silver,
-/obj/item/stack/ore/silver,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bLc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bLd" = (
-/mob/living/simple_animal/slime,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bLe" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hop)
-"bLf" = (
-/obj/machinery/door/window/eastleft{
- name = "Containment Pen";
- req_one_access_txt = "55"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bLg" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bLh" = (
-/obj/structure/bed,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -28
- },
-/obj/item/bedsheet/captain,
-/obj/effect/landmark/start/captain,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bLi" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"bLj" = (
-/obj/machinery/door/window/westright{
- name = "Containment Pen";
- req_one_access_txt = "55"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bLk" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bLl" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bLm" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bLn" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/item/caution,
-/obj/item/shovel,
-/obj/item/stack/tile/plasteel{
- pixel_x = 10;
- pixel_y = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bLo" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bLp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"bLq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Genetics Lab";
- req_access_txt = "9"
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bLr" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bLs" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/landmark/start/geneticist,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bLt" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bLu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bLv" = (
-/obj/machinery/light,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bLw" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 6
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bLx" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bLy" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bLz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bLA" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/structure/table,
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/glass,
-/obj/item/flashlight,
-/obj/item/assembly/health,
-/obj/item/assembly/voice,
-/obj/item/assembly/timer,
-/obj/item/assembly/infra,
-/obj/item/assembly/igniter,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bLB" = (
-/obj/machinery/light,
-/obj/item/target,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"bLC" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bLD" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bLE" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/button/ignition/incinerator/toxmix{
- pixel_x = -24;
- pixel_y = 8
- },
-/obj/machinery/button/door/incinerator_vent_toxmix{
- pixel_x = -24;
- pixel_y = -2
- },
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bLF" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"bLG" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Research Aft";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bLH" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bLI" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"bLJ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bLK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bLL" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bLM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
-"bLN" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bLO" = (
-/obj/item/pipe{
- pixel_x = -3
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/mob/living/simple_animal/bot/cleanbot{
- auto_patrol = 1;
- icon_state = "cleanbot1";
- name = "Mopficcer Sweepsky"
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bLP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bLQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bLR" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bLS" = (
-/obj/machinery/atmospherics/pipe/simple/violet/visible,
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bLT" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bLU" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bLV" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bLW" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"bLX" = (
-/obj/item/kirbyplants{
- icon_state = "plant-02"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bLY" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bLZ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bMa" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bMb" = (
-/obj/machinery/dna_scannernew,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bMc" = (
-/obj/machinery/computer/scan_consolenew{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bMd" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/white/full,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bMe" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bMf" = (
-/obj/machinery/computer/scan_consolenew{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bMg" = (
-/obj/machinery/dna_scannernew,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bMh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bMi" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"bMj" = (
-/turf/closed/wall,
-/area/medical/medbay/central)
-"bMk" = (
-/turf/closed/wall,
-/area/medical/virology)
-"bMl" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bMm" = (
-/obj/structure/table/wood,
-/obj/machinery/light,
-/obj/item/clothing/under/misc/assistantformal{
- pixel_y = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"bMn" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/door/airlock/medical/glass{
- name = "Monkey Pen";
- req_one_access_txt = "9;39"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMo" = (
-/obj/structure/closet/l3closet/virology,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMp" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bMq" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Starboard Quarter Maintenance - Port";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bMr" = (
-/obj/machinery/vending/wardrobe/viro_wardrobe,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMs" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMt" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bMu" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMv" = (
-/turf/open/floor/grass,
-/area/medical/virology)
-"bMw" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/medical/virology)
-"bMx" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/sign/warning/biohazard{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bMy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/sign/warning/biohazard{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bMz" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/router";
- dir = 4;
- name = "Router APC";
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 4;
- sortType = 19
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bMA" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/router)
-"bMC" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMD" = (
-/obj/structure/flora/tree/palm,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/grass,
-/area/medical/virology)
-"bME" = (
-/obj/structure/flora/tree/palm,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/grass,
-/area/medical/virology)
-"bMF" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/window/southright{
- name = "Cloning Access";
- req_one_access_txt = "9;45"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bMG" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bMH" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/item/crowbar,
-/obj/machinery/requests_console{
- department = "Mining";
- name = "Mining RC";
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bMI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille/broken,
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 4;
- sortType = 15
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bMJ" = (
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMK" = (
-/obj/structure/lattice,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bML" = (
-/obj/structure/flora/tree/palm,
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/medical/virology)
-"bMM" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bMN" = (
-/obj/structure/closet/l3closet/virology,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMO" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMP" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMQ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bMR" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/rust,
-/area/router)
-"bMT" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/landmark/start/virologist,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMU" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bMV" = (
-/obj/machinery/light,
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/medical/virology)
-"bMW" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bMX" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bMY" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bMZ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bNa" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bNb" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bNc" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/chair/office/light{
- dir = 1
- },
-/obj/effect/landmark/start/virologist,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNd" = (
-/obj/machinery/computer/atmos_alert{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/engine/atmos)
-"bNe" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/machinery/door/window/northleft{
- name = "AI Upload Chamber";
- req_one_access_txt = "65"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/ai)
-"bNf" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/router)
-"bNg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology/glass{
- name = "Virology Interior Airlock";
- req_access_txt = "39"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNi" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/grass,
-/area/medical/virology)
-"bNj" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNk" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bNl" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/turf/open/floor/plating,
-/area/router)
-"bNm" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/item/paper_bin,
-/obj/item/pen/red,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNn" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/mass_driver{
- dir = 4;
- id = "router_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router)
-"bNo" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "starboard_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"bNp" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"bNq" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bNr" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/bedsheetbin,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bNs" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNt" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bNu" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/grass,
-/area/medical/virology)
-"bNv" = (
-/obj/structure/sink{
- dir = 1;
- pixel_y = 25
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bNw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNx" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNy" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNz" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNA" = (
-/obj/machinery/smartfridge/chemistry/virology/preloaded,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNB" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/healthanalyzer,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNC" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bND" = (
-/obj/machinery/computer/pandemic,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNE" = (
-/obj/machinery/computer/station_alert{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/engine/atmos)
-"bNF" = (
-/turf/open/floor/plasteel/stairs,
-/area/medical/medbay/central)
-"bNG" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bNH" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"bNI" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/departments/evac,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bNJ" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/hallway/secondary/exit)
-"bNK" = (
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard/aft)
-"bNL" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"bNM" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plasteel,
-/area/maintenance/port/fore)
-"bNN" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/router/eva)
-"bNO" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bNP" = (
-/obj/machinery/power/smes,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"bNQ" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"bNR" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"bNS" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"bNT" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/port/fore)
-"bNU" = (
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard/aft)
-"bNV" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bNW" = (
-/turf/open/floor/plasteel/stairs/left,
-/area/hallway/secondary/exit)
-"bNX" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/stairs/right,
-/area/hallway/secondary/exit)
-"bNY" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/stairs/left,
-/area/hallway/secondary/exit)
-"bNZ" = (
-/turf/open/floor/plasteel/stairs/right,
-/area/hallway/secondary/exit)
-"bOa" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/vacuum/external,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bOc" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"bOd" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"bOe" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external/glass{
- name = "Departures Shuttle Dock"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOf" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"bOg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOj" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOk" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"bOl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOm" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOn" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Shuttle Maintenance Access"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/docking,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bOp" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Departures Shuttle Dock"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bOq" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable,
-/turf/open/floor/plating/airless,
-/area/solar/starboard/aft)
-"bOr" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bOs" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/bz,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"bOt" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"bOu" = (
-/obj/structure/table/reinforced,
-/obj/item/assembly/prox_sensor{
- pixel_x = 8
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = 8
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = 8
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = 8
- },
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science RC";
- pixel_x = 30;
- receive_ore_updates = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bOv" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bOw" = (
-/obj/structure/lattice,
-/obj/item/reagent_containers/food/drinks/bottle/grappa,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bOx" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/science/research{
- name = "Research Sector"
- })
-"bOy" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"bOz" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bOA" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"bOB" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/router/eva)
-"bOC" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/router/eva)
-"bOD" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4
- },
-/obj/machinery/sparker/toxmix{
- pixel_x = 25
- },
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"bOE" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/hand_labeler,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bOF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bOG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bOH" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bOI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/computer/security/telescreen{
- dir = 1;
- name = "Test Chamber Monitor";
- network = list("xeno");
- pixel_y = 2
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bOJ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/mob/living/simple_animal/pet/cat/space,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bOK" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/northright{
- name = "Secure Xenobiological Containment";
- req_one_access_txt = "55"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bOL" = (
-/obj/machinery/computer/card{
- dir = 8
- },
-/obj/machinery/keycard_auth{
- pixel_x = 8;
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"bOM" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bON" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bOO" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"bOP" = (
-/obj/machinery/shieldwallgen/xenobiologyaccess,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"bOQ" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/captain)
-"bOR" = (
-/obj/structure/table/wood,
-/obj/item/pinpointer/nuke,
-/obj/item/card/id/captains_spare,
-/obj/item/hand_tele,
-/obj/item/disk/nuclear,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/captain)
-"bOS" = (
-/obj/structure/table/wood,
-/obj/machinery/light,
-/obj/item/storage/photo_album/Captain,
-/obj/item/camera{
- pixel_y = -6
- },
-/obj/item/stamp/captain,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/captain)
-"bOT" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bOU" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bOV" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"bOW" = (
-/obj/structure/bookcase/random/nonfiction,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bOX" = (
-/obj/structure/table/reinforced,
-/obj/item/electropack,
-/obj/item/assembly/signaler,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bOY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/machinery/camera{
- c_tag = "Customs - Aft";
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "HoPAft";
- name = "HoP Aft Desk Shutters"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"bOZ" = (
-/obj/structure/bed,
-/obj/item/bedsheet/purple,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPa" = (
-/obj/item/beacon,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPb" = (
-/obj/structure/table/reinforced,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPc" = (
-/obj/structure/chair/comfy/black,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPd" = (
-/obj/structure/table/reinforced,
-/obj/item/book/random/triple,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPe" = (
-/obj/structure/table/reinforced,
-/obj/item/modular_computer/laptop/preset/civilian,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPf" = (
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPg" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPh" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bPi" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPj" = (
-/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPk" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/under/misc/staffassistant,
-/obj/item/clothing/under/misc/staffassistant,
-/obj/item/clothing/suit/apron/surgical,
-/obj/item/clothing/suit/apron/surgical,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"bPl" = (
-/obj/structure/chair/sofa/right,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/item/book/manual/wiki/research_and_development,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bPm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bPn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bPo" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bPp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/ai)
-"bPq" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/mineral/stacking_machine{
- input_dir = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bPr" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bPs" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bPt" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/bridge)
-"bPu" = (
-/obj/effect/landmark/start/cook,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bPv" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/multitool,
-/obj/item/multitool{
- pixel_x = 5;
- pixel_y = 3
- },
-/obj/item/t_scanner{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/t_scanner{
- pixel_x = -4
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bPw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bPx" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bPy" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bPz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"bPA" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/visible,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bPB" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bPC" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4;
- name = "Waste In"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bPD" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera{
- c_tag = "Escape Hall - Fore";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bPE" = (
-/obj/structure/table/glass,
-/obj/item/clipboard,
-/obj/item/storage/crayons,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bPF" = (
-/obj/structure/table/glass,
-/obj/item/storage/fancy/cigarettes,
-/obj/item/lighter{
- pixel_x = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bPG" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bPH" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bPI" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bPJ" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bPK" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bPL" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bPM" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bPN" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bPO" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/effect/turf_decal/tile/red,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 4
- },
-/area/hallway/secondary/exit)
-"bPP" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"bPQ" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bPR" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bPS" = (
-/obj/structure/bodycontainer/morgue{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bPT" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 4
- },
-/area/hallway/secondary/exit)
-"bPU" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/highsecurity{
- name = "AI Upload Access";
- req_access_txt = "16"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/ai)
-"bPV" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"bPW" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/vehicle/ridden/atv,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bPX" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 9
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bPY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bPZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/sorting/mail{
- sortType = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bQa" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bQb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/camera/motion{
- c_tag = "AI Foyer";
- network = list("minisat");
- pixel_x = 22
- },
-/obj/machinery/turretid{
- control_area = "/area/ai_monitored/turret_protected/ai";
- dir = 1;
- name = "AI Chamber turret control";
- pixel_x = 5;
- pixel_y = 24;
- req_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"bQc" = (
-/obj/structure/bodycontainer/morgue{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bQd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bQe" = (
-/obj/structure/lattice,
-/obj/structure/grille/broken,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bQf" = (
-/obj/structure/rack,
-/obj/item/tank/jetpack/carbondioxide,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"bQg" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=sci";
- location = "market"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bQh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bQi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bQj" = (
-/obj/structure/bodycontainer/morgue{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bQk" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bQl" = (
-/obj/structure/bed/roller,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQm" = (
-/obj/structure/bed/roller,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQn" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQo" = (
-/obj/structure/disposalpipe/junction/yjunction,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"bQp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/maintenance/aft)
-"bQq" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/table/wood,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/paper/guides/cogstation/letter_atmos,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bQr" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bQs" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"bQt" = (
-/obj/machinery/conveyor/auto{
- dir = 5;
- id = "router"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bQu" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bQv" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 1;
- sortType = 24
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bQw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bQx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bQy" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQz" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQA" = (
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -28
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bQB" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/item/weldingtool,
-/obj/item/wrench/medical,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQC" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQD" = (
-/obj/machinery/power/apc{
- name = "Tech Storage APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bQE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bQF" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bQG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bQH" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bQI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bQJ" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/power/apc{
- name = "Medbay Treatment Center APC";
- pixel_y = -24
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQK" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bQL" = (
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bQM" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bQN" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bQO" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bQP" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bQQ" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/red/full,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bQR" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/directions/evac{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bQS" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bQT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/radio/intercom{
- frequency = 1447;
- name = "Station Intercom (AI Private)";
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bQU" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"bQV" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bQW" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/turf/open/floor/plating,
-/area/router)
-"bQX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bQY" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bQZ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/landmark/start/scientist,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bRa" = (
-/obj/item/cigbutt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"bRb" = (
-/obj/machinery/door/window/southleft{
- name = "Captain's Equipment";
- req_access_txt = "20"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/heads/captain)
-"bRc" = (
-/obj/machinery/suit_storage_unit/captain,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/captain)
-"bRd" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/engine/storage";
- dir = 4;
- name = "Canister Storage APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"bRe" = (
-/obj/machinery/computer/security/wooden_tv,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bRf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bRg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bRh" = (
-/obj/structure/sign/warning/securearea{
- pixel_x = -32
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bRi" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bRj" = (
-/obj/machinery/atmospherics/components/trinary/filter/flipped,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bRk" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bRl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/router)
-"bRm" = (
-/obj/structure/closet/bombcloset,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bRn" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bRo" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bRp" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bRq" = (
-/obj/machinery/portable_atmospherics/scrubber/huge/movable,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bRr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bRs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bRt" = (
-/obj/structure/closet/wardrobe/miner,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/quartermaster/miningoffice";
- dir = 8;
- name = "Mining Office APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bRu" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bRv" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"bRw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bRx" = (
-/obj/structure/table,
-/obj/item/circuitboard/machine/cyborgrecharger,
-/obj/item/disk/design_disk,
-/obj/machinery/camera/motion{
- c_tag = "Computer Core";
- dir = 1;
- network = list("minisat")
- },
-/turf/open/floor/circuit/green,
-/area/science/server{
- name = "Computer Core"
- })
-"bRy" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bRz" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bRA" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/engine,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bRB" = (
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 29
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bRC" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bRD" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"bRE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bRF" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"bRG" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"bRH" = (
-/obj/structure/chair/sofa/right,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 29
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"bRI" = (
-/turf/closed/wall/r_wall,
-/area/medical/medbay/central)
-"bRJ" = (
-/obj/structure/chair/sofa/left,
-/obj/effect/landmark/start/assistant,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/machinery/camera{
- c_tag = "Medbay - Waiting Room";
- network = list("ss13","rd")
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"bRK" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bRL" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bRM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs/left,
-/area/science/research{
- name = "Research Sector"
- })
-"bRN" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/stairs/medium,
-/area/science/research{
- name = "Research Sector"
- })
-"bRO" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bRP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "E.V.A. Storage";
- req_access_txt = "18"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"bRQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"bRR" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bRS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bRT" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/power/apc{
- areastring = "/area/science/robotics/lab";
- dir = 8;
- name = "Robotics Lab APC";
- pixel_x = -25
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bRU" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"bRV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"bRW" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/status_display/ai{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bRX" = (
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bRY" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/storage/belt/medical,
-/obj/item/clothing/neck/stethoscope,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bRZ" = (
-/obj/structure/closet/l3closet,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bSa" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/item/storage/belt/medolier,
-/obj/item/clothing/neck/stethoscope,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bSb" = (
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bSc" = (
-/obj/machinery/vending/wardrobe/medi_wardrobe,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bSd" = (
-/obj/structure/table,
-/obj/item/assembly/flash/handheld,
-/obj/item/assembly/flash/handheld,
-/obj/item/assembly/flash/handheld,
-/obj/item/assembly/flash/handheld,
-/obj/item/assembly/flash/handheld,
-/obj/item/assembly/flash/handheld,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bSe" = (
-/obj/machinery/computer/rdconsole/robotics{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bSf" = (
-/obj/structure/table,
-/obj/item/analyzer,
-/obj/item/healthanalyzer,
-/obj/item/plant_analyzer,
-/obj/item/aicard,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 29
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bSg" = (
-/obj/machinery/rnd/production/techfab/department/medical,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bSh" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"bSi" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bSj" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/effect/landmark/blobstart,
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/camera{
- c_tag = "Xenobiology - Kill Chamber";
- dir = 4
- },
-/turf/open/floor/circuit/telecomms,
-/area/science/xenobiology)
-"bSk" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/public/glass{
- name = "AI Access"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSl" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bSm" = (
-/obj/machinery/modular_computer/console/preset/engineering,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bSn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/electricshock,
-/turf/open/floor/plating,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bSo" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bSp" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bSq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bSr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSs" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSu" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"bSv" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bSw" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/machinery/light,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/turf/open/floor/plating,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bSx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"bSy" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bSz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 1;
- sortType = 11
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bSA" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel/stairs/right,
-/area/hallway/primary/central)
-"bSB" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bSC" = (
-/turf/closed/wall,
-/area/science/lab)
-"bSD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/router)
-"bSE" = (
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"bSF" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "router"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router)
-"bSG" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/lab)
-"bSH" = (
-/obj/structure/sign/departments/science,
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"bSI" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/router)
-"bSJ" = (
-/obj/structure/closet/crate/science,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target/alien,
-/obj/item/target/alien,
-/obj/item/target/syndicate,
-/obj/item/target/syndicate,
-/obj/item/gun/energy/laser/practice,
-/obj/item/gun/energy/laser/practice,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/science/circuit";
- dir = 1;
- name = "Circuitry Lab APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bSK" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSL" = (
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSM" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stack/cable_coil/red,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/obj/item/folder/white,
-/obj/item/disk/design_disk,
-/obj/item/disk/design_disk,
-/obj/item/disk/tech_disk,
-/obj/item/disk/tech_disk,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSO" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/public/glass{
- name = "AI Access"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSP" = (
-/obj/machinery/computer/rdconsole/core,
-/turf/open/floor/plasteel,
-/area/science/lab)
-"bSQ" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSR" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bST" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"bSW" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bSX" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/white/full,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_x = 28;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bSY" = (
-/obj/structure/table,
-/obj/item/stock_parts/micro_laser{
- pixel_x = 4
- },
-/obj/item/stock_parts/micro_laser{
- pixel_x = 4
- },
-/obj/item/stock_parts/scanning_module{
- pixel_x = -6
- },
-/obj/item/stock_parts/scanning_module{
- pixel_x = -6
- },
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/capacitor,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bSZ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTa" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTb" = (
-/turf/open/floor/plasteel,
-/area/science/lab)
-"bTc" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/lab)
-"bTd" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass,
-/obj/item/stack/sheet/glass,
-/obj/item/stack/sheet/glass,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTe" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/scientist,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTh" = (
-/obj/machinery/rnd/production/protolathe/department/science,
-/turf/open/floor/plasteel,
-/area/science/lab)
-"bTi" = (
-/obj/machinery/rnd/production/circuit_imprinter/department/science,
-/obj/item/reagent_containers/glass/beaker/sulphuric,
-/turf/open/floor/plasteel,
-/area/science/lab)
-"bTj" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -6
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 4
- },
-/obj/item/reagent_containers/dropper,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTk" = (
-/obj/item/rack_parts,
-/obj/structure/table_frame,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/machinery/power/apc{
- areastring = "/area/quartermaster/warehouse";
- dir = 1;
- name = "Warehouse APC";
- pixel_y = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bTl" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTm" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTn" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTo" = (
-/obj/structure/table/reinforced,
-/obj/item/integrated_electronics/debugger,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bTp" = (
-/obj/machinery/vending/wardrobe/law_wardrobe,
-/obj/effect/turf_decal/bot,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bTq" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/circuit)
-"bTr" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"bTs" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"bTt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/hallway/primary/central)
-"bTu" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bTv" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bTw" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bTx" = (
-/obj/item/stack/tile/plasteel{
- pixel_x = 8;
- pixel_y = 14
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bTy" = (
-/obj/item/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bTz" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bTA" = (
-/obj/structure/filingcabinet/medical,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bTB" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/medical/medbay/lobby)
-"bTC" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 5
- },
-/area/science/robotics/lab)
-"bTD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bTE" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bTF" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bTG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"bTH" = (
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bTI" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bTJ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bTK" = (
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bTL" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bTM" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/camera{
- c_tag = "Research - Development Lab";
- dir = 1
- },
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science RC";
- pixel_y = -30;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bTN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/science/circuit)
-"bTO" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bTP" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bTQ" = (
-/obj/machinery/vending/assist,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bTR" = (
-/turf/closed/wall/r_wall,
-/area/science/circuit)
-"bTS" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/machinery/light/small{
- dir = 4;
- light_color = "#d8b1b1"
- },
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/radio/off{
- pixel_x = -3;
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bTT" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/hallway/primary/central)
-"bTU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "recycler"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bTV" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bTW" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bTX" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/status_display/ai{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bTY" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/hallway/primary/central)
-"bTZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bUa" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics - Entrance"
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bUb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bUc" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bUd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bUe" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"bUf" = (
-/obj/structure/plasticflaps,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bUg" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "router"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"bUh" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bUi" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bUj" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bUk" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bUl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bUm" = (
-/obj/structure/closet/crate/internals,
-/obj/item/tank/internals/emergency_oxygen/double,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bUn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bUo" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bUp" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/conveyor/auto{
- id = "router"
- },
-/turf/open/floor/plating,
-/area/router)
-"bUq" = (
-/turf/closed/wall/r_wall,
-/area/hallway/primary/aft)
-"bUr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/hallway/primary/aft)
-"bUs" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bUt" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/hallway/primary/central)
-"bUu" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/gateway)
-"bUv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/hallway/primary/aft)
-"bUw" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bUx" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bUy" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bUz" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bUA" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"bUB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/engine/engine_smes";
- dir = 1;
- name = "Power Monitoring APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bUC" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bUD" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bUE" = (
-/turf/open/floor/plasteel/stairs/right,
-/area/hallway/primary/aft)
-"bUF" = (
-/obj/machinery/doppler_array/research/science{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bUG" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bUH" = (
-/obj/machinery/shieldgen,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bUI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bUJ" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"bUK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Quartermaster's Office";
- req_access_txt = "31;41"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bUL" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bUM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"bUN" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/door/airlock/engineering{
- name = "Primary Tool Storage";
- req_access_txt = "11"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bUO" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/storage/primary";
- dir = 1;
- name = "Primary Tool Storage APC";
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bUP" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/quartermaster/sorting)
-"bUQ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "DeliveryDoor";
- name = "Cargo Delivery Door Control";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bUR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/mob/living/simple_animal/bot/firebot,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bUS" = (
-/obj/structure/closet/secure_closet/quartermaster,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/item/clothing/suit/space/eva,
-/obj/item/clothing/head/helmet/space/eva,
-/obj/item/paper/fluff/cogstation/letter_qm,
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bUT" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/filingcabinet/filingcabinet,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bUU" = (
-/obj/item/beacon,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bUV" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bUW" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/starboard/aft";
- dir = 1;
- name = "Starboard Quarter Maintenance APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bUX" = (
-/obj/structure/transit_tube/station/reverse/flipped{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bUY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/item/grown/bananapeel,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/router)
-"bUZ" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/wirecutters,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bVa" = (
-/obj/machinery/light/small,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bVb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/transit_tube/horizontal,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"bVc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bVd" = (
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bVe" = (
-/obj/machinery/photocopier,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"bVf" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Engineering - Power Monitoring";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"bVg" = (
-/obj/machinery/power/emitter,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bVh" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bVi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bVj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/conveyor/auto{
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bVk" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bVl" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bVm" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bVn" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bVo" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bVp" = (
-/obj/machinery/computer/card/minor/rd{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"bVq" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bVr" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bVs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start/cargo_technician,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bVt" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bVu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_x = 26
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/router)
-"bVv" = (
-/obj/structure/sign/departments/xenobio{
- pixel_x = -32
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"bVw" = (
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "cargo"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bVx" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "cargo"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bVy" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "cargo"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"bVz" = (
-/obj/structure/rack,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/item/extinguisher{
- pixel_x = -4
- },
-/obj/item/crowbar/red{
- pixel_x = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bVA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/router)
-"bVB" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bVC" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- name = "AI SMES Access";
- req_one_access_txt = "10;24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bVD" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bVE" = (
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bVF" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bVG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bVH" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bVI" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bVJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bVK" = (
-/obj/item/restraints/legcuffs/beartrap,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"bVL" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/noticeboard/rd{
- pixel_y = 28
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bVM" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bVN" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "capblast";
- name = "blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
-"bVO" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bVP" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bVQ" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bVR" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/sign/warning/securearea{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bVS" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bVT" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bVU" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- name = "Law Office";
- req_access_txt = "38"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"bVV" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"bVW" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"bVX" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bVY" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/southright{
- name = "Primary Tool Storage Desk";
- req_access_txt = "11"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"bVZ" = (
-/obj/machinery/power/apc{
- name = "Cargo Bay APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bWa" = (
-/turf/closed/wall/r_wall,
-/area/science/research{
- name = "Research Sector"
- })
-"bWb" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWc" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWd" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/structure/sign/poster/official/wtf_is_co2{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"bWe" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=1";
- dir = 1;
- freq = 1400;
- location = "Bridge"
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"bWf" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bWg" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Law Office";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"bWh" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"bWi" = (
-/obj/structure/table/wood,
-/obj/item/cartridge/lawyer{
- pixel_x = 2;
- pixel_y = 8
- },
-/obj/item/stamp/law,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"bWj" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"bWk" = (
-/obj/structure/table/wood,
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"bWl" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Toxins Storage";
- req_access_txt = "7;8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/science/mixing)
-"bWm" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- name = "AI SMES Access";
- req_one_access_txt = "10;24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bWn" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bWo" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWp" = (
-/obj/machinery/atmospherics/miner/n2o,
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bWq" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "Routing Depot - Aft Exterior";
- pixel_x = 22
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bWr" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/camera{
- c_tag = "Research Entrance";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWs" = (
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWt" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bWu" = (
-/obj/machinery/vending/assist,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bWv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bWw" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/lawoffice)
-"bWx" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWy" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWz" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWA" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWB" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/extinguisher,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWC" = (
-/obj/machinery/shower{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWD" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Medbay"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bWE" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bWF" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bWG" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"bWH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/stairs/medium,
-/area/hallway/primary/central)
-"bWI" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bWJ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bWK" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bWL" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWM" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/machinery/camera{
- c_tag = "Central Hall - AI Access";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bWN" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/science/server{
- name = "Computer Core"
- })
-"bWO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bWP" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/command{
- name = "Computer Core";
- req_access_txt = "30"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bWQ" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"bWR" = (
-/obj/structure/sign/warning/fire,
-/turf/closed/wall/r_wall,
-/area/science/research{
- name = "Research Sector"
- })
-"bWS" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bWT" = (
-/obj/structure/chair/sofa/left,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWU" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWV" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWW" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWX" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bWY" = (
-/obj/structure/sign/warning/nosmoking,
-/turf/closed/wall/r_wall,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"bWZ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/hallway/primary/aft)
-"bXa" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/item/multitool{
- pixel_y = 4
- },
-/obj/item/book/manual/wiki/robotics_cyborgs,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bXb" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"bXd" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"bXe" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/atmospherics/miner/toxins,
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bXf" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "EngiLockdown";
- name = "Engineering Emergency Lockdown";
- pixel_x = 24;
- pixel_y = -6;
- req_access_txt = "11"
- },
-/obj/machinery/button/door{
- name = "Privacy Shutters";
- pixel_x = 24;
- pixel_y = 6
- },
-/obj/item/kirbyplants/photosynthetic,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"bXg" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bXh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXi" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXj" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bXk" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bXl" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXm" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bXn" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"bXo" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/disposal/deliveryChute{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/router)
-"bXq" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXr" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Research Fore";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bXt" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bXu" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bXv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bXw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bXx" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXy" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/light,
-/obj/item/kirbyplants{
- icon_state = "plant-16"
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXz" = (
-/obj/machinery/power/apc{
- name = "Medbay Lobby APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bXA" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXB" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/item/modular_computer/laptop/preset/civilian,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXC" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bXD" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bXE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bXF" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/supply)
-"bXG" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"bXH" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"bXI" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "capblast";
- name = "blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
-"bXJ" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXK" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/light,
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/white/full,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/item/storage/belt/utility,
-/turf/open/floor/plasteel,
-/area/maintenance/aft)
-"bXM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/conveyor{
- dir = 8;
- id = "router_off"
- },
-/turf/open/floor/plating,
-/area/router)
-"bXN" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bXO" = (
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Fore";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bXP" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/space/nearstation)
-"bXQ" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXR" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/machinery/atmospherics/miner/carbon_dioxide,
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bXS" = (
-/obj/structure/closet/bombcloset,
-/obj/machinery/camera{
- c_tag = "Toxins Lab - Access";
- network = list("ss13","rd")
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bXT" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bXU" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/research{
- name = "Research Sector"
- })
-"bXV" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/space/nearstation)
-"bXW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXY" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bXZ" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/item/paper_bin,
-/obj/item/radio/headset/headset_sci,
-/obj/item/radio/headset/headset_sci,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYa" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bYc" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/research{
- name = "Research Sector"
- })
-"bYd" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/hallway/primary/central)
-"bYe" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bYf" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "router"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/router)
-"bYg" = (
-/obj/machinery/door/poddoor{
- id = "toxinsdriver";
- name = "toxins launcher bay door"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/science/mixing)
-"bYh" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bYi" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/recharger,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bYk" = (
-/obj/machinery/vending/wardrobe/science_wardrobe,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYl" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/sorting/mail/flip{
- sortType = 6
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bYm" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bYn" = (
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bYo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/computer/mech_bay_power_console,
-/turf/open/floor/circuit/green,
-/area/science/robotics/mechbay)
-"bYp" = (
-/turf/open/floor/plasteel/recharge_floor,
-/area/science/robotics/mechbay)
-"bYq" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/mech_bay_recharge_port{
- dir = 8
- },
-/turf/open/floor/circuit/green,
-/area/science/robotics/mechbay)
-"bYr" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYs" = (
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research/glass{
- name = "Toxins Lab Access";
- req_access_txt = "7;8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"bYt" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bYu" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYv" = (
-/turf/closed/wall,
-/area/science/robotics/mechbay)
-"bYw" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/circuit,
-/area/science/robotics/mechbay)
-"bYy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/circuit,
-/area/science/robotics/mechbay)
-"bYz" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bYA" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYB" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"bYC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bYD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bYE" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bYF" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable,
-/obj/machinery/recharge_station,
-/turf/open/floor/circuit/green,
-/area/science/robotics/mechbay)
-"bYG" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/sleeper{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"bYH" = (
-/obj/structure/sign/poster/contraband/kss13{
- pixel_y = -32
- },
-/obj/structure/cable,
-/obj/machinery/recharge_station,
-/turf/open/floor/circuit/green,
-/area/science/robotics/mechbay)
-"bYI" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/science/robotics/lab)
-"bYJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bYK" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"bYL" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bYM" = (
-/obj/machinery/vending/wardrobe/cargo_wardrobe,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"bYN" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bYO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bYP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bYQ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"bYR" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"bYS" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/server{
- name = "Computer Core"
- })
-"bYT" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bYU" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bYV" = (
-/obj/machinery/rnd/destructive_analyzer,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/science/lab)
-"bYW" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bYX" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bYY" = (
-/turf/open/floor/circuit/green,
-/area/science/server{
- name = "Computer Core"
- })
-"bYZ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/circuit/green,
-/area/science/server{
- name = "Computer Core"
- })
-"bZa" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/item/storage/box/disks,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"bZb" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "RDServer";
- layer = 3.6;
- name = "RD Server Lockup Control";
- pixel_x = -24
- },
-/obj/item/circuitboard/machine/rdserver,
-/obj/item/disk/tech_disk,
-/turf/open/floor/circuit/green,
-/area/science/server{
- name = "Computer Core"
- })
-"bZc" = (
-/obj/machinery/computer/robotics{
- dir = 1
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/circuit/green,
-/area/science/server{
- name = "Computer Core"
- })
-"bZd" = (
-/obj/effect/landmark/blobstart,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bZe" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/science/server{
- name = "Computer Core"
- })
-"bZf" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bZg" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bZh" = (
-/turf/closed/wall,
-/area/crew_quarters/toilet/restrooms)
-"bZi" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"bZj" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- dir = 4;
- node1_concentration = 0.8;
- node2_concentration = 0.2;
- on = 1;
- target_pressure = 4500
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bZk" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"bZl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bZm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=upload";
- location = "med"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bZn" = (
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/door/window/eastright,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"bZo" = (
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"bZp" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bZq" = (
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/door/window/eastright,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"bZr" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"bZs" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Bathroom Maintenance";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/toilet/restrooms)
-"bZt" = (
-/turf/closed/wall,
-/area/maintenance/starboard/aft)
-"bZu" = (
-/obj/structure/rack,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/item/extinguisher,
-/obj/item/crowbar,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bZv" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas,
-/obj/item/tank/internals/air,
-/obj/item/extinguisher,
-/obj/item/crowbar,
-/obj/machinery/camera{
- c_tag = "Fire Suppression Storage";
- pixel_x = 22
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bZw" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bZx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Fire Suppression Storage";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bZy" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"bZz" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Xenobiology Kill Room";
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"bZA" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/library)
-"bZB" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bZC" = (
-/obj/machinery/computer/libraryconsole,
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/library)
-"bZD" = (
-/obj/machinery/chem_master,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"bZE" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bZF" = (
-/turf/open/floor/wood,
-/area/library)
-"bZG" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/sign/warning/fire{
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"bZH" = (
-/turf/closed/wall,
-/area/library)
-"bZI" = (
-/obj/machinery/air_sensor/atmos/mix_tank,
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"bZJ" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/photocopier,
-/turf/open/floor/carpet,
-/area/library)
-"bZK" = (
-/obj/structure/bookcase/random/nonfiction,
-/turf/open/floor/wood,
-/area/library)
-"bZL" = (
-/obj/machinery/air_sensor/atmos/nitrous_tank,
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"bZM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"bZN" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/rack_parts,
-/obj/item/rack_parts,
-/obj/item/wrench,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"bZO" = (
-/obj/machinery/air_sensor/atmos/toxin_tank,
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"bZP" = (
-/obj/machinery/air_sensor/atmos/carbon_tank,
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"bZQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bZR" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bZS" = (
-/turf/closed/wall/r_wall,
-/area/library)
-"bZT" = (
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/obj/item/tank/internals/anesthetic,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"bZU" = (
-/obj/structure/table/wood,
-/obj/machinery/door/window/northright{
- name = "Library Desk Window";
- req_access_txt = "37"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"bZV" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced/spawner/north,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"bZW" = (
-/obj/structure/sign/warning/fire,
-/turf/closed/wall/r_wall,
-/area/science/mixing)
-"bZX" = (
-/obj/structure/table/wood,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/computer/libraryconsole/bookmanagement,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"bZY" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"bZZ" = (
-/obj/machinery/vending/wardrobe/curator_wardrobe,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"caa" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"cab" = (
-/obj/structure/bookcase/random/adult{
- name = "Forbidden Knowledge"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"cac" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"cad" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"cae" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/light,
-/obj/item/storage/firstaid/toxin,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"caf" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cag" = (
-/obj/structure/table/reinforced,
-/obj/item/integrated_electronics/analyzer,
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cah" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cai" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"caj" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cak" = (
-/obj/structure/sign/warning/fire,
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal/incinerator)
-"cal" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 10
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/engine/atmos)
-"cam" = (
-/obj/machinery/door/poddoor/incinerator_atmos_main,
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"can" = (
-/obj/machinery/power/turbine{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"cao" = (
-/obj/machinery/power/compressor{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"cap" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/air_sensor/atmos/incinerator_tank{
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/machinery/igniter/incinerator_atmos,
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"caq" = (
-/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"car" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cas" = (
-/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"cat" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input,
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"cau" = (
-/obj/machinery/door/poddoor/incinerator_atmos_aux,
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"cav" = (
-/turf/closed/wall/r_wall,
-/area/science/explab)
-"caw" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/explab)
-"cax" = (
-/turf/closed/wall,
-/area/science/explab)
-"cay" = (
-/obj/machinery/air_sensor/atmos/nitrogen_tank,
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"caz" = (
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/mechbay)
-"caA" = (
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"caB" = (
-/obj/structure/closet/bombcloset,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"caC" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/extinguisher{
- pixel_x = -7;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/stack/cable_coil/red,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"caD" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/disposal)
-"caE" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"caF" = (
-/obj/machinery/air_sensor/atmos/oxygen_tank,
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"caG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"caH" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"caI" = (
-/obj/structure/table/reinforced,
-/obj/item/integrated_electronics/analyzer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science RC";
- pixel_x = 30;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"caJ" = (
-/obj/machinery/air_sensor/atmos/air_tank,
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"caK" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/atmospherics/miner/nitrogen,
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"caL" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/miner/oxygen,
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"caM" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"caN" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"caO" = (
-/obj/machinery/rnd/production/circuit_imprinter/department/science,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"caP" = (
-/obj/structure/chair/office/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/explab)
-"caQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Medbay Lobby"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white/side,
-/area/medical/medbay/lobby)
-"caR" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/kirbyplants{
- icon_state = "plant-06"
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"caS" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"caT" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/plating,
-/area/science/explab)
-"caU" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/closed/wall/r_wall,
-/area/science/explab)
-"caV" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Pen 1";
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"caW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"caX" = (
-/turf/open/floor/engine,
-/area/science/explab)
-"caY" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"caZ" = (
-/obj/machinery/light/small{
- dir = 4;
- light_color = "#d8b1b1"
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Pen 2";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cba" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/science/explab)
-"cbb" = (
-/turf/closed/wall/r_wall,
-/area/science/storage)
-"cbc" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/stack/sheet/metal/ten,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/obj/item/screwdriver,
-/obj/item/screwdriver,
-/obj/item/multitool,
-/obj/item/multitool,
-/obj/machinery/camera{
- c_tag = "Research - Circuitry Lab";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cbd" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/radio,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cbe" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/engine,
-/area/science/explab)
-"cbf" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/sleeper{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cbg" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/engine,
-/area/science/storage)
-"cbh" = (
-/obj/machinery/rnd/experimentor,
-/turf/open/floor/engine,
-/area/science/explab)
-"cbi" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "capblast";
- name = "blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
-"cbj" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"cbk" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/quartermaster/qm";
- dir = 8;
- name = "Quartermaster's Office APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"cbl" = (
-/obj/structure/table/reinforced,
-/obj/item/healthanalyzer,
-/turf/open/floor/engine,
-/area/science/explab)
-"cbm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"cbn" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"cbo" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cbp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "capblast";
- name = "blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/captain)
-"cbq" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/pen,
-/turf/open/floor/engine,
-/area/science/explab)
-"cbr" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cbs" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cbt" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/science/explab)
-"cbu" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine,
-/area/science/storage)
-"cbv" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/sign/warning/biohazard{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"cbw" = (
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cbx" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/syringes,
-/obj/item/pen/blue,
-/turf/open/floor/engine,
-/area/science/explab)
-"cby" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cbz" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/reagent_containers/dropper,
-/obj/item/pen/red,
-/turf/open/floor/engine,
-/area/science/explab)
-"cbA" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"cbB" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cbC" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"cbD" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cbE" = (
-/turf/closed/wall/r_wall,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cbF" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cbG" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cbH" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"cbI" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cbJ" = (
-/obj/structure/table/reinforced,
-/obj/item/analyzer,
-/obj/item/t_scanner,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/engine/supermatter";
- dir = 4;
- name = "Thermo-Electric Generator APC";
- pixel_x = 24
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"cbK" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/sign/departments/chemistry{
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cbL" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external{
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cbM" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/obj/item/storage/box/lights/mixed,
-/obj/item/stack/sheet/glass,
-/obj/item/stack/sheet/glass,
-/obj/structure/cable{
- icon_state = "1-10"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cbN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cbO" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cbP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"cbQ" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/obj/item/reagent_containers/food/snacks/meat/slab/spider,
-/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"cbR" = (
-/obj/structure/cable{
- icon_state = "1-10"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"cbS" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "starboard_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cbT" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = -2;
- pixel_y = -27
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cbU" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 8;
- name = "Air to Distro"
- },
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/engine/atmos";
- name = "Atmospherics APC";
- pixel_y = -28
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cbV" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/science/server{
- name = "Computer Core"
- })
-"cbW" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cbX" = (
-/obj/structure/table,
-/obj/item/aicard,
-/obj/item/disk/tech_disk,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/circuit,
-/area/bridge)
-"cbY" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/science/server{
- name = "Computer Core"
- })
-"cbZ" = (
-/obj/machinery/computer/slot_machine,
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"cca" = (
-/obj/machinery/computer/slot_machine,
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"ccb" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/stairs/medium,
-/area/crew_quarters/bar)
-"ccc" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"ccd" = (
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cce" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/science/circuit)
-"ccf" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/conveyor{
- dir = 1;
- id = "starboard_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"ccg" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cch" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "router"
- },
-/turf/open/floor/plating,
-/area/router)
-"cci" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/mass_driver{
- id = "workshop_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router)
-"ccj" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "Routing Depot";
- req_one_access_txt = "10;31"
- },
-/turf/open/floor/plating,
-/area/router)
-"cck" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ccl" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs,
-/area/maintenance/department/chapel)
-"ccm" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/science/robotics/lab)
-"ccn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "router"
- },
-/turf/open/floor/plating,
-/area/router)
-"cco" = (
-/obj/machinery/conveyor/auto{
- id = "router"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"ccp" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"ccq" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/poster/official/nanomichi_ad{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"ccr" = (
-/obj/structure/disposalpipe/trunk,
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"ccs" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor{
- dir = 1;
- id = "starboard_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cct" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/science/robotics/mechbay)
-"ccu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"ccv" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/door/airlock/mining{
- name = "Mining Office";
- req_one_access_txt = "10;24;48"
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"ccw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"ccx" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccy" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "router"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/router)
-"ccz" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"ccA" = (
-/obj/machinery/disposal/deliveryChute,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"ccB" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/folder/white,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics2";
- name = "robotics lab shutters"
- },
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Robotics Desk";
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
-"ccC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"ccD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"ccE" = (
-/obj/machinery/mass_driver{
- id = "eng_in";
- name = "Router Driver"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/router)
-"ccF" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/flashlight,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"ccG" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/camera{
- c_tag = "Atmospherics East";
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"ccH" = (
-/obj/machinery/mass_driver{
- dir = 8;
- id = "disposal_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"ccI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ccJ" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "starboard_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"ccK" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ccL" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/rnd/bepis,
-/turf/open/floor/engine,
-/area/science/explab)
-"ccM" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ccN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"ccO" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"ccP" = (
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 8
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"ccQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"ccR" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"ccS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/courtroom)
-"ccT" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"ccU" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"ccV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Starboard Quarter Maintenance";
- req_one_access_txt = "12;48"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"ccW" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"ccX" = (
-/obj/effect/turf_decal/loading_area{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"ccY" = (
-/obj/structure/cable,
-/obj/effect/landmark/start/librarian,
-/obj/machinery/power/apc{
- areastring = "/area/library";
- dir = 4;
- name = "Library APC";
- pixel_x = 24
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"ccZ" = (
-/obj/structure/closet/cardboard,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cda" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cdb" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cdc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"cdd" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"cde" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/mineral/titanium/blue,
-/area/hallway/primary/central)
-"cdf" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cdg" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdh" = (
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cdi" = (
-/obj/machinery/disposal/deliveryChute,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cdj" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/table/wood,
-/obj/machinery/microwave,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdk" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdl" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdm" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/photocopier,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/paper/guides/cogstation/disposals,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdn" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cdo" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cdp" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/obj/machinery/atmospherics/pipe/simple/violet/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cdq" = (
-/obj/machinery/mass_driver{
- id = "sq_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cdr" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cds" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdt" = (
-/turf/closed/wall/r_wall,
-/area/router/eng)
-"cdu" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdv" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdw" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdx" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"cdy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/closed/wall,
-/area/engine/break_room)
-"cdz" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdA" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/structure/sign/warning/enginesafety,
-/turf/closed/wall,
-/area/engine/break_room)
-"cdC" = (
-/turf/closed/wall,
-/area/engine/break_room)
-"cdD" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/stripes/line,
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science RC";
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cdE" = (
-/obj/structure/table/wood,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/item/tape,
-/obj/item/taperecorder{
- pixel_x = -4
- },
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"cdF" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"cdG" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "engblock";
- name = "Engineering Router"
- },
-/turf/open/floor/plating,
-/area/router/eng)
-"cdH" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall,
-/area/engine/break_room)
-"cdI" = (
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"cdJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdK" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdN" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/door/airlock/command{
- name = "Chief Engineer's Office";
- req_access_txt = "56"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cdO" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "EngiLockdown";
- name = "Engineering Emergency Lockdown"
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdP" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Aft Hall - Primary Tool Storage";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cdQ" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "EngiLockdown";
- name = "Engineering Emergency Lockdown"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdR" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/sign/poster/contraband/hacking_guide{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cdS" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/engine/break_room)
-"cdT" = (
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Asteroid Mining Access";
- req_access_txt = "10;24"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cdU" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- id = "eng"
- },
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "engblock";
- name = "Engineering Router"
- },
-/turf/open/floor/plating,
-/area/router/eng)
-"cdV" = (
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"cdW" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics2";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"cdX" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/landmark/start/chemist,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_y = -30
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cdY" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cdZ" = (
-/turf/closed/wall/r_wall,
-/area/medical/medbay/lobby)
-"cea" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/photocopier,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- name = "Cargo RC";
- pixel_y = 30
- },
-/obj/machinery/camera{
- c_tag = "Supply - Delivery Office Aft";
- network = list("ss13","rd")
- },
-/obj/item/paper/guides/cogstation/disposals,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ceb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics3";
- name = "robotics lab shutters"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
-"cec" = (
-/obj/structure/table/glass,
-/obj/item/paicard,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"ced" = (
-/obj/machinery/computer/med_data{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cee" = (
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cef" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"ceg" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"ceh" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"cei" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cej" = (
-/obj/machinery/vending/medical,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cek" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"cel" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cem" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/door/window/eastright{
- name = "Medbay Desk";
- req_access_txt = "5"
- },
-/obj/item/folder/white,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cen" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/bridge)
-"ceo" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/bridge)
-"cep" = (
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Satellite Exterior - Starboard Bow";
- dir = 1;
- network = list("tcomms");
- pixel_x = 22
- },
-/turf/open/space/basic,
-/area/space)
-"ceq" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall/rust,
-/area/engine/teg_hot)
-"cer" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/mass_driver{
- dir = 1;
- id = "eng_out";
- name = "Router Driver"
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plating,
-/area/router/eng)
-"ces" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/conveyor/auto{
- id = "eng"
- },
-/obj/structure/window/reinforced/spawner/east,
-/turf/open/floor/plating,
-/area/router/eng)
-"cet" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"ceu" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"cev" = (
-/obj/machinery/vending/games,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"cew" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "service"
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plating,
-/area/router/eng)
-"cex" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"cey" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Arcade"
- },
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"cez" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/storage/firstaid/fire{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/fire{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/fire{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/brute,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"ceA" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/storage/firstaid/toxin{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/toxin{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/toxin{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/o2,
-/obj/item/storage/firstaid/o2,
-/obj/item/storage/firstaid/o2,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"ceB" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"ceC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
-"ceD" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry_home";
- name = "port bay 2";
- width = 5
- },
-/turf/open/space/basic,
-/area/space)
-"ceE" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Ferry Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"ceF" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- name = "Ferry Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"ceG" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "trash";
- name = "Disposal Driver"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ceH" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- id = "trash";
- name = "Disposal Bay Door"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ceI" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"ceJ" = (
-/obj/machinery/power/solar_control{
- dir = 4;
- name = "Starboard Quarter Solar Control"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"ceK" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/router/eng)
-"ceL" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/table,
-/obj/item/destTagger,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/eng)
-"ceM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/button/massdriver{
- id = "eng_out";
- pixel_x = -24;
- pixel_y = 24
- },
-/obj/machinery/button/door{
- id = "engblock";
- name = "Router Access Control";
- pixel_x = -24;
- pixel_y = 32;
- req_access_txt = "31"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/eng)
-"ceN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/eng)
-"ceO" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = 29
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/eng)
-"ceP" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/router/eng)
-"ceQ" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = -32
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
- icon_state = "2-5"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"ceR" = (
-/obj/machinery/door/poddoor{
- id = "TEGMixVent";
- name = "Mixing Chamber Vent"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"ceS" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"ceT" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/computer/cargo/request{
- dir = 4
- },
-/obj/machinery/light/small,
-/obj/machinery/requests_console{
- department = "Engineering Router";
- name = "Engineering Router RC";
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/router/eng)
-"ceU" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 9
- },
-/obj/structure/fireaxecabinet{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"ceV" = (
-/turf/open/floor/plasteel,
-/area/router/eng)
-"ceW" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/router/eng)
-"ceX" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/power/apc{
- name = "Engineering Router APC";
- pixel_y = -24
- },
-/obj/machinery/light/small,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/router/eng)
-"ceY" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"ceZ" = (
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Asteroid Mining Access";
- req_access_txt = "10;24"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cfa" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 6
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfb" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/photocopier,
-/turf/open/floor/carpet/blue,
-/area/medical/medbay/central)
-"cfc" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"cfd" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cfe" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Port Bow Hall - Starboard";
- network = list("ss13","rd")
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cff" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 10
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfg" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/effect/landmark/start/research_director,
-/obj/machinery/camera{
- c_tag = "Research Director's Office - Port";
- network = list("ss13","rd")
- },
-/obj/machinery/keycard_auth{
- pixel_x = -8;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"cfh" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cfi" = (
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cfj" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cfk" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cfl" = (
-/turf/closed/wall,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cfm" = (
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cfn" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cfo" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfp" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfq" = (
-/obj/structure/lattice/catwalk,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cfr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Mixing Chamber Access";
- req_one_access_txt = "10;24"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/engine/teg_hot)
-"cfs" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cft" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/camera{
- c_tag = "Engineering - Mixing Chamber";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/teg_hot)
-"cfu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"cfv" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cfw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Engineering Construction Area";
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cfx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cfy" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"cfz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cfA" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfB" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfD" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cfE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"cfF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/teg_hot)
-"cfG" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Tech Storage";
- req_access_txt = "19;23"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"cfH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/outlet_injector/on,
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/sparker{
- id = "TEGMixIgniter";
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/ash,
-/obj/effect/decal/remains/human,
-/turf/open/floor/engine/vacuum,
-/area/engine/teg_hot)
-"cfJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"cfK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/teg_hot)
-"cfL" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Access";
- req_access_txt = "24"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cfM" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cfN" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cfO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cfP" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cfQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Library Access"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/library)
-"cfR" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cfS" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"cfT" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cfU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/item/beacon,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cfV" = (
-/obj/machinery/door/airlock/external{
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cfW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/window/plasma/reinforced/spawner/north,
-/obj/structure/window/plasma/reinforced/spawner,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/engine/teg_hot)
-"cfX" = (
-/obj/item/pipe,
-/obj/structure/cable{
- icon_state = "2-5"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"cfY" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/metal,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"cfZ" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/stairs/right,
-/area/science/research{
- name = "Research Sector"
- })
-"cga" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cgb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Mixing Chamber Access";
- req_one_access_txt = "10;24"
- },
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plating,
-/area/engine/teg_hot)
-"cgc" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cgd" = (
-/obj/structure/fans/tiny,
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cge" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external{
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cgf" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/science/robotics/lab)
-"cgg" = (
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cgh" = (
-/obj/machinery/pipedispenser,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/atmos)
-"cgi" = (
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"cgj" = (
-/obj/machinery/conveyor/auto{
- id = "cargo"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cgk" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/conveyor/auto{
- id = "cargo"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cgl" = (
-/obj/machinery/button/door{
- id = "TEGMixVent";
- name = "Mixing Chamber Vent";
- pixel_y = 24;
- req_access_txt = "10"
- },
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "atmos mix to burn"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cgm" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cgn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cgo" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cgp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 10
- },
-/obj/machinery/button/ignition{
- id = "TEGMixIgniter";
- name = "Mix Igniter";
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cgq" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cgr" = (
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/science/robotics/mechbay";
- dir = 1;
- name = "Mech Bay APC";
- pixel_y = 28
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/mechbay)
-"cgs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cgt" = (
-/obj/structure/rack,
-/obj/item/caution,
-/obj/item/caution,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cgu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cgv" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cgw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cgx" = (
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cgy" = (
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/rust,
-/area/maintenance/solars/starboard/aft)
-"cgz" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cgA" = (
-/obj/machinery/pipedispenser/disposal,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/atmos)
-"cgB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cgC" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"cgD" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/teg_hot)
-"cgE" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cgF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/spawner/north,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/science/server{
- name = "Computer Core"
- })
-"cgG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/spawner/north,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/science/server{
- name = "Computer Core"
- })
-"cgH" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"cgI" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"cgJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"cgK" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"cgL" = (
-/obj/machinery/computer/rdservercontrol{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/dark,
-/area/science/server{
- name = "Computer Core"
- })
-"cgM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cgN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"cgO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"cgP" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/closed/wall/r_wall,
-/area/science/server{
- name = "Computer Core"
- })
-"cgQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/science/server{
- name = "Computer Core"
- })
-"cgR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cgS" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- dir = 4;
- node1_concentration = 0.8;
- node2_concentration = 0.2;
- on = 1;
- target_pressure = 4500
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cgT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cgU" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4;
- name = "manual mix to burn"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cgV" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cgW" = (
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 3;
- height = 5;
- id = "mining_home";
- name = "mining shuttle bay";
- roundstart_template = /datum/map_template/shuttle/mining/delta;
- width = 7
- },
-/turf/open/space/basic,
-/area/space)
-"cgX" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cgY" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cgZ" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cha" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- sortType = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"chb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"chc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"chd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/landmark/start/cargo_technician,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"che" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"chf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"chg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"chh" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"chi" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"chj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"chk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"chl" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"chm" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/closed/wall/r_wall/rust,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"chn" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/disposal/incinerator";
- dir = 8;
- name = "Incinerator APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cho" = (
-/turf/closed/wall/r_wall/rust,
-/area/maintenance/department/eva)
-"chp" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"chq" = (
-/obj/machinery/pipedispenser/disposal/transit_tube,
-/obj/effect/turf_decal/stripes/end,
-/turf/open/floor/plasteel/dark,
-/area/engine/atmos)
-"chr" = (
-/obj/machinery/atmospherics/components/binary/valve/digital,
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"chs" = (
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cht" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"chu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"chv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"chw" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"chx" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"chy" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"chz" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"chA" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"chB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"chC" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"chD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"chE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_cold)
-"chF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/analyzer,
-/obj/item/pipe_dispenser,
-/obj/item/wrench,
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"chG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"chH" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/closed/wall/r_wall/rust,
-/area/maintenance/fore)
-"chI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"chJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"chK" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/teg_cold)
-"chL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"chM" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"chN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"chO" = (
-/obj/structure/table,
-/obj/machinery/requests_console{
- department = "Atmospherics";
- departmentType = 4;
- name = "Atmos RC";
- pixel_x = 30
- },
-/obj/item/clothing/head/welding{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/clothing/glasses/welding,
-/obj/item/multitool,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/atmos)
-"chP" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Law Office";
- req_access_txt = "38"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"chQ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"chR" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/science/mixing";
- dir = 1;
- name = "Toxins Lab APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"chS" = (
-/obj/machinery/suit_storage_unit/atmos,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/engine/atmos)
-"chT" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"chU" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"chV" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"chW" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"chX" = (
-/obj/structure/sign/warning/nosmoking,
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"chY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/table,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/storage/hypospraykit/fire,
-/obj/item/grenade/chem_grenade/smart_metal_foam,
-/obj/item/grenade/chem_grenade/smart_metal_foam,
-/obj/item/wrench,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"chZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cia" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cib" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cic" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cid" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/item/analyzer,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cie" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_cold)
-"cif" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cig" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cih" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cii" = (
-/obj/machinery/disposal/deliveryChute,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cij" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/westleft{
- name = "Science Desk";
- req_one_access_txt = "29;47"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/lab)
-"cik" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/mass_driver{
- dir = 8;
- id = "router_in";
- name = "Router Driver"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cil" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cim" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 1;
- sortType = 11
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cin" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cio" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/turf/closed/wall,
-/area/science/robotics/mechbay)
-"cip" = (
-/obj/machinery/mass_driver{
- id = "cargo_in";
- name = "Router Driver"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ciq" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cir" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"cis" = (
-/obj/structure/sign/warning/vacuum{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cit" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ciu" = (
-/obj/structure/barricade/wooden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/poster/ripped{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"civ" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ciw" = (
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"cix" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ciy" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ciz" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/item/reagent_containers/food/drinks/trophy,
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"ciA" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"ciB" = (
-/obj/structure/frame/computer,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/airless,
-/area/maintenance/port/fore)
-"ciC" = (
-/obj/structure/table,
-/obj/item/paper/pamphlet/gateway,
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"ciD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"ciE" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"ciF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"ciG" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "disposal_off"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ciH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 6
- },
-/obj/machinery/meter,
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"ciI" = (
-/turf/closed/wall/r_wall/rust,
-/area/quartermaster/warehouse)
-"ciJ" = (
-/turf/closed/wall/rust,
-/area/quartermaster/warehouse)
-"ciK" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"ciL" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"ciM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ciN" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/donkpockets{
- pixel_y = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "kitchenlock";
- name = "Kitchen Lockup"
- },
-/obj/machinery/door/window/northleft{
- name = "Kitchen Slider";
- req_access_txt = "28"
- },
-/obj/machinery/door/window/southleft{
- name = "Bar Slider";
- req_access_txt = "25"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/kitchen)
-"ciO" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "disposal_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ciP" = (
-/obj/effect/turf_decal/delivery,
-/obj/item/weldingtool,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"ciQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"ciR" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/door/airlock/security{
- name = "Cargo Security Checkpoint";
- req_access_txt = "63"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"ciS" = (
-/obj/machinery/conveyor/auto{
- dir = 9;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ciT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/structure/closet/radiation,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28;
- pixel_y = -4
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"ciU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"ciV" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ciW" = (
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 8;
- sortType = 11
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"ciX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"ciY" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/emergency,
-/obj/item/wrench,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/machinery/power/apc{
- areastring = "/area/engine/teg_hot";
- dir = 8;
- name = "Hot Loop APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"ciZ" = (
-/obj/machinery/atmospherics/components/binary/valve/digital,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cja" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cjb" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/landmark/start/shaft_miner,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cjc" = (
-/obj/structure/fans/tiny,
-/obj/structure/plasticflaps,
-/obj/machinery/door/poddoor{
- name = "Disposal Router"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cjd" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cje" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cjf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Cargo Detainment Cell";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cjg" = (
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cjh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cji" = (
-/obj/structure/fans/tiny,
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "disposal"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cjj" = (
-/turf/closed/wall,
-/area/crew_quarters/theatre/mime)
-"cjk" = (
-/obj/machinery/vending/autodrobe,
-/turf/open/floor/plasteel/checker,
-/area/crew_quarters/theatre/mime)
-"cjl" = (
-/obj/structure/closet/crate/wooden/toy,
-/obj/item/toy/figure/mime,
-/turf/open/floor/plasteel/checker,
-/area/crew_quarters/theatre/mime)
-"cjm" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/hallway/secondary/service)
-"cjn" = (
-/obj/structure/reagent_dispensers/cooking_oil,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/kitchen/backroom)
-"cjo" = (
-/obj/structure/table,
-/obj/item/flashlight/seclite,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"cjp" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/theatre/mime)
-"cjq" = (
-/turf/closed/wall/rust,
-/area/maintenance/port/central)
-"cjr" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/science/server{
- name = "Computer Core"
- })
-"cjs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cjt" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/quartermaster/office";
- dir = 1;
- name = "Cargo Office APC";
- pixel_y = 24
- },
-/obj/structure/sign/poster/contraband/scum{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cju" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/table,
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/item/clothing/ears/earmuffs,
-/obj/item/extinguisher{
- pixel_x = -12;
- pixel_y = -2
- },
-/obj/machinery/camera{
- c_tag = "Engineering - Hot Loop";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cjv" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/library)
-"cjw" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/wood,
-/area/library)
-"cjx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"cjy" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"cjz" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/kirbyplants/photosynthetic,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cjA" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cjB" = (
-/obj/item/stack/cable_coil/cut/red,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"cjC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/clothing/mask/cigarette,
-/obj/structure/sign/poster/official/twelve_gauge{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cjD" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/maintenance/department/eva)
-"cjE" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_y = 32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cjF" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_y = 32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cjG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cjH" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning/electricshock{
- pixel_x = -32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cjI" = (
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
-"cjJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "E.V.A. Storage";
- req_access_txt = "18"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cjK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_cold)
-"cjL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"cjM" = (
-/obj/structure/table,
-/obj/item/storage/box/lights/mixed,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/radio/off,
-/obj/item/multitool{
- pixel_x = -6
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"cjN" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Security - Visitation Area";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"cjO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
-"cjP" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cjQ" = (
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"cjR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Security's Office";
- req_one_access_txt = "58"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/hos)
-"cjS" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"cjT" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/landmark/start/security_officer,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"cjU" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"cjV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Engineering Sector"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cjW" = (
-/obj/structure/bed,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/item/bedsheet/hos,
-/obj/effect/landmark/start/head_of_security,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "hos";
- name = "HoS Office Shutters";
- pixel_y = -32;
- pixel_x = -5
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"cjX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 9
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_cold)
-"cjY" = (
-/obj/machinery/computer/station_alert{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/keycard_auth{
- pixel_x = 8;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cjZ" = (
-/obj/item/beacon,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cka" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"ckb" = (
-/obj/machinery/aug_manipulator,
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"ckc" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/aft/secondary";
- dir = 8;
- name = "Aft Air Hookup APC";
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"ckd" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cke" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/wood,
-/area/library)
-"ckf" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"ckg" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark/corner,
-/area/ai_monitored/storage/eva)
-"ckh" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"cki" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ckj" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"ckk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/camera{
- c_tag = "Research Maintenance";
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/circuit,
-/area/science/robotics/mechbay)
-"ckl" = (
-/turf/open/space/basic,
-/area/space/station_ruins)
-"ckm" = (
-/turf/closed/wall/r_wall,
-/area/engine/teg_cold)
-"ckn" = (
-/obj/machinery/door/airlock/external/glass{
- name = "External Solar Access";
- req_access_txt = "10;13"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"cko" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/engine/engineering";
- dir = 4;
- name = "Engine Room APC";
- pixel_x = 24
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"ckp" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/landmark/start/chemist,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"ckq" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"ckr" = (
-/obj/effect/landmark/start/cargo_technician,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cks" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"ckt" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cku" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"ckv" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Warehouse";
- req_one_access_txt = "10;31"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"ckw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"ckx" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cky" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"ckz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/table,
-/obj/item/pipe_dispenser,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"ckA" = (
-/obj/structure/sign/warning/fire,
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"ckB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/closet/crate/engineering,
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/item/rcl/pre_loaded,
-/obj/item/rcl/pre_loaded,
-/obj/item/stack/cable_coil/red,
-/obj/item/stack/cable_coil/red,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stock_parts/cell/high/plus,
-/obj/machinery/camera{
- c_tag = "Engineering - Cold Loop";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"ckC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/valve/digital{
- name = "gas to cold loop"
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"ckD" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/sign/warning/fire{
- pixel_x = 32;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"ckE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"ckF" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/engine/teg_cold";
- dir = 4;
- name = "Cold Loop APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"ckG" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ckH" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"ckI" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"ckJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/engine/teg_hot)
-"ckK" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/item/clothing/under/rank/cargo/miner,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"ckL" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/item/clothing/under/rank/cargo/miner,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"ckM" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/item/clothing/under/rank/cargo/miner,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"ckN" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/north,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"ckO" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"ckP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ckQ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ckR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/science/lab)
-"ckS" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"ckT" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ckU" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ckV" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ckW" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ckX" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"ckY" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/checker,
-/area/ai_monitored/storage/eva)
-"ckZ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"cla" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"clb" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"clc" = (
-/obj/machinery/vending/wardrobe/chem_wardrobe,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cld" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cle" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/science/misc_lab";
- dir = 1;
- name = "Research Observatory APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"clf" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Pen 3";
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"clg" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"clh" = (
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cli" = (
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"clj" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"clk" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cll" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"clm" = (
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cln" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"clo" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"clp" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"clq" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"clr" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"cls" = (
-/obj/structure/window/reinforced/spawner,
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"clt" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/sign/warning/electricshock,
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"clu" = (
-/obj/machinery/door/window/northleft{
- name = "Library Desk Door";
- req_access_txt = "37"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"clv" = (
-/obj/structure/table,
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"clw" = (
-/obj/effect/landmark/start/librarian,
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"clx" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cly" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"clz" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"clA" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"clB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"clC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"clD" = (
-/obj/machinery/telecomms/server/presets/medical,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clE" = (
-/obj/machinery/ntnet_relay,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clF" = (
-/obj/machinery/telecomms/server/presets/supply,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clG" = (
-/obj/machinery/telecomms/server/presets/engineering,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clH" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"clI" = (
-/obj/machinery/telecomms/bus/preset_four,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clJ" = (
-/obj/machinery/telecomms/broadcaster/preset_left,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clK" = (
-/obj/machinery/telecomms/processor/preset_four,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clL" = (
-/obj/machinery/telecomms/bus/preset_two,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clM" = (
-/obj/machinery/telecomms/broadcaster/preset_right,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clN" = (
-/obj/machinery/telecomms/processor/preset_two,
-/turf/open/floor/circuit/telecomms/mainframe,
-/area/tcommsat/server)
-"clO" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Electrical Substation";
- req_access_txt = "10"
- },
-/turf/open/floor/plating,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"clP" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/amplifier,
-/obj/item/stock_parts/subspace/amplifier,
-/obj/item/stock_parts/subspace/analyzer,
-/obj/item/stock_parts/subspace/analyzer,
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"clQ" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/ansible,
-/obj/item/stock_parts/subspace/ansible,
-/obj/item/stock_parts/subspace/crystal,
-/obj/item/stock_parts/subspace/crystal,
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"clR" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/transmitter,
-/obj/item/stock_parts/subspace/transmitter,
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"clS" = (
-/obj/structure/table,
-/obj/item/stock_parts/subspace/treatment,
-/obj/item/stock_parts/subspace/treatment,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"clT" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass,
-/obj/item/stack/sheet/glass,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stock_parts/micro_laser,
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"clU" = (
-/obj/structure/table,
-/obj/item/stock_parts/scanning_module,
-/obj/item/stock_parts/scanning_module,
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"clV" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Supply - Security Post";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"clW" = (
-/turf/closed/wall/rust,
-/area/storage/tech)
-"clX" = (
-/turf/closed/wall/rust,
-/area/maintenance/starboard/aft)
-"clY" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/closet/firecloset,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"clZ" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Escape Hall - Port";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cma" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Escape Hall - Starboard";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cmb" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Supply - Mining Dock";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cmc" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Starboard Quarter Solar Maintenance";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"cmd" = (
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cme" = (
-/obj/structure/bed,
-/obj/item/clothing/glasses/sunglasses/blindfold,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cmf" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cmg" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cmh" = (
-/obj/structure/sign/warning/radiation,
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"cmi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cmj" = (
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cmk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cml" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"cmm" = (
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cmn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cmo" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"cmp" = (
-/obj/machinery/door/airlock/engineering{
- name = "Gravity Generator";
- req_access_txt = "11"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cmq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cmr" = (
-/obj/machinery/gravity_generator/main/station,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cms" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cmt" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cmu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/cable,
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cmv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cmw" = (
-/obj/machinery/camera{
- c_tag = "Engineering - Gravity Generator";
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/gravity_generator)
-"cmx" = (
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/engine/gravity_generator)
-"cmy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Starboard Quarter Maintenance";
- req_one_access_txt = "12;48"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"cmz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Starboard Quarter Maintenance";
- req_one_access_txt = "12;48"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"cmA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Bar Backroom";
- req_access_txt = "25"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"cmB" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/northright{
- name = "Emergency Shower"
- },
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"cmC" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"cmD" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/deliveryChute,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cmE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cmF" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/mineral/titanium/blue,
-/area/hallway/primary/central)
-"cmG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cmH" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "cargoblock";
- name = "Cargo Router"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cmI" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/item/radio/off{
- pixel_x = -3;
- pixel_y = 1
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cmJ" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Mining Dock";
- req_one_access_txt = "10;24;48"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cmK" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cmL" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cmM" = (
-/obj/structure/sign/poster/official/safety_internals{
- pixel_x = -32
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cmN" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/item/radio/intercom{
- frequency = 1359;
- name = "Station Intercom (Security)";
- pixel_y = -28
- },
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"cmO" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=1";
- dir = 1;
- freq = 1400;
- location = "Engineering"
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cmP" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"cmQ" = (
-/obj/machinery/light/small{
- dir = 4;
- light_color = "#d8b1b1"
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Pen 4";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cmR" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cmS" = (
-/obj/structure/rack,
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/assembly/prox_sensor,
-/obj/item/assembly/prox_sensor,
-/obj/item/assembly/prox_sensor,
-/obj/item/assembly/prox_sensor,
-/obj/item/assembly/prox_sensor,
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cmT" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/folder/red,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/door/window/northright{
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cmU" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cmV" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cmW" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Cargo";
- name = "Cargo RC";
- pixel_x = -30
- },
-/obj/machinery/camera{
- c_tag = "Supply - Quartermaster's Office";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"cmX" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"cmY" = (
-/obj/machinery/door/airlock/engineering{
- name = "Hot Loop";
- req_one_access_txt = "10;24"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cmZ" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/atmospherics/components/unary/cryo_cell{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cna" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/atmospherics/components/unary/cryo_cell{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cnb" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/stripes/line,
-/obj/item/storage/box/beakers{
- pixel_x = -4
- },
-/obj/item/storage/box/syringes{
- pixel_x = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cnc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cnd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cne" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cnf" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cng" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"cnh" = (
-/obj/machinery/door/airlock/engineering{
- name = "Cold Loop";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cni" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cnj" = (
-/obj/machinery/camera{
- c_tag = "Research - Observatory";
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cnk" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cnl" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1;
- pixel_x = 5
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cnm" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/gateway)
-"cnn" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cno" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cnp" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/bridge)
-"cnq" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/mob/living/simple_animal/cockroach,
-/turf/open/floor/plating,
-/area/maintenance/port/central)
-"cnr" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cns" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cnt" = (
-/obj/structure/fans/tiny,
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "disposal"
- },
-/obj/machinery/door/poddoor{
- name = "Disposal Router"
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cnu" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/gateway)
-"cnv" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/bot,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/frame/computer,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cnw" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cnx" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cny" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cnz" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/obj/structure/sign/departments/chemistry{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cnA" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cnB" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cnC" = (
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"cnD" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cnE" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 9;
- height = 22;
- id = "emergency_home";
- name = "CogStation Escape Dock";
- width = 29
- },
-/turf/open/space/basic,
-/area/space)
-"cnF" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/port/fore)
-"cnG" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"cnH" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"cnI" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"cnJ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space/basic,
-/area/solar/port)
-"cnK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cnL" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"cnM" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"cnN" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"cnO" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/science/storage)
-"cnP" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"cnQ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"cnR" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/solar/starboard/aft)
-"cnS" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/highcap/fifteen_k{
- areastring = /area/maintenance/solars/starboard/aft;
- dir = 1;
- name = "Starboard Quarter Solars APC";
- pixel_y = 26
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
-"cnT" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"cnU" = (
-/obj/machinery/door/poddoor/incinerator_toxmix,
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"cnV" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"cnW" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/library)
-"cnX" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/vehicle/ridden/wheelchair,
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cnY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/vehicle/ridden/wheelchair,
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cnZ" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/holopad,
-/obj/machinery/requests_console{
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"coa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cob" = (
-/obj/structure/closet/l3closet/virology,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/sign/warning/biohazard{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"coc" = (
-/obj/machinery/camera{
- c_tag = "Medbay - Reception";
- dir = 4
- },
-/turf/open/floor/plasteel/stairs,
-/area/medical/medbay/central)
-"cod" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/machinery/light,
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/medical/medbay/lobby)
-"coe" = (
-/obj/structure/bodycontainer/morgue,
-/obj/machinery/camera{
- c_tag = "Medbay Morgue";
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"cof" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cog" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"coh" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/engine/storage_shared{
- name = "Electrical Substation"
- })
-"coi" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"coj" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cok" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"col" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"com" = (
-/obj/machinery/chem_master,
-/obj/effect/turf_decal/stripes/end{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"con" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/station_engineer,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"coo" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cop" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "CEPrivacy";
- name = "CE Privacy Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
-"coq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Departures"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cor" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Departures"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cos" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Workshop";
- req_access_txt = "11"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cot" = (
-/obj/machinery/computer/apc_control{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cou" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/chief_engineer,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cov" = (
-/obj/structure/sign/warning/nosmoking{
- pixel_y = -32
- },
-/turf/closed/wall,
-/area/medical/medbay/central)
-"cow" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Asteroid Mining Access";
- req_one_access_txt = "10;48"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cox" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"coy" = (
-/obj/structure/sign/poster/official/safety_internals{
- pixel_x = -32
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"coz" = (
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"coA" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/camera{
- c_tag = "Aft Maintenance - Starboard Quarter";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coB" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Aft Hallway - MedSci Port";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"coC" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/camera{
- c_tag = "Aft Maintenance - Starboard Bow";
- pixel_x = 22
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"coE" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Aft Hall - MedSci Starboard";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"coF" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/landmark/start/assistant,
-/obj/machinery/camera{
- c_tag = "Aft Hall - Workshop";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"coG" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Research - Experimentation Lab";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"coH" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- name = "Robotics Lab";
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"coI" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/gateway)
-"coJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Virology Access";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/medical/virology)
-"coK" = (
-/obj/machinery/camera{
- c_tag = "Medbay - Monkey Pen";
- dir = 4
- },
-/mob/living/carbon/monkey,
-/turf/open/floor/grass,
-/area/medical/virology)
-"coL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=cargo";
- location = "eng2"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"coM" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"coN" = (
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- sortType = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"coO" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Central Hall";
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"coP" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin,
-/obj/machinery/camera{
- c_tag = "Central Plaza - Port";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"coQ" = (
-/obj/machinery/camera{
- c_tag = "Central Docking Bay"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"coR" = (
-/obj/machinery/camera{
- c_tag = "Ferry Docking Bay";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"coS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Ferry Docking Bay - Starboard";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"coT" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"coU" = (
-/obj/machinery/computer/secure_data{
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Security - Front Desk";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"coV" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/camera{
- c_tag = "Medbay Entrance";
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"coW" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/techstorage/engineering,
-/obj/machinery/camera{
- c_tag = "Technical Storage";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"coX" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Medbay - Operating Theatre";
- dir = 8;
- network = list("ss13","medbay");
- pixel_y = -22
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"coY" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/machinery/camera{
- c_tag = "Medbay - Cryogenics";
- dir = 1
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"coZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cpa" = (
-/obj/structure/closet/crate/radiation,
-/obj/item/storage/firstaid/radbgone,
-/obj/item/clothing/suit/radiation,
-/obj/item/clothing/head/radiation,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpb" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/sign/warning/biohazard{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/medical/virology)
-"cpc" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cpd" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/crew_quarters/fitness)
-"cpe" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/white/full,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"cpf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cpg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cph" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cpi" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 5
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cpj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cpk" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpl" = (
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cpm" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/open/floor/plasteel/dark,
-/area/lawoffice)
-"cpn" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cpo" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpp" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- id = "cargo"
- },
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/preopen{
- id = "cargoblock";
- name = "Cargo Router"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cpq" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/abandoned_gambling_den{
- name = "Arcade"
- })
-"cpr" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cps" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"cpt" = (
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/captain)
-"cpu" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/wood,
-/area/library)
-"cpv" = (
-/obj/structure/table,
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cpw" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/science/robotics/lab)
-"cpx" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/mineral/titanium/blue,
-/area/hallway/primary/central)
-"cpy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cpz" = (
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"cpA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpB" = (
-/obj/effect/landmark/carpspawn,
-/turf/open/space/basic,
-/area/space)
-"cpC" = (
-/obj/effect/landmark/carpspawn,
-/turf/open/space/basic,
-/area/space/station_ruins)
-"cpD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/engine,
-/area/science/storage)
-"cpE" = (
-/obj/structure/fans/tiny,
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cpF" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/department/eva)
-"cpH" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/directions/engineering{
- dir = 4;
- pixel_y = -24
- },
-/obj/structure/sign/directions/supply{
- dir = 4;
- pixel_y = -32
- },
-/obj/structure/sign/directions/evac{
- dir = 4;
- pixel_y = -40
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cpI" = (
-/obj/machinery/chem_dispenser,
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"cpJ" = (
-/turf/closed/wall/r_wall/rust,
-/area/quartermaster/office)
-"cpK" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cpL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cpM" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 1;
- light_color = "#e8eaff"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cpN" = (
-/obj/structure/closet/secure_closet/atmospherics,
-/obj/item/cartridge/atmos,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/atmos)
-"cpO" = (
-/obj/structure/closet/secure_closet/atmospherics,
-/obj/item/cartridge/atmos,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/dark,
-/area/engine/atmos)
-"cpP" = (
-/obj/machinery/camera{
- c_tag = "Research - Gateway Atrium";
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"cpQ" = (
-/obj/machinery/vending/wardrobe/atmos_wardrobe,
-/obj/effect/turf_decal/stripes/line{
- dir = 6;
- layer = 2.03
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/engine/atmos)
-"cpR" = (
-/obj/structure/closet/crate/engineering/electrical,
-/obj/item/electronics/apc,
-/obj/item/electronics/apc,
-/obj/item/electronics/airalarm,
-/obj/item/electronics/airalarm,
-/obj/item/electronics/firelock,
-/obj/item/electronics/firelock,
-/obj/item/electronics/firealarm,
-/obj/item/electronics/firealarm,
-/obj/item/electronics/airlock,
-/obj/item/electronics/airlock,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpS" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpT" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpV" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cpW" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/start/cargo_technician,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cpX" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"cpY" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/teg_hot)
-"cpZ" = (
-/obj/structure/table,
-/obj/item/tank/internals/air,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/plasteel/dark,
-/area/engine/teg_hot)
-"cqa" = (
-/obj/machinery/autolathe,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqb" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cqc" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqd" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/mob/living/simple_animal/hostile/retaliate/goose{
- check_friendly_fire = 1;
- desc = "It may not be as wise as an owl, but the Head of Security's pet is far more dangerous.";
- faction = list("neutral","silicon","turret","station");
- name = "Officer Snooty"
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"cqe" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=eng1";
- location = "sci"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cqf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cqg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cqh" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cqi" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"cqj" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cqk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=med";
- location = "cargo"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cql" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=eng2";
- location = "evac"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cqm" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/obj/item/storage/box/disks_nanite,
-/obj/item/book/manual/wiki/research_and_development{
- pixel_x = 4;
- pixel_y = -8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cqn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqo" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Warehouse";
- req_one_access_txt = "10;24"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqr" = (
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/starboard/central";
- name = "Central Starboard Maintenance APC";
- pixel_y = -26
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/central)
-"cqs" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/paper/guides/jobs/engi/solars,
-/obj/item/pen,
-/obj/machinery/camera{
- c_tag = "Engineering Foyer - Port";
- network = list("ss13","rd")
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqt" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/noticeboard/qm{
- dir = 4;
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cqu" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/computer/atmos_alert,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqv" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/machinery/disposal/bin,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/white/full,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqx" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/modular_computer/console/preset/engineering,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqy" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/table/wood,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqz" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"cqA" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqB" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/absinthe,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"cqC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqD" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqE" = (
-/obj/machinery/conveyor_switch{
- id = "EngiCargoConveyer"
- },
-/obj/machinery/button/door{
- id = "EngiDeliverDoor";
- name = "Engineering Delivery Door Control";
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqF" = (
-/obj/effect/turf_decal/delivery,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cqG" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqH" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"cqI" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqJ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqK" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/sign/plaques/atmos{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cqL" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqN" = (
-/turf/closed/wall/rust,
-/area/maintenance/department/security)
-"cqO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cqP" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cqQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cqR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cqS" = (
-/obj/machinery/computer/rdconsole/experiment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science RC";
- pixel_x = -30;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"cqT" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cqU" = (
-/obj/machinery/door/airlock/external{
- name = "Escape Pod"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cqV" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"cqW" = (
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cqX" = (
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 5;
- height = 7;
- id = "supply_home";
- name = "Cargo Shuttle";
- width = 12
- },
-/turf/open/space/basic,
-/area/space)
-"cqY" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cqZ" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cra" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Auxiliary Tool Storage"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"crb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/turf/open/floor/plating,
-/area/engine/teg_cold)
-"crc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"crd" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/item/destTagger,
-/obj/item/destTagger,
-/obj/item/destTagger,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_y = 32
- },
-/obj/machinery/button/massdriver{
- id = "cargo_out";
- pixel_x = -8;
- pixel_y = -4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cre" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Asteroid Mining Access";
- req_one_access_txt = "10;48"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"crf" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/mechbay)
-"crg" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/door/airlock/medical/glass{
- name = "Chemistry Lab";
- req_access_txt = "5; 33"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"crh" = (
-/obj/machinery/mass_driver{
- dir = 1;
- id = "cargo_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cri" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"crj" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"crk" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/mineral/titanium/blue,
-/area/hallway/primary/central)
-"crl" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"crm" = (
-/obj/machinery/door/firedoor,
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 4;
- id = "EngiCargoConveyer"
- },
-/obj/machinery/door/poddoor{
- id = "EngiDeliverDoor";
- name = "Engineering Delivery Door"
- },
-/turf/open/floor/plating,
-/area/engine/teg_cold)
-"crn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "chem1";
- name = "chem lab shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"cro" = (
-/turf/closed/wall/r_wall/rust,
-/area/maintenance/starboard/aft)
-"crp" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"crq" = (
-/obj/structure/closet/crate/freezer,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/medical/morgue";
- dir = 4;
- name = "Morgue APC";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"crr" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Central Hall - Fore";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"crs" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/turf/open/floor/engine,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"crt" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cru" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"crv" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"crw" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"crx" = (
-/obj/machinery/camera{
- c_tag = "Engine Room - Port Quarter";
- dir = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cry" = (
-/obj/structure/bookcase/random/religion,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/wood,
-/area/library)
-"crz" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Satellite";
- dir = 1;
- network = list("tcomms")
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"crA" = (
-/obj/structure/bookcase/random/fiction,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/wood,
-/area/library)
-"crB" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Satellite Exterior - Port";
- dir = 8;
- network = list("tcomms")
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"crC" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Satellite Exterior Starboard";
- dir = 4;
- network = list("tcomms")
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"crD" = (
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Server Room";
- dir = 1;
- network = list("tcomms")
- },
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
-"crE" = (
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Satellite Exterior - Port Quarter";
- network = list("tcomms")
- },
-/turf/open/space/basic,
-/area/space)
-"crF" = (
-/obj/machinery/camera/motion{
- c_tag = "Telecomms Satellite Exterior - Starboard Quarter";
- network = list("tcomms");
- pixel_x = 22
- },
-/turf/open/space/basic,
-/area/space)
-"crG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"crH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"crI" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/science/mixing)
-"crJ" = (
-/obj/structure/window/reinforced,
-/obj/machinery/mass_driver{
- dir = 8;
- id = "toxinsdriver"
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/mixing)
-"crK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"crL" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"crM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/science/test_area)
-"crN" = (
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"crO" = (
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/end,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"crP" = (
-/obj/structure/lattice,
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"crQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/sign/poster/official/safety_internals{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"crR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"crS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Escape Pod"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"crT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/sign/poster/official/safety_internals{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"crU" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/item/crowbar,
-/obj/structure/sign/poster/official/safety_internals{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"crV" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"crW" = (
-/obj/effect/landmark/start/paramedic,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"crX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"crY" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"crZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs/left,
-/area/hallway/primary/aft)
-"csa" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/sign/warning/pods{
- pixel_x = -32;
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"csb" = (
-/obj/structure/sign/warning/pods{
- pixel_x = 32;
- pixel_y = 32
- },
-/turf/open/floor/plasteel/dark/corner{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"csc" = (
-/obj/structure/fans/tiny/invisible,
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 1;
- height = 4;
- name = "escape pod loader";
- roundstart_template = /datum/map_template/shuttle/escape_pod/default;
- width = 3
- },
-/turf/open/space/basic,
-/area/space)
-"csd" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cse" = (
-/obj/structure/table/wood,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/item/clipboard,
-/obj/item/paper/monitorkey,
-/obj/item/pen/fountain,
-/obj/item/stamp/ce,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 5;
- name = "Chief Engineer's RC";
- pixel_y = -32
- },
-/mob/living/simple_animal/parrot/Poly,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"csf" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Research Director's Desk";
- departmentType = 5;
- name = "Research Director's RC";
- pixel_y = -32;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"csg" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"csh" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"csi" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "chem1";
- name = "chem lab shutters"
- },
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"csj" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"csk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"csl" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
-"csm" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"csn" = (
-/obj/machinery/computer/security{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- name = "Security RC";
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"cso" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"csp" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_x = 28
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"csq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Cold Loop";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"csr" = (
-/obj/structure/table,
-/obj/machinery/computer/libraryconsole/bookmanagement,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_x = 30
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"css" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"cst" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/teg_cold)
-"csu" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/gateway)
-"csv" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/item/storage/toolbox/mechanical,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/paper/guides/cogstation/letter_supp,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"csw" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"csx" = (
-/obj/structure/closet/secure_closet/RD,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/paper/fluff/cogstation/letter_rd,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"csy" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/landmark/xmastree,
-/turf/open/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"csz" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"csA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Visitation"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"csB" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"csC" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating/asteroid,
-/area/hydroponics/garden{
- name = "Nature Preserve"
- })
-"csD" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"csE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hop)
-"csF" = (
-/obj/structure/bed,
-/obj/effect/landmark/start/research_director,
-/obj/item/bedsheet/rd,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"csG" = (
-/obj/machinery/holopad,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/lawoffice)
-"csH" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/library)
-"csI" = (
-/obj/structure/table/wood,
-/obj/machinery/light_switch{
- pixel_x = 4;
- pixel_y = -24
- },
-/obj/item/flashlight/lamp/green,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = -32
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"csJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"csK" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/door/window/northright{
- name = "Medbay Desk";
- req_access_txt = "5"
- },
-/obj/item/clipboard,
-/obj/item/clothing/glasses/hud/health,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/item/pen,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"csL" = (
-/obj/effect/landmark/xmastree/rdrod,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"csM" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"csN" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"csO" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"csP" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"csQ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"csR" = (
-/turf/open/floor/engine,
-/area/science/storage)
-"csS" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"csT" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"csU" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/storage/tech)
-"csV" = (
-/obj/machinery/mecha_part_fabricator,
-/obj/machinery/camera{
- c_tag = "Robotics Lab";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"csW" = (
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"csX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"csY" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"csZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/robotics/lab)
-"cta" = (
-/obj/effect/landmark/blobstart,
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"ctb" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/landmark/blobstart,
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine,
-/area/science/explab)
-"ctc" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ctd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cte" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ctf" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ctg" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cth" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cti" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ctj" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"ctk" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 4
- },
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"ctl" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/white/full,
-/obj/structure/window/reinforced/spawner/north,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"ctm" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/disposalpipe/sorting/mail/flip{
- sortType = 2
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ctn" = (
-/obj/structure/closet/secure_closet/engineering_chief,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/obj/item/paper/guides/cogstation/letter_chief,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cto" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/white/full,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ctp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ctq" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ctr" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"cts" = (
-/obj/structure/rack,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"ctt" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"ctu" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/machinery/camera{
- c_tag = "Supply - Cargo Office";
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_y = -28
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/item/storage/box/disks,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"ctv" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"ctw" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"ctx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cty" = (
-/obj/effect/landmark/start/shaft_miner,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"ctz" = (
-/obj/structure/table,
-/obj/item/stamp/qm,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/coin/silver{
- pixel_x = -12
- },
-/obj/item/key{
- pixel_x = 8;
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"ctA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_one_access_txt = "31;48"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"ctB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"ctC" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"ctD" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"ctE" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/modular_computer/console/preset/engineering,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced/spawner/north,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"ctF" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"ctG" = (
-/turf/closed/wall,
-/area/engine/workshop)
-"ctH" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"ctI" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"ctJ" = (
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/engine/workshop)
-"ctK" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- id = "workshop_off"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"ctL" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Pen 5";
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"ctM" = (
-/obj/machinery/light/small{
- dir = 4;
- light_color = "#d8b1b1"
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Pen 6";
- dir = 8;
- pixel_y = -22
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"ctN" = (
-/obj/machinery/light/small{
- dir = 4;
- light_color = "#d8b1b1"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ctO" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/sign/warning/biohazard{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"ctP" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ctQ" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"ctR" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"ctS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/sign/warning/biohazard{
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"ctT" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#c1caff"
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Aft";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"ctU" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"ctV" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/highcap/five_k{
- areastring = "/area/hallway/secondary/exit";
- name = "Escape Shuttle Hallway APC";
- pixel_y = -28
- },
-/turf/open/floor/plasteel/white/corner,
-/area/hallway/secondary/exit)
-"ctW" = (
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ctX" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"ctY" = (
-/obj/structure/sign/departments/xenobio{
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"ctZ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cua" = (
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cub" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cuc" = (
-/obj/machinery/door/airlock/virology/glass{
- name = "Monkey Pen";
- req_access_txt = "39"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cud" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology - Aft Access";
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cue" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access_txt = "8;55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cuf" = (
-/obj/machinery/light,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cug" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cuh" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cui" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cuj" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cuk" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cul" = (
-/obj/structure/chair/comfy/black,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cum" = (
-/obj/machinery/computer/operating,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cun" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/meat/steak,
-/obj/machinery/camera{
- c_tag = "Xenobiology - Test Chamber";
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cuo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"cup" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cuq" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cur" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cus" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cut" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 7;
- height = 9;
- id = "whiteship_home";
- name = "SS13: Merchant Dock";
- width = 13
- },
-/turf/open/space/basic,
-/area/space)
-"cuu" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuv" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cuw" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/kirbyplants/photosynthetic,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cux" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cuy" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cuz" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cuA" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cuB" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cuC" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/sign/warning/electricshock{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cuD" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cuE" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cuF" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuG" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cuH" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuI" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/screwdriver,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuJ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/screwdriver,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuK" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/closet/secure_closet/engineering_welding,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/engine/workshop";
- dir = 1;
- name = "Engineering Workshop APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuL" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuM" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/chair{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/closed/wall,
-/area/engine/workshop)
-"cuO" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cuP" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cuQ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"cuR" = (
-/turf/closed/wall,
-/area/router/air)
-"cuS" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/mass_driver{
- dir = 1;
- id = "workshop_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cuT" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/conveyor{
- id = "workshop_off"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cuU" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/sign/poster/official/build{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuV" = (
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cuW" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/mapping_helpers/airlock/unres,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cuX" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay";
- req_access_txt = "5"
- },
-/obj/effect/mapping_helpers/airlock/unres,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cuY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- name = "Robotics Lab";
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cuZ" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 10
- },
-/area/science/robotics/lab)
-"cva" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cvb" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cvc" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cvd" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cve" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"cvf" = (
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cvg" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cvh" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/computer/rdconsole/production{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cvi" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cvj" = (
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/machinery/conveyor{
- id = "DeliveryConveyer"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cvk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor{
- dir = 1;
- id = "DeliveryConveyer"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cvl" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/router/air)
-"cvm" = (
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/central";
- dir = 1;
- name = "Airbridge Router APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cvn" = (
-/obj/structure/table,
-/obj/item/destTagger,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/router/air)
-"cvo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"cvp" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/computer/cargo/request,
-/obj/machinery/camera{
- c_tag = "Airbridge Router";
- pixel_x = 22
- },
-/obj/machinery/requests_console{
- department = "Airbridge Router";
- name = "Airbridge Router RC";
- pixel_y = 28
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cvq" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/conveyor{
- dir = 1;
- id = "workshop_off"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cvr" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cvs" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"cvt" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side,
-/area/science/robotics/lab)
-"cvu" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cvv" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/requests_console{
- department = "Genetics";
- name = "Genetics RC";
- pixel_x = 30
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cvw" = (
-/obj/structure/closet,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/item/wrench/medical,
-/obj/item/screwdriver,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_y = -30
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"cvx" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/hypospray/mkii/tricord,
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_y = -30
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cvy" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cvz" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- dir = 4;
- node1_concentration = 0.8;
- node2_concentration = 0.2;
- on = 1;
- target_pressure = 4500
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cvA" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/warning/securearea{
- pixel_x = -32;
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cvB" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/porta_turret/ai{
- dir = 1;
- req_access = list(16)
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cvC" = (
-/obj/machinery/computer/nanite_cloud_controller,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/structure/window/reinforced/spawner,
-/turf/open/floor/plasteel/dark,
-/area/science/server{
- name = "Computer Core"
- })
-"cvD" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/rnd/server,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cvE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/door/poddoor{
- id = "RDServer";
- name = "RD Server Lockup"
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cvF" = (
-/obj/item/caution,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cvG" = (
-/obj/machinery/door/airlock/research/glass{
- name = "Xenobiology Lab Access";
- req_access_txt = "55"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cvH" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research{
- name = "Toxins Mixing Lab";
- req_access_txt = "7;8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"cvI" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/computer/telecomms/server{
- dir = 1;
- network = "tcommsat"
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cvJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"cvK" = (
-/obj/structure/chair/sofa/right,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"cvL" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cvM" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"cvN" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cvO" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cvP" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Custodial Closet";
- dir = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cvQ" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side,
-/area/science/robotics/lab)
-"cvR" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- sortType = 23
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cvS" = (
-/obj/machinery/vending/wardrobe/robo_wardrobe,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cvT" = (
-/obj/structure/extinguisher_cabinet,
-/turf/closed/wall,
-/area/medical/medbay/central)
-"cvU" = (
-/obj/structure/closet/crate/freezer/blood,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/reagent_dispensers/virusfood{
- pixel_x = -32
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cvV" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cvW" = (
-/obj/structure/chair/comfy/black,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cvX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access_txt = "8;55"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cvY" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research/glass{
- name = "Xenobiology Lab Access";
- req_access_txt = "55"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cvZ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/clipboard,
-/obj/item/stamp/denied{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/stamp,
-/obj/machinery/door/window/southright{
- name = "Customs Desk";
- req_access_txt = "57"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "HoPAft";
- name = "HoP Aft Desk Shutters"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"cwa" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/flashlight/lamp,
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "HoPAft";
- name = "HoP Aft Desk Shutters"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"cwb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29"
- },
-/turf/open/floor/circuit,
-/area/science/robotics/mechbay)
-"cwc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/button/door{
- id = "cargoblock";
- name = "Router Access Control";
- pixel_x = -24;
- pixel_y = 24;
- req_access_txt = "31"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cwd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cwe" = (
-/obj/structure/closet/secure_closet/exile,
-/turf/open/floor/plasteel/white,
-/area/gateway)
-"cwf" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cwg" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"cwh" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cwi" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cwj" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/medical/virology)
-"cwk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/lounge)
-"cwl" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/item/book/manual/wiki/infections,
-/obj/item/folder/white,
-/obj/machinery/requests_console{
- department = "Virology";
- name = "Virology RC";
- pixel_x = -32
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cwm" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cwn" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cwo" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/microwave,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cwp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/medical/virology)
-"cwq" = (
-/obj/machinery/door/airlock/engineering{
- name = "Hot Loop";
- req_one_access_txt = "10;24"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cwr" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cws" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cwt" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"cwu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cwv" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/warning/vacuum/external,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cww" = (
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cwx" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/white/full,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cwy" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/transit_tube/horizontal,
-/turf/open/floor/plating,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cwz" = (
-/obj/structure/transit_tube/curved{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space)
-"cwA" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"cwB" = (
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cwC" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cwD" = (
-/obj/structure/transit_tube/diagonal/topleft,
-/turf/open/space/basic,
-/area/space)
-"cwE" = (
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cwF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cwG" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/effect/landmark/event_spawn,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cwH" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall,
-/area/crew_quarters/toilet/restrooms)
-"cwI" = (
-/obj/structure/transit_tube/horizontal,
-/turf/open/space/basic,
-/area/space)
-"cwJ" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube/horizontal,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cwK" = (
-/obj/structure/transit_tube/crossing/horizontal,
-/turf/open/space/basic,
-/area/space)
-"cwL" = (
-/obj/structure/transit_tube/horizontal,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"cwM" = (
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/structure/transit_tube/station/reverse/flipped,
-/obj/structure/transit_tube_pod{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cwN" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"cwO" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cwP" = (
-/obj/structure/bed,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/landmark/start/chief_engineer,
-/obj/item/bedsheet/ce,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/heads/chief";
- dir = 4;
- name = "Chief Engineer's Office APC";
- pixel_x = 24
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"cwQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cwR" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cwS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Warehouse";
- req_access_txt = "11"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cwT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/medical/virology)
-"cwU" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/mineral/titanium/blue,
-/area/hallway/primary/central)
-"cwV" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cwW" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/public/glass,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cwX" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/public/glass,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cwY" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/air_sensor/atmos/toxins_mixing_tank,
-/turf/open/floor/engine/vacuum,
-/area/science/mixing)
-"cwZ" = (
-/obj/structure/table,
-/obj/item/storage/box/beanbag,
-/obj/item/gun/ballistic/revolver/doublebarrel,
-/obj/item/storage/hypospraykit/toxin,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/bar)
-"cxa" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 6
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cxb" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cxc" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cxd" = (
-/obj/machinery/computer/monitor,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cxe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cxf" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cxg" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cxh" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/landmark/start/chemist,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cxi" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/item/extinguisher,
-/obj/item/extinguisher,
-/obj/item/extinguisher,
-/obj/item/extinguisher,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Engineering - Primary Tool Storage";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cxj" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/reagent_dispensers/foamtank,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cxk" = (
-/obj/structure/tank_dispenser,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cxl" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall,
-/area/storage/primary)
-"cxm" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"cxn" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/item/t_scanner{
- pixel_x = -4
- },
-/obj/item/pipe,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/quartermaster/warehouse)
-"cxo" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light/small,
-/obj/machinery/camera{
- c_tag = "Supply - Warehouse Aft";
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cxp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/mob/living/simple_animal/bot/floorbot,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cxq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cxr" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cxs" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/item/storage/toolbox/electrical,
-/obj/item/hand_labeler,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cxt" = (
-/obj/effect/landmark/start/cargo_technician,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cxu" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"cxv" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cxw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cxx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Warehouse";
- req_one_access_txt = "10;31"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"cxy" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs,
-/area/quartermaster/storage)
-"cxz" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- name = "Mining Office";
- req_access_txt = "48"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cxB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Cargo Office"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxE" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cxF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxI" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxJ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxK" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxL" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxM" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cxN" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxO" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cxP" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxQ" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxR" = (
-/obj/effect/landmark/start/shaft_miner,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cxS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cxT" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/item/paper/guides/cogstation/letter_supp,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cxU" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cxV" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cxW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Starboard Quarter Maintenance";
- req_one_access_txt = "12;48"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"cxX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cxY" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cxZ" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/button/door{
- id = "MiningConveyorBlastDoor";
- name = "Mining Conveyor Access";
- pixel_x = 8;
- pixel_y = -24;
- req_one_access_txt = "10;24;48"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cya" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cyb" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cyc" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Mining Dock";
- req_one_access_txt = "10;24;48"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cyd" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cye" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cyf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cyg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cyh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Mining Office Maintenance";
- req_one_access_txt = "10;24;48"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
-"cyi" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cyj" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cyk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cyl" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cym" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cyn" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cyo" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Aft Maintenance";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"cyp" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cyq" = (
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Restrooms APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"cyr" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cys" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cyt" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyu" = (
-/obj/structure/closet/wardrobe/chemistry_white{
- anchored = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cyv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cyw" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/structure/sign/poster/official/cleanliness{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"cyx" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cyy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Medbay Lobby"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white/side,
-/area/medical/medbay/lobby)
-"cyz" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cyA" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cyB" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/sign/poster/official/medical_green_cross{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cyC" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cyD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Departures"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cyE" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cyF" = (
-/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"cyG" = (
-/obj/machinery/chem_master,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/medbay/central)
-"cyH" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cyI" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cyJ" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"cyK" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cyL" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cyM" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cyN" = (
-/obj/machinery/chem_dispenser/apothecary,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/medbay/central)
-"cyO" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyR" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyS" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyT" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyU" = (
-/obj/machinery/camera{
- c_tag = "Aft Maintenance - Central Starboard";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cyV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"cyW" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cyX" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cyY" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"cyZ" = (
-/obj/machinery/computer/arcade,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"cza" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"czb" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/item/paicard,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/hallway/secondary/exit)
-"czc" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/hallway/secondary/exit)
-"czd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cze" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czf" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 4
- },
-/area/gateway)
-"czg" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/mob/living/simple_animal/hostile/retaliate/bat,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"czh" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"czi" = (
-/obj/structure/bed,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/effect/landmark/start/chief_medical_officer,
-/obj/item/bedsheet/cmo,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"czj" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"czk" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"czl" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Aft Maintenance";
- req_access_txt = "12"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"czm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czo" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czp" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czq" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/food/drinks/coffee,
-/obj/item/pen/blue,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czr" = (
-/obj/structure/table/glass,
-/obj/item/storage/toolbox/emergency,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czs" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czt" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"czu" = (
-/obj/machinery/suit_storage_unit/cmo,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"czv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"czw" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"czx" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"czy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"czz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Gateway Chamber";
- req_access_txt = "62"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/engine,
-/area/gateway)
-"czA" = (
-/obj/machinery/modular_computer/console/preset/research{
- dir = 8
- },
-/obj/item/reagent_containers/food/drinks/coffee,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"czB" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"czC" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"czD" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"czE" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"czF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"czG" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"czH" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 6
- },
-/area/science/robotics/lab)
-"czI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"czJ" = (
-/obj/item/beacon,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"czK" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"czL" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"czM" = (
-/obj/machinery/requests_console{
- department = "Chemistry";
- departmentType = 2;
- name = "Chemistry RC";
- pixel_x = 30;
- pixel_y = 0;
- receive_ore_updates = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"czN" = (
-/obj/structure/closet/crate/trashcart,
-/obj/structure/sign/departments/custodian{
- pixel_x = 32
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/chapel)
-"czO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Waste Disposal";
- req_one_access_txt = "12;50"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"czP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/medbay/central)
-"czQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"czR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/sorting/mail,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/maintenance/department/chapel)
-"czS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access_txt = "26"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"czT" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"czU" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"czV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"czW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/chair/office/light{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/medbay/central)
-"czX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/rust,
-/area/maintenance/disposal)
-"czY" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"czZ" = (
-/obj/effect/landmark/start/janitor,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAa" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/structure/chair/sofa/right,
-/obj/item/reagent_containers/food/drinks/bottle/vermouth/empty,
-/obj/item/reagent_containers/food/snacks/grown/cannabis{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"cAb" = (
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/chair/sofa/left,
-/obj/item/storage/box/hug/medical,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"cAc" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"cAd" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cAe" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAg" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAh" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Custodial Closet";
- req_access_txt = "12;26"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAi" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"cAj" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"cAk" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/item/reagent_containers/pill/floorpill,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"cAl" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/item/stack/tile/plasteel{
- pixel_x = 10;
- pixel_y = 4
- },
-/obj/item/camera,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"cAm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cAn" = (
-/obj/structure/disposalpipe/junction/flip,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cAo" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cAp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cAq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"cAr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal)
-"cAs" = (
-/obj/structure/mopbucket,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAt" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/window/southleft{
- name = "Cloning Access";
- req_one_access_txt = "9;45"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cAu" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cAv" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs,
-/area/medical/medbay/central)
-"cAw" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/item/soap,
-/obj/item/grenade/chem_grenade/cleaner,
-/obj/item/grenade/chem_grenade/cleaner,
-/obj/item/grenade/chem_grenade/cleaner,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 4;
- pixel_y = -1
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/machinery/requests_console{
- department = "Custodial Closet";
- name = "Custodial RC";
- pixel_x = -32
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAx" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/landmark/start/janitor,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cAy" = (
-/obj/item/cigbutt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cAz" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cAA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/closed/wall,
-/area/storage/primary)
-"cAB" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cAC" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cAD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology/glass{
- name = "Isolation Room A";
- req_access_txt = "39"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cAE" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/item/caution,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cAF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Detective's Office";
- req_access_txt = "4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"cAG" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/virologist,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cAH" = (
-/obj/structure/table,
-/obj/item/storage/box/beakers,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cAI" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cAJ" = (
-/obj/structure/table/wood,
-/obj/item/storage/book/bible/booze,
-/obj/item/beacon{
- pixel_y = -8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"cAK" = (
-/obj/machinery/computer/med_data,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cAL" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/security{
- name = "Detective's Office";
- req_access_txt = "4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/security/detectives_office)
-"cAM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"cAN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"cAO" = (
-/obj/effect/landmark/start/detective,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"cAP" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/cigarettes,
-/obj/item/lighter{
- pixel_x = -4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/newscaster/security_unit{
- pixel_y = -30
- },
-/obj/machinery/camera{
- c_tag = "Detective's Office";
- dir = 1
- },
-/obj/item/reagent_containers/food/drinks/bottle/hcider{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"cAQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
-"cAR" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"cAS" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/gateway)
-"cAT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/aft)
-"cAU" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cAV" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cAW" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cAX" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cAY" = (
-/obj/machinery/door/airlock{
- name = "Catering";
- req_one_access_txt = "25;28"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/bar)
-"cAZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cBa" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cBb" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"cBc" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cBe" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBg" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBh" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBi" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBj" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/landmark/start/station_engineer,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cBl" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Power Monitoring";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes{
- name = "Power Monitoring"
- })
-"cBm" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/rnd/production/techfab/department/engineering,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cBn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cBo" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBp" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cBq" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"cBr" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"cBs" = (
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"cBt" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"cBu" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/sign/departments/security{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBv" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBw" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Central Maintenance";
- req_one_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/hallway/primary/port/fore)
-"cBx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cBy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cBz" = (
-/obj/structure/filingcabinet/filingcabinet,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"cBA" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = 32
- },
-/obj/machinery/camera{
- c_tag = "Aft Hall - Fore";
- pixel_x = 22
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cBB" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cBC" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/aft/secondary{
- name = "Aft Air Hookup"
- })
-"cBD" = (
-/obj/effect/turf_decal/tile/green,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cBE" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBF" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"cBG" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cBH" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cBI" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cBJ" = (
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/power/apc{
- name = "Engineering Foyer APC";
- pixel_y = -24
- },
-/obj/item/storage/firstaid/regular,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cBK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBL" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cBM" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"cBN" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"cBO" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"cBP" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"cBQ" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"cBR" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"cBS" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
-"cBT" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cBU" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs,
-/area/crew_quarters/bar)
-"cBV" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"cBW" = (
-/obj/structure/sign/plaques/golden{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"cBX" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"cBY" = (
-/obj/machinery/newscaster{
- pixel_y = -28
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/bar)
-"cBZ" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cCa" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCb" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/sign/departments/security{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cCc" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCd" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/sleeper{
- dir = 8
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical{
- name = "Medical Booth"
- })
-"cCe" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cCf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Central Maintenance - Fore";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/central)
-"cCg" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cCi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology/glass{
- name = "Monkey Pen";
- req_access_txt = "39"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCj" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCk" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cCl" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"cCm" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCn" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/hallway/primary/port/fore)
-"cCo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"cCp" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/hallway/primary/port/fore)
-"cCq" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark/side{
- dir = 8
- },
-/area/hallway/primary/central)
-"cCr" = (
-/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/medical/virology)
-"cCs" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/office)
-"cCt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Chapel Confessions";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 23
- },
-/turf/open/floor/plasteel/dark,
-/area/chapel/main)
-"cCu" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/medical/virology)
-"cCv" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cCw" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/medical/virology)
-"cCx" = (
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start/virologist,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCy" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/item/caution,
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology/glass{
- name = "Isolation Room B";
- req_access_txt = "39"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cCA" = (
-/obj/machinery/computer/security/wooden_tv,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"cCB" = (
-/obj/machinery/light,
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/office)
-"cCC" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/chapel/main)
-"cCD" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cCE" = (
-/obj/machinery/portable_atmospherics/canister/water_vapor,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/junction/flip,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"cCF" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "recycler";
- name = "Recycler Conveyor Control"
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"cCG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cCH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cCI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cCJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/library)
-"cCK" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Library Access"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/library)
-"cCL" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cCM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/junction,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=bridge1";
- location = "router"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cCN" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs/left,
-/area/hallway/primary/central)
-"cCO" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/obj/item/hand_labeler,
-/obj/item/reagent_containers/glass/bottle/formaldehyde,
-/obj/item/paper/guides/jobs/medical/morgue,
-/obj/item/paper/guides/cogstation/cdn_med{
- pixel_x = -6;
- pixel_y = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"cCP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/landmark/start/depsec/engineering,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
-"cCQ" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/machinery/light,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cCR" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cCS" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cCT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/stairs/medium,
-/area/hallway/primary/aft)
-"cCU" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cCV" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"cCW" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"cCX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/crew_quarters/heads/hos)
-"cCY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cCZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cDa" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cDb" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/clothing/glasses/science,
-/obj/item/pen,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cDc" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/structure/bedsheetbin,
-/obj/item/clothing/glasses/hud/health,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cDd" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cDe" = (
-/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/medical/virology)
-"cDf" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/medical/virology)
-"cDg" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- id = "DeliveryConveyer"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cDh" = (
-/obj/machinery/computer/card/minor/cmo{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/keycard_auth{
- pixel_x = -24
- },
-/obj/item/paper/guides/cogstation/letter_cmo,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"cDi" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/closet/crate/solarpanel_small,
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cDj" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"cDk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/hallway/primary/port/fore)
-"cDl" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cDm" = (
-/obj/structure/plasticflaps,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/conveyor{
- dir = 1;
- id = "DeliveryConveyer"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cDn" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cDo" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/router/air)
-"cDp" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"cDq" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"cDr" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/security/courtroom)
-"cDs" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/sign/warning/securearea{
- pixel_x = -32
- },
-/obj/item/kirbyplants{
- icon_state = "applebush"
- },
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/dark/side,
-/area/bridge)
-"cDt" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Captain's Quarters";
- req_access_txt = "20"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/captain)
-"cDu" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/heads/captain)
-"cDv" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"cDw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/heads/captain)
-"cDx" = (
-/obj/machinery/light_switch{
- pixel_x = -4;
- pixel_y = 24
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 6;
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet/blue,
-/area/crew_quarters/heads/captain)
-"cDy" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
-"cDz" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"cDA" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/computer/secure_data{
- dir = 8
- },
-/obj/machinery/newscaster/security_unit{
- pixel_x = 30
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cDB" = (
-/obj/item/storage/secure/safe{
- pixel_x = -24
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/dresser,
-/obj/item/storage/lockbox/medal,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"cDC" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/captain,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/captain)
-"cDD" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/computer/security{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/checkpoint/supply";
- dir = 4;
- name = "Cargo Security Checkpoint APC";
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cDE" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/cmo)
-"cDF" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/cmo)
-"cDG" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/cmo)
-"cDH" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"cDI" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"cDJ" = (
-/obj/machinery/computer/crew,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"cDK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Gateway Chamber";
- req_access_txt = "62"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/gateway)
-"cDL" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Medbay - Apothecary";
- dir = 8;
- network = list("ss13","medbay");
- pixel_y = -22
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cDM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/table/glass,
-/obj/item/book/manual/wiki/chemistry,
-/obj/item/book/manual/wiki/chemistry{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science{
- pixel_x = 2;
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"cDN" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/gateway)
-"cDO" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cDP" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cDQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cDR" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cDS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"cDT" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/item/stack/cable_coil/red,
-/obj/item/stack/cable_coil/red{
- pixel_x = 3
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"cDU" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"cDV" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/command{
- name = "Gateway Atrium";
- req_access_txt = "62"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"cDW" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"cDX" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cDY" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/crew_quarters/heads/hor)
-"cDZ" = (
-/obj/structure/table,
-/obj/machinery/computer/med_data/laptop,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer RC";
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"cEa" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/cmo)
-"cEb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Research Director's Office";
- req_access_txt = "30"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/hor)
-"cEc" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=1";
- dir = 1;
- freq = 1400;
- location = "Bridge"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEd" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEe" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEj" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEk" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research/glass{
- name = "Research Sector";
- req_one_access_txt = "29;47"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEl" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEm" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEn" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research/glass{
- name = "Research Sector";
- req_one_access_txt = "29;47"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEo" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEq" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEr" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEs" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEt" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEw" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Research Sector";
- req_one_access_txt = "29;47"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"cEx" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEy" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"cEz" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEA" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 1;
- sortType = 24
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"cEC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/lab)
-"cED" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/scientist,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/lab)
-"cEE" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/aft";
- dir = 8;
- name = "Aft Maintenance APC";
- pixel_x = -26
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cEF" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEG" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cEJ" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEK" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"cEL" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/lab)
-"cEM" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEN" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cEO" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/door/airlock/research{
- name = "Robotics Lab";
- req_access_txt = "29"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cEP" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cEQ" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cER" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay Locker Room";
- req_access_txt = "5"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cES" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cET" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cEU" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay Locker Room";
- req_access_txt = "5"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cEV" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cEW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/landmark/start/paramedic,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cEX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cEY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cEZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFd" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFe" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFg" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cFh" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFi" = (
-/obj/effect/landmark/start/paramedic,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFj" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFk" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFl" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFm" = (
-/obj/structure/closet/crate/freezer/blood,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFn" = (
-/obj/structure/closet/l3closet,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFo" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFp" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFq" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFr" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFs" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFt" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/camera{
- c_tag = "Medbay - Port";
- dir = 4
- },
-/obj/machinery/power/apc{
- areastring = "/area/medical/medbay/central";
- dir = 8;
- name = "Medbay APC";
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFu" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFv" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFw" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/door/window/westright{
- name = "Treatment Center";
- req_access_txt = "5"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFy" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFz" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/suit/apron/surgical,
-/obj/item/clothing/mask/surgical,
-/obj/item/healthanalyzer,
-/obj/item/clothing/neck/stethoscope,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/zone2{
- name = "Medbay Treatment Center"
- })
-"cFA" = (
-/obj/structure/table,
-/obj/item/storage/box/beakers{
- pixel_x = 5
- },
-/obj/item/storage/box/syringes{
- pixel_x = -4
- },
-/obj/item/reagent_containers/dropper,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cFB" = (
-/obj/machinery/vending/snack/teal,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"cFC" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/medical/medbay/central)
-"cFD" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/paramedic,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFF" = (
-/obj/effect/landmark/start/paramedic,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"cFG" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"cFH" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay Break Room";
- req_access_txt = "5"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFI" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFK" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/carpet/blue,
-/area/medical/medbay/central)
-"cFL" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"cFM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"cFN" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/medical/medbay/central)
-"cFO" = (
-/obj/structure/closet/crate/medical,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFP" = (
-/obj/structure/table/wood,
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/item/reagent_containers/pill/patch/styptic,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/carpet/blue,
-/area/medical/medbay/central)
-"cFQ" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/landmark/start/medical_doctor,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/carpet/blue,
-/area/medical/medbay/central)
-"cFR" = (
-/obj/structure/closet/crate/medical,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cFT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology/glass{
- name = "Virology Exterior Airlock";
- req_access_txt = "39"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cFU" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cFV" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cFW" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/lab)
-"cFX" = (
-/obj/machinery/chem_heater,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/medbay/central)
-"cFY" = (
-/turf/open/floor/plasteel,
-/area/router/air)
-"cFZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/obj/machinery/button/massdriver{
- id = "airbridge_out";
- pixel_x = -8;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cGa" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "airbridge_off"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cGb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "MedSci Router";
- req_access_txt = "5"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cGc" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cGd" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Medbay Locker Room";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cGe" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light,
-/obj/item/reagent_containers/blood/OMinus{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/drinks/coffee{
- pixel_x = 6
- },
-/obj/item/storage/box/masks{
- pixel_x = -4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_y = -30
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cGf" = (
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/conveyor{
- dir = 4;
- id = "airbridge_off"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cGg" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/conveyor{
- dir = 4;
- id = "airbridge_off"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cGh" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/mass_driver{
- dir = 4;
- id = "airbridge_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cGi" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cGj" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cGk" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cGl" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cGm" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cGn" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cGo" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs,
-/area/science/research{
- name = "Research Sector"
- })
-"cGp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cGq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGr" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/research/glass{
- name = "Xenobiology Lab Access";
- req_access_txt = "55"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGs" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cGt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cGu" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/research{
- name = "Research Sector"
- })
-"cGv" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGw" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access_txt = "8;55"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGx" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Experimentation Lab";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cGy" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cGA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGC" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGE" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cGF" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/engine,
-/area/science/storage)
-"cGG" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/storage";
- dir = 4;
- name = "Toxins Storage APC";
- pixel_x = 24
- },
-/obj/structure/cable,
-/turf/open/floor/engine,
-/area/science/storage)
-"cGH" = (
-/obj/machinery/camera{
- c_tag = "Toxins Lab - Storage";
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/engine,
-/area/science/storage)
-"cGI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start/chemist,
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"cGJ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"cGK" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/engine,
-/area/science/storage)
-"cGL" = (
-/obj/structure/table,
-/obj/item/extinguisher,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/wrench,
-/obj/item/clothing/mask/gas,
-/obj/item/extinguisher{
- pixel_x = -7;
- pixel_y = 3
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"cGM" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/engine,
-/area/science/storage)
-"cGP" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/storage)
-"cGQ" = (
-/obj/machinery/door/airlock/research{
- name = "Plasma Canister Storage";
- req_access_txt = "7;8"
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"cGR" = (
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cGS" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cGT" = (
-/obj/item/radio/intercom{
- dir = 8;
- name = "Station Intercom (Common)";
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cGU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "5;6"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"cGV" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/engine,
-/area/science/storage)
-"cGW" = (
-/obj/effect/landmark/blobstart,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"cGX" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cGY" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cGZ" = (
-/turf/open/floor/plating/airless,
-/area/science/storage)
-"cHa" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/structure/sign/warning/fire{
- pixel_x = -32
- },
-/obj/machinery/camera{
- c_tag = "Toxins Lab - Plasma Storage";
- dir = 1
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/engine,
-/area/science/storage)
-"cHb" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cHc" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cHd" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cHe" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cHf" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stock_parts/cell/high/plus,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/item/stack/cable_coil/red,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cHg" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cHh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cHi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"cHj" = (
-/obj/structure/table,
-/obj/item/storage/hypospraykit/toxin{
- pixel_x = -5
- },
-/obj/item/storage/hypospraykit/fire{
- pixel_x = 5
- },
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/clothing/glasses/sunglasses,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"cHk" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"cHl" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"cHm" = (
-/obj/machinery/atmospherics/components/binary/pump,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"cHn" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/explab)
-"cHo" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHq" = (
-/obj/structure/closet/firecloset,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHs" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHt" = (
-/obj/structure/disposalpipe/junction,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHu" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Research - Experimentation Hall";
- dir = 8;
- network = list("ss13","medbay")
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHw" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/biohazard{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"cHy" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"cHz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"cHA" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- name = "Experimentation Lab";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHB" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/landmark/blobstart,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHC" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/science/explab";
- dir = 4;
- name = "Experimentation Lab APC";
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/obj/item/beacon,
-/turf/open/floor/engine,
-/area/science/explab)
-"cHE" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"cHF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"cHG" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research{
- name = "Experimentation Lab";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHH" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHI" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/explab)
-"cHJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"cHK" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cHL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cHM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cHN" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cHO" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cHP" = (
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/effect/landmark/start/geneticist,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cHQ" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cHR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_one_access_txt = "9;45"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"cHS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Genetics Lab";
- req_access_txt = "9"
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cHT" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/rust,
-/area/medical/morgue)
-"cHU" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cHV" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cHW" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/turf/open/floor/plasteel,
-/area/medical/chemistry)
-"cHX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cHY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/recharge_station,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cHZ" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- name = "Airbridge Router"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cIa" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cIb" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/item/storage/firstaid/radbgone,
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_x = 28
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cIc" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cId" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cIe" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cIf" = (
-/obj/structure/closet/crate/trashcart,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cIg" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cIh" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 4;
- id = "workshop_off"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cIi" = (
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/conveyor{
- dir = 4;
- id = "workshop_off"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cIj" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/geneticist,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cIk" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cIl" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple,
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cIm" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/landmark/start/geneticist,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cIn" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"cIo" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Genetics Lab Maintenance";
- req_access_txt = "9"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
-"cIp" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cIq" = (
-/obj/structure/window/reinforced/spawner,
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/conveyor{
- dir = 1;
- id = "workshop_off"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cIr" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28;
- pixel_y = -4
- },
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cIs" = (
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics";
- req_access_txt = "24"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cIt" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cIu" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cIv" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIw" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIx" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Aft Hall";
- network = list("ss13","rd")
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIy" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIz" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIA" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIB" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/item/kirbyplants/photosynthetic,
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIC" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cID" = (
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIE" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIF" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIG" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1;
- light_color = "#cee5d2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIH" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cII" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIJ" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIK" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIL" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIN" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Engineering Sector"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIQ" = (
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIR" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIU" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=evac";
- location = "eng1"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIV" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cIZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cJa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cJb" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cJc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cJd" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cJe" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cJf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"cJg" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"cJh" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin/towel,
-/obj/machinery/camera{
- c_tag = "Aft Restrooms";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"cJi" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 1;
- locked = 0;
- pixel_y = -22
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cJj" = (
-/obj/machinery/computer/security/mining,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cJk" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cJl" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera{
- c_tag = "Engine Room - Starboard Quarter";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJm" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cJn" = (
-/obj/machinery/door/airlock/external{
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cJo" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner,
-/area/engine/atmos)
-"cJp" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/suit_storage_unit/engine,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJr" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cJs" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cJt" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cJu" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cJv" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Router";
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJx" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{
- dir = 1
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cJy" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/rnd/production/circuit_imprinter,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cJz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/conveyor{
- dir = 8;
- id = "DeliveryConveyor"
- },
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
-"cJA" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJC" = (
-/obj/machinery/door/airlock/engineering{
- name = "Gravity Generator";
- req_access_txt = "11"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cJD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/power/terminal,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cJE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cJF" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cJG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/table,
-/obj/machinery/light/small,
-/obj/machinery/power/apc/highcap/five_k{
- areastring = "/area/engine/gravity_generator";
- dir = 4;
- name = "Gravity Generator APC";
- pixel_x = 26
- },
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"cJH" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cJI" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"cJJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cJK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/components/binary/valve/digital{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cJN" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJO" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/engine/supermatter{
- name = "Thermo-Electric Generator"
- })
-"cJP" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/light/small,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJQ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"cJR" = (
-/obj/machinery/door/airlock/engineering{
- name = "Canister Storage";
- req_one_access_txt = "10;24"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cJS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cJT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cJU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cJV" = (
-/obj/structure/plasticflaps,
-/obj/machinery/door/poddoor{
- id = "DeliveryDoor";
- name = "Delivery Door"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/conveyor{
- dir = 8;
- id = "DeliveryConveyor"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cJW" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cJX" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cJY" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"cJZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cKa" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cKb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cKc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Canister Storage";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/storage{
- name = "Canister Storage"
- })
-"cKd" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "DeliveryConveyor"
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"cKe" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/public/glass{
- name = "Airbridge Router"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cKf" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cKg" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/vending/engivend,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cKh" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cKi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/door/airlock/medical{
- name = "Apothecary";
- req_access_txt = "5"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/medbay/central)
-"cKj" = (
-/obj/structure/closet/secure_closet/CMO,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/paper/guides/cogstation/letter_cmo,
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"cKk" = (
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/landmark/start/medical_doctor,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cKl" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
-"cKm" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/stairs,
-/area/medical/medbay/central)
-"cKn" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cKo" = (
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- sortType = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cKp" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cKq" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/medical/morgue)
-"cKr" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cKs" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cKt" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cKu" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cKv" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cKw" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"cKx" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
-"cKy" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
-"cKz" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cKA" = (
-/obj/machinery/atmospherics/components/binary/valve,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cKB" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cKC" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/landmark/start/chief_medical_officer,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"cKD" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cKE" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port/fore)
-"cKF" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cKG" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/closet/wardrobe/yellow,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"cKH" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cKI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"cKJ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"cKK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"cKL" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"cKM" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"cKN" = (
-/obj/structure/table/reinforced,
-/obj/item/assembly/signaler{
- pixel_x = -4
- },
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler{
- pixel_y = 8
- },
-/obj/item/assembly/signaler{
- pixel_x = 8;
- pixel_y = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
-"cKO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/sign/departments/restroom{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cKP" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/structure/sign/departments/custodian{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cKQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output,
-/turf/open/floor/engine/vacuum,
-/area/engine/atmos)
-"cKR" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input,
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"cKS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output,
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"cKT" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input,
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"cKU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output,
-/turf/open/floor/engine/plasma,
-/area/engine/atmos)
-"cKV" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input,
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"cKW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output,
-/turf/open/floor/engine/co2,
-/area/engine/atmos)
-"cKX" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cKY" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cKZ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cLa" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cLb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"cLc" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"cLd" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLe" = (
-/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/engine/atmos)
-"cLf" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/engine/atmos)
-"cLg" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/violet/visible,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 29
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLh" = (
-/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLi" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLj" = (
-/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/engine/atmos)
-"cLk" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "CO2 Outlet Pump"
- },
-/turf/open/floor/plasteel/dark/side{
- dir = 1
- },
-/area/engine/atmos)
-"cLl" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLm" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cLn" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/item/clothing/under/misc/overalls,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cLo" = (
-/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLp" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLq" = (
-/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cLs" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLt" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{
- dir = 1
- },
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"cLu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{
- dir = 1
- },
-/turf/open/floor/engine/n2,
-/area/engine/atmos)
-"cLv" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{
- dir = 1
- },
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"cLw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{
- dir = 1
- },
-/turf/open/floor/engine/o2,
-/area/engine/atmos)
-"cLx" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{
- dir = 1
- },
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"cLy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{
- dir = 1
- },
-/turf/open/floor/engine/air,
-/area/engine/atmos)
-"cLz" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/item/clothing/under/misc/overalls,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"cLA" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/camera{
- c_tag = "Virology - Starboard";
- dir = 8;
- pixel_y = -22
- },
-/obj/machinery/power/apc{
- areastring = "/area/medical/virology";
- dir = 4;
- name = "Virology Lab APC";
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cLB" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/router/air)
-"cLC" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/machinery/camera{
- c_tag = "Virology - Port";
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cLD" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cLE" = (
-/obj/structure/closet/crate/medical,
-/turf/open/floor/plasteel,
-/area/router/air)
-"cLF" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cLG" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cLH" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cLI" = (
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start/virologist,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cLJ" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/wirecutters,
-/turf/open/floor/plasteel,
-/area/router/air)
-"cLK" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/conveyor{
- id = "airbridge_off"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cLL" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cLM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cLN" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cLO" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/conveyor{
- dir = 8;
- id = "airbridge_off"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cLP" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/item/storage/box/syringes,
-/obj/item/hand_labeler,
-/obj/item/radio/headset/headset_med,
-/obj/structure/sign/warning/biohazard{
- pixel_x = 32
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medical)";
- pixel_y = -30
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cLQ" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/conveyor{
- dir = 8;
- id = "airbridge_off"
- },
-/obj/machinery/door/poddoor{
- name = "Airbridge Router"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cLR" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/mass_driver{
- dir = 8;
- id = "workshop_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cLS" = (
-/obj/machinery/light,
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/medical/virology)
-"cLT" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/medical/virology)
-"cLU" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "inc_in"
- },
-/turf/open/floor/plating/airless,
-/area/medical/virology)
-"cLV" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLW" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cLX" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal/incinerator)
-"cLY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{
- dir = 4
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"cLZ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal/incinerator)
-"cMa" = (
-/obj/machinery/light/small{
- dir = 1;
- light_color = "#ffc1c1"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"cMb" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cMc" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMd" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4;
- name = "N2 to Airmix"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMe" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"cMg" = (
-/obj/machinery/atmospherics/components/trinary/mixer/airmix{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMh" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMi" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMj" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{
- dir = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"cMk" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMl" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMm" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMn" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "N2 to Pure"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMo" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMp" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cMq" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMr" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMs" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMt" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{
- dir = 4
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"cMu" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 8
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
-"cMv" = (
-/obj/machinery/button/door/incinerator_vent_atmos_main{
- pixel_x = -24;
- pixel_y = 8
- },
-/obj/machinery/button/door/incinerator_vent_atmos_aux{
- pixel_x = -40;
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMw" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- name = "Waste Release"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMx" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/obj/item/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -30
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMy" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 1;
- name = "Nitrogen Outlet"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMz" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Atmospherics - Starboard Aft";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMA" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMB" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 1;
- name = "O2 to Airmix"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMC" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "O2 to Pure"
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cMD" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white/corner,
-/area/engine/atmos)
-"cME" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 9
- },
-/turf/open/floor/plasteel/white/corner,
-/area/engine/atmos)
-"cMF" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Air to Pure"
- },
-/turf/open/floor/plasteel/white/corner,
-/area/engine/atmos)
-"cMG" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal/incinerator)
-"cMH" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cMI" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cMJ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cMK" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"cML" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"cMM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"cMN" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"cMO" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"cMP" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/atmos)
-"cMQ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cMR" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 9
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cMS" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cMT" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"cMU" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/conveyor{
- dir = 8;
- id = "workshop_off"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cMV" = (
-/obj/machinery/conveyor{
- dir = 10;
- id = "workshop_off"
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cMW" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/vending/tool,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cMX" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/table,
-/obj/item/storage/box/lights/mixed,
-/obj/item/multitool{
- pixel_x = 5;
- pixel_y = 3
- },
-/obj/item/multitool{
- pixel_x = 5;
- pixel_y = 3
- },
-/obj/item/multitool,
-/obj/item/multitool,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cMY" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/table,
-/obj/machinery/camera{
- c_tag = "Engineering - Workshop";
- dir = 1
- },
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/t_scanner,
-/obj/item/t_scanner,
-/obj/item/t_scanner,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cMZ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNa" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/chair,
-/obj/effect/landmark/start/station_engineer,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNb" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/chair,
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNc" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical,
-/obj/item/stack/cable_coil/red,
-/obj/item/stack/cable_coil/red,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNd" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/closet/crate/engineering,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNe" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- name = "Station Intercom (Common)";
- pixel_y = -29
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNf" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNg" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/machinery/vending/assist,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNh" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/airlock/public/glass{
- name = "Airbridge Router"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cNi" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cNj" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cNk" = (
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/router/air)
-"cNl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/router/air)
-"cNm" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "airbridge_off"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cNn" = (
-/obj/machinery/conveyor{
- dir = 10;
- id = "airbridge_off"
- },
-/turf/open/floor/plating,
-/area/router/air)
-"cNo" = (
-/turf/closed/wall/rust,
-/area/engine/workshop)
-"cNp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/southleft{
- name = "Workshop Desk";
- req_access_txt = "11"
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNq" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/southright{
- name = "Workshop Desk";
- req_access_txt = "11"
- },
-/obj/item/folder/yellow,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNr" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/engine/workshop)
-"cNs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/closed/wall,
-/area/engine/workshop)
-"cNt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/engine/workshop)
-"cNu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Workshop";
- req_access_txt = "11"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/workshop)
-"cNv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/turf/closed/wall,
-/area/engine/workshop)
-"cNw" = (
-/turf/closed/wall/r_wall,
-/area/router/air)
-"cNx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cNy" = (
-/turf/closed/wall/r_wall,
-/area/quartermaster/miningdock/airless)
-"cNz" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/miningdock/airless)
-"cNA" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"cNB" = (
-/turf/open/floor/plating,
-/area/quartermaster/miningdock/airless)
-"cNC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet/restrooms)
-"cND" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningoffice)
-"cNE" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/warning/electricshock{
- pixel_y = 32
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNF" = (
-/obj/item/shovel,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNH" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/warning/electricshock{
- pixel_y = 32
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNI" = (
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cNJ" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Medbay - Starboard";
- network = list("ss13","rd")
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cNK" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/engine/teg_hot)
-"cNL" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/engine/teg_cold)
-"cNM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/item/circuitboard/machine,
-/obj/item/circuitboard/machine,
-/obj/item/circuitboard/machine,
-/obj/item/circuitboard/machine,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNN" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNO" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/frame/computer{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningdock/airless)
-"cNQ" = (
-/obj/structure/sign/warning{
- name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"
- },
-/turf/closed/wall/r_wall,
-/area/router/aux)
-"cNR" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNS" = (
-/obj/machinery/power/apc{
- name = "Mining Dock APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light_switch{
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNU" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/sheet/plasteel/fifty,
-/turf/open/floor/plating,
-/area/quartermaster/miningdock/airless)
-"cNV" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
-"cNW" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/camera{
- c_tag = "Supply - Mining Exterior";
- dir = 4
- },
-/turf/open/space/basic,
-/area/quartermaster/miningdock/airless/no_grav)
-"cNX" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space/basic,
-/area/quartermaster/miningdock/airless/no_grav)
-"cNY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Refinery";
- req_access_txt = "48"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cNZ" = (
-/obj/machinery/door/airlock/external/glass{
- name = "Refinery";
- req_access_txt = "48"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock/airless)
-"cOa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cOb" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOc" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/camera{
- c_tag = "Supply - Refinery Exterior";
- pixel_x = 22
- },
-/turf/open/space/basic,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOd" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/medical/medbay/lobby)
-"cOe" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cOf" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOg" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space/basic,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOh" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOi" = (
-/obj/machinery/conveyor_switch{
- id = "MiningConveyer"
- },
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOj" = (
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOk" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOl" = (
-/turf/closed/wall/r_wall,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOm" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "MiningConveyer"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space/basic,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOn" = (
-/obj/effect/turf_decal/loading_area{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOo" = (
-/obj/structure/table,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOq" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cOr" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOs" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/glass/fifty,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOt" = (
-/obj/structure/closet/crate,
-/obj/item/stack/rods/fifty,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOu" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOv" = (
-/obj/item/storage/toolbox/emergency,
-/obj/structure/table,
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningdock/airless/no_grav)
-"cOw" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"cOx" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/router/medsci";
- dir = 1;
- name = "MedSci Router APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/router/medsci)
-"cOy" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/router/medsci)
-"cOz" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/router/medsci)
-"cOA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/router/medsci)
-"cOB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/router/medsci)
-"cOC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/router/medsci)
-"cOD" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 1
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cOE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/router/medsci)
-"cOF" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/router/medsci)
-"cOG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/router/medsci)
-"cOH" = (
-/obj/machinery/computer/cargo/request{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/router/medsci)
-"cOI" = (
-/turf/closed/wall/r_wall,
-/area/router/medsci)
-"cOJ" = (
-/obj/machinery/conveyor{
- id = "medsci_off"
- },
-/turf/open/floor/plating,
-/area/router/medsci)
-"cOK" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/destTagger,
-/obj/machinery/light,
-/obj/machinery/button/massdriver{
- id = "medsci_out";
- pixel_x = -8;
- pixel_y = 8
- },
-/obj/machinery/requests_console{
- department = "MedSci Router";
- name = "MedSci Router RC";
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/router/medsci)
-"cOL" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "medsci_off"
- },
-/turf/open/floor/plating,
-/area/router/medsci)
-"cOM" = (
-/turf/closed/wall/r_wall,
-/area/janitor/aux)
-"cON" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Auxiliary Custodial Closet";
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plating,
-/area/janitor/aux)
-"cOO" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/janitor/aux)
-"cOP" = (
-/obj/machinery/mass_driver{
- id = "medsci_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating,
-/area/router/medsci)
-"cOQ" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/janitor/aux";
- dir = 1;
- name = "Auxiliary Custodial Closet APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cOR" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cOS" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/storage/box/lights/mixed,
-/obj/item/light/tube,
-/obj/item/radio/off,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cOT" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- name = "MedSci Router"
- },
-/turf/open/floor/plating,
-/area/router/medsci)
-"cOU" = (
-/obj/structure/plasticflaps,
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- name = "MedSci Router"
- },
-/obj/machinery/conveyor{
- dir = 1;
- id = "medsci_off"
- },
-/turf/open/floor/plating,
-/area/router/medsci)
-"cOV" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/item/storage/box/mousetraps,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/mop,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cOW" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cOX" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/modular_computer/laptop/preset/civilian,
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cOY" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/janitor/aux)
-"cOZ" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera{
- c_tag = "Custodial Closet - Auxiliary";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cPa" = (
-/obj/structure/mopbucket,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cPb" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/janitor/aux)
-"cPc" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cPd" = (
-/obj/machinery/conveyor{
- id = "sq_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPe" = (
-/obj/machinery/mass_driver{
- dir = 1;
- id = "sq_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPf" = (
-/obj/machinery/conveyor/auto,
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPg" = (
-/obj/machinery/mass_driver{
- dir = 1;
- id = "medsci_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPh" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "sq_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPi" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "viro_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPj" = (
-/obj/machinery/conveyor{
- dir = 9;
- id = "viro_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPk" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "viro_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPl" = (
-/obj/machinery/mass_driver{
- dir = 8;
- id = "viro_in";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPm" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "sq_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPn" = (
-/obj/machinery/conveyor{
- dir = 10;
- id = "sq_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPo" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "viro_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPp" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "viro_out";
- name = "Router Driver"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPq" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "sq_off"
- },
-/turf/open/floor/plating/airless,
-/area/router/aux)
-"cPr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hydroponics/lobby)
-"cPs" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/bridge)
-"cPt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/dark,
-/area/security/checkpoint/customs)
-"cPu" = (
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cPv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/circuit,
-/area/science/robotics/mechbay)
-"cPw" = (
-/turf/open/floor/plasteel/dark,
-/area/science/robotics/mechbay)
-"cPy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/lusty_xenomorph{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cPz" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube/curved{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cPA" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/structure/transit_tube/horizontal,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cPB" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/transit_tube/crossing/horizontal,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"cPC" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/transit_tube/horizontal,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cPD" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cPE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cPF" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cPG" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Supply - Warehouse Exterior";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/space/basic,
-/area/space/nearstation)
-"cPH" = (
-/obj/machinery/conveyor_switch{
- id = "EngiCargoConveyer"
- },
-/obj/structure/cable,
-/obj/machinery/power/apc{
- areastring = "/area/quartermaster/sorting";
- dir = 8;
- name = "Delivery Office APC";
- pixel_x = -26
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"cPI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Foyer";
- req_one_access_txt = "10;24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cPJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Foyer";
- req_one_access_txt = "10;24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cPK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Access";
- req_one_access_txt = "10;24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cPL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Access";
- req_one_access_txt = "10;24"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cPM" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- name = "Security RC";
- pixel_x = 32
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"cPN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cPO" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"cPQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/medical/genetics";
- dir = 8;
- name = "Genetics Lab APC";
- pixel_x = -26
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cPR" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/cmo)
-"cPS" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "CMO's Office";
- req_access_txt = "40"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/heads/cmo)
-"cPT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/cmo)
-"cPU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cPV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/holopad,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cPW" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cPX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"cPY" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cPZ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQa" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQb" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQc" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQd" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQe" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "xenobio2";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQf" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQg" = (
-/obj/machinery/door/window/westright{
- name = "Containment Pen";
- req_one_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cQh" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQi" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQj" = (
-/obj/machinery/door/window/eastleft{
- name = "Containment Pen";
- req_one_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cQk" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQl" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/north,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "xenobio1";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQm" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQn" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQp" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQq" = (
-/obj/effect/turf_decal/tile/purple,
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQr" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/button/door{
- id = "xenobio4";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQs" = (
-/obj/machinery/door/window/westright{
- name = "Containment Pen";
- req_one_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cQt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQu" = (
-/obj/machinery/door/window/eastleft{
- name = "Containment Pen";
- req_one_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio4";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cQv" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/button/door{
- id = "xenobio3";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQw" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQx" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/button/door{
- id = "xenobio6";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQy" = (
-/obj/machinery/door/window/westright{
- name = "Containment Pen";
- req_one_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio5";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cQz" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQA" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQB" = (
-/obj/machinery/door/window/eastleft{
- name = "Containment Pen";
- req_one_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio6";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cQC" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/button/door{
- id = "xenobio5";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQD" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQE" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQF" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/xenobiology)
-"cQH" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "xenobio7";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQI" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/glasses/science,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"cQJ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQK" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQM" = (
-/obj/machinery/door/window/southright{
- name = "Secure Xenobiological Containment";
- req_one_access_txt = "55"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio7";
- name = "containment blast door"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cQN" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQO" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQP" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"cQQ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"cQR" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"cQS" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"cQT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"cQU" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
-"cQV" = (
-/obj/item/kirbyplants{
- icon_state = "plant-02"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"cQW" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/camera{
- c_tag = "Bridge - Port Quarter";
- dir = 1
- },
-/obj/machinery/keycard_auth{
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"cQX" = (
-/obj/machinery/photocopier,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"cQY" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"cQZ" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"cRa" = (
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "MiningConveyer"
- },
-/obj/machinery/door/poddoor{
- id = "MiningConveyorBlastDoor";
- name = "Asteroid Mining Load Door"
- },
-/turf/open/floor/plating/airless,
-/area/quartermaster/miningoffice)
-"cRb" = (
-/obj/machinery/computer/cloning,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/segment,
-/obj/item/paper/guides/jobs/medical/cloning{
- pixel_x = -4
- },
-/obj/item/paper/fluff/cogstation/cloner{
- pixel_x = 6
- },
-/turf/open/floor/plasteel,
-/area/medical/medbay/central)
-"cRc" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/door/airlock/research{
- name = "Aft Observatory";
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cRd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/door/airlock/research{
- name = "Aft Observatory";
- req_access_txt = "47"
- },
-/turf/open/floor/plasteel/dark,
-/area/science/misc_lab{
- name = "Research Observatory"
- })
-"cRe" = (
-/obj/machinery/computer/upload/ai{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/turret_protected/ai)
-"cRf" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/obj/machinery/flasher{
- id = "ID";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/ai)
-"cRg" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/white/corner,
-/area/engine/atmos)
-"cRh" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/turretid{
- control_area = "/area/science/server";
- icon_state = "control_stun";
- name = "Computer Core turret control";
- pixel_x = -3;
- pixel_y = -23;
- req_access_txt = "65"
- },
-/turf/open/floor/plasteel,
-/area/science/server{
- name = "Computer Core"
- })
-"cVq" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"cVO" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"dpO" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"dVR" = (
-/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"dYm" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"eCy" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"eIh" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "N2O Outlet Pump"
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 1
- },
-/area/engine/atmos)
-"eKM" = (
-/obj/item/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -30
- },
-/obj/machinery/atmospherics/pipe/manifold/supplymain/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"eTZ" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"eUF" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"fgS" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Plasma Outlet Pump"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"fkx" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"frb" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"fti" = (
-/obj/machinery/atmospherics/components/binary/pump,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"fui" = (
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space)
-"fuE" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"fuR" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/item/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 30
- },
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"fIw" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"guK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/space/basic,
-/area/space)
-"gDY" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Fuel Pipe to Incinerator"
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"gGG" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"gVV" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/engine,
-/area/science/storage)
-"hcR" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/bridge)
-"hiV" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"hlo" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"hlV" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"hDz" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"hFa" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"hKC" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"hMZ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Pure to Port"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"hXk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"ifC" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/manifold/orange/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"iAW" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"iQY" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 4
- },
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"jiZ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"jml" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- layer = 2.4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"jon" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"jyu" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"jMO" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"jXo" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"kxw" = (
-/obj/machinery/atmospherics/pipe/simple/violet/visible,
-/turf/open/space/basic,
-/area/space)
-"kzb" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/bridge)
-"kOG" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Mix to Engine"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"lcD" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Air to Port"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"lRy" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"mkx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"mqB" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"mxW" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 9
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"mBP" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plasteel,
-/area/science/mixing)
-"mEa" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"mIm" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- light_color = "#cee5d2"
- },
-/turf/open/floor/engine,
-/area/science/storage)
-"mIT" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"mKP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"mNN" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"ntC" = (
-/obj/machinery/atmospherics/components/binary/pump{
- name = "Port to Fuel Pipe"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"nvn" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"nAF" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Mix to Port"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"nBM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"nEX" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"nLV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"ony" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"opd" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 4
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"oMB" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
-/turf/open/floor/plating,
-/area/engine/atmos)
-"pgu" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"prx" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"qeq" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"qgO" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"qlJ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"qvB" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"qHL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"qWY" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- name = "Waste In"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"rdF" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"rTW" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 6
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"rUl" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"sdp" = (
-/obj/structure/reagent_dispensers/foamtank,
-/turf/open/floor/engine,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"sHB" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"sRD" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"sVC" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"tjb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/engine/engineering{
- name = "Engine Room"
- })
-"tpQ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/visible,
-/turf/open/space/basic,
-/area/space/nearstation)
-"tuF" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"tyI" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"tXV" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- layer = 2.4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"tZj" = (
-/obj/structure/tank_dispenser{
- pixel_x = -1
- },
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"tZC" = (
-/obj/machinery/atmospherics/pipe/manifold4w/orange/visible,
-/obj/machinery/meter,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"urj" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 8;
- icon_state = "intact"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
-"uwK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/secure_construction{
- name = "Engineering Construction Area"
- })
-"uAY" = (
-/obj/structure/table,
-/obj/item/storage/belt/utility,
-/obj/item/t_scanner,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"uVD" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"vcb" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"vsO" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"vxU" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"wbu" = (
-/obj/machinery/atmospherics/pipe/simple/violet/visible,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
-"wPS" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/violet/visible{
- dir = 9
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"wWH" = (
-/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"xcO" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Mix Outlet Pump"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"xjk" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"xkC" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"xoj" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"xxP" = (
-/turf/closed/wall,
-/area/quartermaster/storage)
-"xCy" = (
-/obj/machinery/atmospherics/components/binary/pump,
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"xKr" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
+"aaa" = (/turf/open/space/basic,/area/space)
+"aab" = (/obj/structure/sign/poster/official/anniversary_vintage_reprint,/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"})
+"aac" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/fore)
+"aad" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center)
+"aae" = (/obj/docking_port/stationary{dir = 2; dwidth = 4; height = 12; id = "arrivals_stationary"; name = "cog arrivals"; roundstart_template = /datum/map_template/shuttle/arrival/cog; width = 9},/turf/open/space/basic,/area/space)
+"aaf" = (/turf/closed/wall,/area/science/test_area)
+"aag" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/secondary/entry)
+"aah" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
+"aai" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall/rust,/area/maintenance/fore)
+"aaj" = (/turf/closed/wall/r_wall,/area/maintenance/port/fore)
+"aak" = (/obj/machinery/conveyor/auto{id = "pb"},/turf/open/floor/plating/airless,/area/router/aux)
+"aal" = (/turf/closed/wall,/area/maintenance/port/fore)
+"aam" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aan" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ai_monitored/security/armory)
+"aao" = (/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore)
+"aap" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aaq" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aar" = (/obj/machinery/conveyor/auto{dir = 8; id = "pb"},/turf/open/floor/plating/airless,/area/router/aux)
+"aas" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating/airless,/area/space/nearstation)
+"aat" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/observatory"; dir = 1; name = "Observatory APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aau" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/fore"; dir = 8; name = "Port Bow Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aav" = (/obj/machinery/conveyor/auto{dir = 8; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux)
+"aaw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/test_area)
+"aax" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"aay" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
+"aaz" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ai_monitored/security/armory)
+"aaA" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
+"aaB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen/backroom"; dir = 1; name = "Kitchen Coldroom APC"; pixel_y = 24},/turf/open/floor/plating,/area/hallway/secondary/service)
+"aaC" = (/obj/structure/closet/secure_closet/lethalshots,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/box/firingpins,/obj/item/storage/box/firingpins,/obj/effect/spawner/lootdrop/armory_contraband/metastation,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"aaD" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
+"aaE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Port Bow Maintenance - Fore"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aaF" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"aaG" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/stairs/left,/area/security/brig)
+"aaH" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"; pixel_x = 22},/obj/structure/rack,/obj/item/gun/energy{pixel_y = -6},/obj/item/gun/energy{pixel_y = -3},/obj/item/gun/energy,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"aaI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aaJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"aaK" = (/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port)
+"aaL" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/port)
+"aaM" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/port)
+"aaN" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/security/brig)
+"aaO" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aaP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aaQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"aaR" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aaS" = (/turf/open/floor/plasteel,/area/security/brig)
+"aaT" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aaU" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"aaV" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/fore)
+"aaW" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation)
+"aaX" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aaY" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 21},/turf/open/floor/plating/airless,/area/router/aux)
+"aaZ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aba" = (/obj/machinery/door/airlock/external{name = "Arrival Shuttle Airlock"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"abb" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"abc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"abd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"abe" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"abf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"abg" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"abh" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/port)
+"abi" = (/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port)
+"abj" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"abk" = (/obj/structure/closet/crate/secure/gear{name = "Grenade Crate"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/storage/box/flashbangs{pixel_x = 3; pixel_y = 2},/obj/item/storage/box/teargas{pixel_x = 3; pixel_y = -3},/obj/item/grenade/barrier,/obj/item/grenade/barrier,/obj/item/grenade/barrier,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"abl" = (/obj/machinery/airalarm{pixel_y = 24},/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser,/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"abm" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"abn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/gun/ballistic/shotgun/riot{pixel_y = 6},/obj/item/gun/ballistic/shotgun/riot,/obj/item/gun/ballistic/shotgun/riot{pixel_y = -6},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"abo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"abp" = (/turf/closed/wall/r_wall,/area/space/nearstation)
+"abq" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"abr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
+"abs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"abt" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"abu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"abv" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fore)
+"abw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"abx" = (/turf/closed/wall/r_wall,/area/maintenance/solars/port)
+"aby" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/space/nearstation)
+"abz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fore)
+"abA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"abB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/closed/wall,/area/crew_quarters/theatre/clown)
+"abC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/theatre/clown)
+"abD" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/turf/open/floor/plating/airless,/area/router/aux)
+"abE" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/deliveryChute{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
+"abF" = (/obj/machinery/mass_driver{dir = 8; id = "sb_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"abG" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/item/storage/box/trackimp{pixel_x = 4},/obj/item/storage/box/chemimp{pixel_x = -4},/obj/item/storage/lockbox/loyalty,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"abH" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation)
+"abI" = (/obj/structure/table,/obj/structure/mirror{icon_state = "mirror_broke"; pixel_x = -24},/obj/item/storage/briefcase,/obj/item/circuitboard/machine/vending/donksofttoyvendor,/obj/item/storage/pill_bottle/happy,/obj/effect/decal/cleanable/dirt,/obj/item/paper/fluff/cogstation/cluwne,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"abJ" = (/obj/machinery/conveyor{dir = 8; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"abK" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"abL" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"abM" = (/turf/closed/wall/r_wall,/area/router/aux)
+"abN" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry)
+"abO" = (/obj/structure/chair/comfy/brown,/obj/item/beacon,/turf/open/floor/carpet/royalblue,/area/bridge)
+"abP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/rack,/obj/item/gun/energy/ionrifle{pixel_y = 4},/obj/item/gun/energy/temperature/security{pixel_y = -4},/obj/item/clothing/suit/armor/laserproof,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"abQ" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/fore)
+"abR" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux)
+"abS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig)
+"abT" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms/purple"; name = "Crew Quarters A APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore)
+"abU" = (/obj/machinery/space_heater,/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms/blue"; name = "Crew Quarters B APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/fore)
+"abV" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/router/aux)
+"abW" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/router/aux)
+"abX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/checkpoint)
+"abY" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"abZ" = (/obj/machinery/conveyor{dir = 1; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"aca" = (/obj/machinery/conveyor{dir = 5; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"acb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall,/area/maintenance/fore)
+"acc" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/preopen{id = "solitarylock"; name = "Brig Lockdown"},/turf/open/floor/plating,/area/security/brig)
+"acd" = (/obj/machinery/button/door{id = "armory"; name = "Armory Blast Door Control"; pixel_x = -28; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"ace" = (/obj/machinery/conveyor{dir = 4; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"acf" = (/obj/machinery/mass_driver{dir = 4; id = "pb_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"acg" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"ach" = (/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"aci" = (/turf/closed/wall,/area/medical{name = "Medical Booth"})
+"acj" = (/obj/machinery/conveyor{dir = 4; id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"ack" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/shield/riot{pixel_x = -6},/obj/item/shield/riot{pixel_x = -6},/obj/item/shield/riot{pixel_x = -6},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"acl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory"; req_one_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"acm" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating/airless,/area/router/aux)
+"acn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aco" = (/turf/open/floor/plating,/area/maintenance/port/fore)
+"acp" = (/turf/open/floor/plating/airless,/area/science/test_area)
+"acq" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"acr" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 7},/turf/open/floor/plating/airless,/area/router/aux)
+"acs" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"act" = (/turf/closed/wall/r_wall,/area/maintenance/fore)
+"acu" = (/obj/structure/table,/obj/machinery/light,/obj/machinery/recharger,/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 6},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 4},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 2},/obj/item/electropack{pixel_x = -10},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"acv" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"acw" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/port/fore)
+"acx" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/router/aux)
+"acy" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/gun/energy/e_gun/advtaser{pixel_y = 6},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_y = -6},/obj/structure/rack,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
+"acz" = (/obj/machinery/mass_driver{dir = 4; id = "sb_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"acA" = (/obj/machinery/conveyor{dir = 4; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"acB" = (/obj/machinery/conveyor{dir = 6; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"acC" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{id = "armory"; name = "Armory"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"acD" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
+"acE" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/fore)
+"acF" = (/turf/closed/wall,/area/crew_quarters/lounge)
+"acG" = (/obj/machinery/conveyor{dir = 1; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"acH" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"acI" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"acJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"acK" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical{name = "Medical Booth"})
+"acL" = (/obj/machinery/door/poddoor{id = "executionspaceblast"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"acM" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"acN" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"acO" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
+"acP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/fore)
+"acQ" = (/turf/closed/wall,/area/crew_quarters/theatre/clown)
+"acR" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry)
+"acS" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/fore)
+"acT" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/civilian,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"acU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Armory Access"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
+"acV" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"acW" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute,/turf/open/floor/plating/airless,/area/router/aux)
+"acX" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
+"acY" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"acZ" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"ada" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/ai_monitored/security/armory)
+"adb" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/brig)
+"adc" = (/obj/machinery/conveyor{id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"add" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/crew_quarters/observatory)
+"ade" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/closed/wall/r_wall,/area/maintenance/fore)
+"adf" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/observatory)
+"adg" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"adh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/observatory)
+"adi" = (/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"adj" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/observatory)
+"adk" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"adl" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
+"adm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore)
+"adn" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall,/area/hallway/secondary/entry)
+"ado" = (/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore)
+"adp" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/tcommsat/computer)
+"adq" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry)
+"adr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"ads" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"adt" = (/turf/open/floor/plating,/area/maintenance/fore)
+"adu" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"adv" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/fore)
+"adw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/conveyor/auto{dir = 1; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux)
+"adx" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"ady" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating/airless,/area/solar/starboard/fore)
+"adz" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space/basic,/area/space/nearstation)
+"adA" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"adB" = (/obj/structure/sign/poster/official/enlist{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"adC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/crew_quarters/observatory)
+"adD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/brig)
+"adE" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/machinery/syndicatebomb/training,/turf/open/floor/plasteel,/area/security/brig)
+"adF" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"adG" = (/obj/machinery/mass_driver{id = "serv_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"adH" = (/obj/machinery/conveyor/auto{dir = 1; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux)
+"adI" = (/obj/machinery/disposal/bin{name = "Service Delivery"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hydroponics)
+"adJ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/closet,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"adK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/medium,/area/security/brig)
+"adL" = (/obj/machinery/mass_driver{id = "starboard_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"adM" = (/turf/closed/wall,/area/crew_quarters/observatory)
+"adN" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/space/basic,/area/space/nearstation)
+"adO" = (/obj/structure/noticeboard{dir = 4; pixel_x = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"adP" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"adQ" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"adR" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/storage/box/beakers,/obj/item/hand_labeler,/obj/item/folder/white{pixel_x = -6; pixel_y = 4},/obj/item/stamp/denied{pixel_x = 8; pixel_y = 8},/obj/item/stamp,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"adS" = (/turf/closed/wall,/area/construction)
+"adT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction)
+"adU" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fore)
+"adV" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/fore"; dir = 1; name = "Starboard Bow Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"adW" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/right,/area/security/brig)
+"adX" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"adY" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"adZ" = (/turf/open/floor/plating,/area/tcommsat/computer)
+"aea" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"aeb" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/brig)
+"aec" = (/turf/closed/wall/r_wall,/area/construction)
+"aed" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aee" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aef" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
+"aeg" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
+"aeh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig)
+"aei" = (/obj/machinery/light,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 8; name = "Arrival Shuttle Hallway APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aej" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Engine Room"})
+"aek" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ael" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"aem" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aen" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fore)
+"aeo" = (/obj/effect/decal/cleanable/dirt,/obj/item/circuitboard/machine/sleeper,/obj/structure/frame/machine,/turf/open/floor/plasteel,/area/construction)
+"aep" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aeq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aer" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aes" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/chair{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aet" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aeu" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aev" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/fore)
+"aew" = (/turf/closed/wall/r_wall,/area/security/prison)
+"aex" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/table,/obj/item/storage/hypospraykit/regular,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aey" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aez" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aeA" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aeB" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet/fitness"; name = "Fitness Toilets APC"; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore)
+"aeC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aeD" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
+"aeE" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass,/turf/open/floor/plasteel,/area/construction)
+"aeF" = (/obj/structure/table,/obj/item/assembly/infra,/obj/item/assembly/voice{pixel_x = 4; pixel_y = 12},/obj/item/assembly/health{pixel_x = -6; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = 4; pixel_y = -2},/turf/open/floor/plating,/area/construction)
+"aeG" = (/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/construction"; dir = 1; name = "Construction Area APC"; pixel_y = 24},/turf/open/floor/plating,/area/construction)
+"aeH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
+"aeI" = (/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"aeJ" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/security/prison)
+"aeK" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"aeL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aeM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aeN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Router"; req_one_access_txt = "1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aeO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
+"aeP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aeQ" = (/obj/structure/closet/secure_closet/brig,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aeR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aeS" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aeT" = (/obj/structure/table,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aeU" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aeV" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aeW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "12"},/turf/open/floor/plasteel,/area/construction)
+"aeX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fore)
+"aeY" = (/turf/closed/wall,/area/crew_quarters/toilet/fitness)
+"aeZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/crew_quarters/kitchen)
+"afa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/kitchen)
+"afb" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afc" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afd" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"afe" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aff" = (/turf/closed/wall,/area/crew_quarters/fitness)
+"afg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/fore)
+"afh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/fore; dir = 4; name = "Starboard Bow Solars APC"; pixel_x = 28},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"afi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fore)
+"afj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afk" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afl" = (/obj/effect/landmark/secequipment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"afm" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction)
+"afn" = (/obj/machinery/biogenerator,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"afo" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/landmark/start/mime,/obj/machinery/power/apc{areastring = "/area/crew_quarters/theatre/mime"; dir = 4; name = "Mime's Office APC"; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime)
+"afp" = (/turf/open/floor/plating,/area/construction)
+"afq" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"afr" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper_bin,/obj/item/pen,/obj/item/camera{pixel_y = -8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"afs" = (/obj/machinery/flasher{id = "executionflash"; pixel_x = -25},/obj/structure/chair/e_chair,/obj/effect/decal/cleanable/ash{pixel_y = -8},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aft" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"afu" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afv" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"afx" = (/obj/machinery/computer/holodeck{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afy" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afA" = (/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"afB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore)
+"afD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/maintenance/port/fore)
+"afE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/theatre/clown)
+"afF" = (/obj/machinery/sparker{id = "executionburn"; pixel_x = 25},/turf/open/floor/plating,/area/maintenance/port/fore)
+"afG" = (/obj/structure/sink{pixel_y = 28},/obj/item/paper/guides/jobs/hydroponics,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"afH" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/warden)
+"afI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afJ" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/plant_analyzer,/obj/item/cultivator,/obj/item/reagent_containers/glass/bucket,/obj/item/reagent_containers/glass/bucket,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"afK" = (/turf/closed/wall,/area/crew_quarters/kitchen)
+"afL" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afM" = (/obj/structure/closet/crate/internals,/obj/machinery/camera{c_tag = "Construction Area"; pixel_x = 22},/obj/item/flashlight,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/turf/open/floor/plating,/area/construction)
+"afN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/washing_machine,/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry)
+"afP" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"afR" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/table/reinforced,/obj/item/paicard,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"afS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"afT" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"afU" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/entry)
+"afV" = (/obj/structure/closet/crate,/obj/machinery/light{dir = 1},/obj/item/clothing/gloves/color/white,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/structure/sign/poster/contraband/red_rum{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"afW" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fore)
+"afX" = (/obj/item/cigbutt,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/camera{c_tag = "Port Bow Maintenance - Aft"; dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore)
+"afY" = (/obj/item/seeds/carrot,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"afZ" = (/obj/machinery/disposal/bin{name = "Brig Catering"},/obj/effect/turf_decal/stripes/line{dir = 5; layer = 2.03},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
+"aga" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agb" = (/obj/structure/table,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"agd" = (/obj/structure/fans/tiny/invisible,/obj/docking_port/stationary{dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/space/basic,/area/space)
+"age" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"agf" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore)
+"agg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
+"agh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fore)
+"agi" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"agj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Observatory Access"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"agk" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agl" = (/obj/machinery/disposal/bin{name = "Bar Catering"},/obj/effect/turf_decal/stripes/line{dir = 6; layer = 2.03},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
+"agm" = (/obj/structure/table,/obj/item/sharpener,/obj/item/kitchen/knife,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"agn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/lounge)
+"ago" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"agp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agq" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"agr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ags" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"agt" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"agv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/security/brig)
+"agw" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/displaycase/labcage{desc = "A glass lab container for storing smelly creatures."; name = "stinky panda containment"; start_showpiece_type = /mob/living/simple_animal/pet/redpanda/stinky},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"agx" = (/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plating,/area/construction)
+"agy" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"agz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore)
+"agA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
+"agB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"agC" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"agD" = (/obj/machinery/seed_extractor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"agE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"agF" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/camera{c_tag = "Observatory Viewing Area"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agG" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime)
+"agH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"agI" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/tower,/obj/item/seeds/amanita,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"agJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore)
+"agK" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agL" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/solar/port)
+"agM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agN" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agO" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agP" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"agQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"agR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/suit_storage_unit/engine,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"agU" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 6},/obj/item/storage/toolbox/mechanical{pixel_y = 3},/obj/item/assembly/timer{pixel_x = 6; pixel_y = 4},/obj/item/t_scanner{pixel_x = -2; pixel_y = 5},/obj/item/t_scanner,/obj/item/assembly/igniter{pixel_x = 6; pixel_y = -4},/obj/structure/sign/poster/contraband/missing_gloves{pixel_y = 32},/turf/open/floor/plasteel,/area/storage/tools)
+"agV" = (/obj/machinery/newscaster{pixel_x = 28},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"agW" = (/turf/closed/wall/r_wall,/area/security/processing)
+"agX" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Starboard Bow Solar Exterior Airlock"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"agY" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"agZ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aha" = (/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ahb" = (/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ahc" = (/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ahd" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ahe" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"ahf" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel,/area/security/processing)
+"ahg" = (/turf/closed/wall/r_wall,/area/security/warden)
+"ahh" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/tcommsat/computer)
+"ahi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/newscaster{pixel_x = 28},/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ahj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Fore Maintenance - Fore"; dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"ahk" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/processing)
+"ahl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel,/area/security/processing)
+"ahm" = (/obj/structure/falsewall/reinforced,/turf/closed/wall,/area/maintenance/port/fore)
+"ahn" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aho" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing)
+"ahp" = (/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel,/area/security/processing)
+"ahq" = (/turf/open/floor/plasteel,/area/security/processing)
+"ahr" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/ambrosia,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"ahs" = (/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aht" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/storage/box/disks,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ahu" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hydroponics)
+"ahv" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = 32},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"ahw" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ahx" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ahy" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/preopen{id = "solitarylock"; name = "Brig Lockdown"},/turf/open/floor/plating,/area/security/warden)
+"ahz" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"ahA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/fitness)
+"ahB" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastleft{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"ahC" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"ahD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/fore"; dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/fore)
+"ahE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"ahF" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/mirror{pixel_y = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"ahG" = (/obj/structure/sink{pixel_y = 28},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"ahH" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"ahI" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness"; name = "Fitness Room APC"; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore)
+"ahJ" = (/turf/open/floor/wood,/area/crew_quarters/fitness)
+"ahK" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ahL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/observatory)
+"ahM" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"ahN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ahO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"ahP" = (/turf/closed/wall,/area/maintenance/solars/starboard/fore)
+"ahQ" = (/obj/structure/closet/lasertag/blue,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"ahR" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"ahS" = (/obj/structure/closet/cabinet,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"ahT" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/item/storage/bag/plants,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ahU" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ahV" = (/obj/structure/closet/lasertag/red,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"ahW" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"ahX" = (/obj/machinery/deepfryer,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ahY" = (/obj/machinery/vending/autodrobe,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"ahZ" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/radio/off,/obj/machinery/camera{c_tag = "Arrival Shuttle Hallway"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
+"aia" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aib" = (/obj/structure/table/glass,/obj/machinery/light{dir = 1},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
+"aic" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
+"aid" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/cotton,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"aie" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aif" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aig" = (/obj/machinery/camera{c_tag = "Observatory Holodeck"; dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aih" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aii" = (/obj/structure/closet,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/gps,/turf/open/floor/plasteel,/area/storage/tools)
+"aij" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aik" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ail" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aim" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"ain" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/processing)
+"aio" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aip" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aiq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/port)
+"air" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 2},/obj/item/stack/cable_coil/red,/obj/item/screwdriver,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/turf/open/floor/plasteel,/area/storage/tools)
+"ais" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing)
+"ait" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aiu" = (/obj/effect/landmark/start/mime,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
+"aiv" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aiw" = (/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aix" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen)
+"aiy" = (/obj/structure/bed,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/landmark/start/clown,/obj/item/bedsheet/clown,/obj/structure/sign/plaques/kiddie/perfect_man{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"aiz" = (/turf/closed/wall,/area/maintenance/starboard/fore)
+"aiA" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction)
+"aiB" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen"; name = "Kitchen APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aiC" = (/turf/closed/wall,/area/hallway/secondary/service)
+"aiD" = (/obj/structure/closet/crate/wooden/toy,/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Clown's Office"; pixel_x = 22},/obj/item/clothing/under/rank/civilian/clown/yellow,/obj/item/clothing/under/rank/civilian/clown/blue,/obj/item/clothing/under/rank/civilian/clown/green,/obj/item/toy/crayon/spraycan/lubecan,/obj/item/megaphone/clown,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"aiE" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/security/processing)
+"aiF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aiG" = (/obj/structure/closet,/obj/structure/window/reinforced,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/processing)
+"aiH" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/grass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
+"aiI" = (/obj/structure/closet/boxinggloves,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aiJ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"aiK" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig)
+"aiL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison)
+"aiM" = (/turf/closed/wall/r_wall,/area/crew_quarters/observatory)
+"aiN" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port)
+"aiO" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/solars/port)
+"aiP" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/solars/port)
+"aiQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aiR" = (/obj/structure/rack,/obj/item/reagent_containers/glass/beaker/waterbottle,/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aiS" = (/obj/item/kirbyplants{icon_state = "plant-06"},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aiT" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Port Bow Maintainance"; req_one_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aiU" = (/obj/structure/disposalpipe/segment,/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aiV" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/turf/open/floor/plating,/area/construction)
+"aiW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Observatory"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
+"aiX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/observatory)
+"aiY" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"aiZ" = (/turf/open/floor/plasteel,/area/crew_quarters/observatory)
+"aja" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/caution,/turf/open/floor/plating,/area/construction)
+"ajb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ajc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"ajd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aje" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"ajf" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
+"ajg" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -24},/obj/item/reagent_containers/food/snacks/pie/cream,/obj/item/instrument/bikehorn,/obj/item/flashlight/lamp/bananalamp{pixel_y = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"ajh" = (/obj/structure/table/glass,/obj/item/paper_bin/construction,/obj/item/storage/crayons,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
+"aji" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"ajj" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ajk" = (/obj/effect/landmark/start/clown,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"ajl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ajm" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/washing_machine,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"ajn" = (/obj/machinery/power/smes,/turf/open/floor/plating,/area/tcommsat/computer)
+"ajo" = (/obj/structure/table,/obj/item/toy/dummy,/obj/structure/mirror{pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
+"ajp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory)
+"ajq" = (/obj/effect/landmark/start/clown,/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{areastring = "/area/crew_quarters/theatre/clown"; dir = 4; name = "Clown's Office APC"; pixel_x = 24},/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"ajr" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory)
+"ajs" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/mint,/obj/item/reagent_containers/food/condiment/mayonnaise,/obj/item/bikehorn{pixel_x = -8; pixel_y = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ajt" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating,/area/tcommsat/computer)
+"aju" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"ajv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime)
+"ajw" = (/turf/closed/wall,/area/construction/secondary)
+"ajx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"ajy" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/machinery/computer/prisoner/management,/turf/open/floor/plasteel,/area/security/brig)
+"ajz" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"ajA" = (/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig)
+"ajB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/prison)
+"ajC" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"ajD" = (/obj/structure/chair/stool,/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ajE" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ajF" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/secondary)
+"ajG" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"ajH" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/storage/toolbox/mechanical,/obj/item/crowbar,/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ajI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ajJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ajK" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"ajL" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge"; name = "Lounge APC"; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/observatory)
+"ajM" = (/obj/structure/table,/obj/machinery/reagentgrinder{pixel_y = 6},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -8; pixel_y = 12},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -8; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ajN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore)
+"ajO" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
+"ajP" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ajQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"ajR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory)
+"ajS" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"ajT" = (/obj/structure/weightmachine/weightlifter,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"ajU" = (/obj/structure/rack,/obj/item/wrench,/obj/item/light/tube,/obj/item/radio/off,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable,/obj/machinery/camera{c_tag = "Security - Interrogation Maintenance"; dir = 1},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/security/brig"; dir = 4; name = "Brig APC"; pixel_x = 26},/turf/open/floor/plating,/area/maintenance/solars/port)
+"ajV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/theatre/mime)
+"ajW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory)
+"ajX" = (/obj/item/pipe{pixel_x = 8; pixel_y = 2},/obj/item/melee/baseball_bat,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/camera{c_tag = "Secondary Construction Area"},/turf/open/floor/plating,/area/construction/secondary)
+"ajY" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ajZ" = (/obj/item/multitool,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/tcommsat/computer"; dir = 1; name = "Telecomms Access APC"; pixel_y = 28},/turf/open/floor/plating,/area/tcommsat/computer)
+"aka" = (/turf/closed/wall,/area/crew_quarters/bar)
+"akb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Mime's Office"; req_access_txt = "46"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/theatre/mime)
+"akc" = (/obj/machinery/computer/slot_machine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary)
+"akd" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/security/checkpoint)
+"ake" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/rnd/production/techfab/department/service,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"akf" = (/obj/structure/table,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/electronics/firelock,/obj/item/electronics/firealarm,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary)
+"akg" = (/obj/machinery/power/solar_control{dir = 4; id = "foreport"; name = "Port Bow Solar Control"},/obj/structure/sign/warning/electricshock{pixel_x = -32},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"akh" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary)
+"aki" = (/obj/structure/closet/toolcloset,/turf/open/floor/plating,/area/construction/secondary)
+"akj" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"akk" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/turf/open/floor/plating,/area/construction/secondary)
+"akl" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/computer/shuttle/labor{dir = 4},/turf/open/floor/plasteel,/area/security/processing)
+"akm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass,/turf/open/floor/plasteel,/area/construction/secondary)
+"akn" = (/obj/machinery/power/solar_control{id = "forestarboard"; name = "Starboard Bow Solar Control"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"ako" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 7; pixel_y = 24},/obj/effect/decal/cleanable/generic,/turf/open/floor/plasteel,/area/maintenance/port/fore)
+"akp" = (/obj/structure/closet/secure_closet/warden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
+"akq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table/reinforced,/obj/item/storage/box/prisoner,/obj/item/razor,/obj/item/paper/guides/jobs/security/labor_camp,/obj/item/pen,/turf/open/floor/plasteel,/area/security/processing)
+"akr" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/computer/prisoner/gulag_teleporter_computer{dir = 8},/obj/machinery/camera{c_tag = "Security - Prison Shuttle Dock"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/security/processing)
+"aks" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
+"akt" = (/obj/machinery/computer/prisoner/management,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Brig Control APC"; pixel_y = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
+"aku" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
+"akv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"akw" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"akx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Secondary Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction/secondary)
+"aky" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
+"akz" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"akA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/security/warden)
+"akB" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"akC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/electricshock{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/fore)
+"akD" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/item/hand_labeler{pixel_y = 4},/turf/open/floor/plasteel,/area/security/brig)
+"akE" = (/turf/closed/wall/r_wall,/area/router/sec)
+"akF" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"akG" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port/fore)
+"akH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"akI" = (/turf/closed/wall/r_wall,/area/tcommsat/computer)
+"akJ" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Telecommunications Maintenance"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/tcommsat/computer)
+"akK" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
+"akL" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Brig"; pixel_x = 22},/turf/open/floor/plasteel,/area/security/brig)
+"akM" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"akN" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "secblock"; name = "Security Router"},/obj/machinery/conveyor/auto{id = "sec"},/turf/open/floor/plating,/area/router/sec)
+"akO" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/computer/security/labor{dir = 4},/turf/open/floor/plasteel,/area/security/processing)
+"akP" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "Security Router"},/turf/open/floor/plating,/area/router/sec)
+"akQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"akR" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"akS" = (/obj/structure/rack,/obj/structure/window/reinforced/tinted{dir = 1},/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"akT" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel,/area/security/processing)
+"akU" = (/obj/machinery/door/window/northleft{name = "Showers"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"akV" = (/obj/structure/rack,/obj/structure/window/reinforced/tinted{dir = 1},/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"akW" = (/obj/structure/table/wood,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/structure/sign/departments/restroom{pixel_x = -32},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"akX" = (/turf/closed/wall,/area/crew_quarters/dorms/purple)
+"akY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
+"akZ" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"ala" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"alb" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"alc" = (/obj/structure/fermenting_barrel,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"ald" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"ale" = (/turf/closed/wall,/area/crew_quarters/dorms/blue)
+"alf" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"alg" = (/obj/structure/frame/machine,/obj/item/circuitboard/computer/arcade/minesweeper,/turf/open/floor/plating,/area/construction/secondary)
+"alh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ali" = (/turf/open/floor/plating,/area/construction/secondary)
+"alj" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel,/area/security/processing)
+"alk" = (/obj/item/caution,/turf/open/floor/plating,/area/construction/secondary)
+"all" = (/obj/structure/table/glass,/obj/item/wrench{pixel_x = 2; pixel_y = 4},/obj/item/reagent_containers/glass/bottle/mutagen{pixel_x = -4},/turf/open/floor/grass,/area/hydroponics)
+"alm" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics)
+"aln" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/grass,/area/hydroponics)
+"alo" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
+"alp" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/construction/secondary)
+"alq" = (/obj/machinery/conveyor/auto{id = "sec"},/turf/open/floor/plating,/area/router/sec)
+"alr" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"als" = (/obj/machinery/mass_driver{dir = 1; id = "sec_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/sec)
+"alt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external/glass{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing)
+"alu" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"alv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing)
+"alw" = (/obj/machinery/light{dir = 8},/obj/effect/landmark/start/warden,/obj/machinery/camera{c_tag = "Security - Brig Control"; dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/warden)
+"alx" = (/turf/open/floor/plasteel,/area/maintenance/port/fore)
+"aly" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
+"alz" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"alA" = (/obj/structure/bed,/obj/item/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"alB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/fore)
+"alC" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/port/fore)
+"alD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"alE" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"alF" = (/obj/machinery/photocopier,/obj/machinery/newscaster/security_unit{pixel_y = -28},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/paper/guides/cogstation/letter_sec,/turf/open/floor/plasteel,/area/security/warden)
+"alG" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/port/fore)
+"alH" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = -8},/obj/item/storage/box/ingredients{pixel_x = 6},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"alI" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"alJ" = (/obj/machinery/vending/hydroseeds,/turf/open/floor/grass,/area/hydroponics)
+"alK" = (/obj/effect/landmark/xmastree,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"alL" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"alM" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"alN" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fore)
+"alO" = (/obj/structure/table/wood,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"alP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"alQ" = (/obj/structure/dresser,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"alR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"alS" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/reagent_containers/rag,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"alT" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"alU" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"alV" = (/obj/structure/bed,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"alW" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/security/processing)
+"alX" = (/obj/structure/table,/obj/item/storage/box/ingredients,/obj/item/clothing/head/chefhat,/obj/item/reagent_containers/glass/beaker,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"alY" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/item/t_scanner,/turf/open/floor/plating,/area/construction/secondary)
+"alZ" = (/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"})
+"ama" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/warden)
+"amb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore)
+"amc" = (/turf/closed/wall,/area/storage/tools)
+"amd" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ame" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden)
+"amf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"amg" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/processing)
+"amh" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/recharger,/obj/item/pen/red{pixel_y = 4},/obj/item/pen/blue{pixel_x = -4; pixel_y = -4},/turf/open/floor/plasteel,/area/security/brig)
+"ami" = (/obj/structure/sign/poster/contraband/grey_tide{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/port/fore)
+"amj" = (/turf/closed/wall/rust,/area/maintenance/port/fore)
+"amk" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/maintenance/port/fore)
+"aml" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"amm" = (/obj/structure/closet/crate/secure/weapon{desc = "A secure clothing crate."; name = "formal uniform crate"; req_access_txt = "3"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/warden)
+"amn" = (/obj/structure/cable{icon_state = "2-4"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/construction/secondary)
+"amo" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"amp" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore)
+"amq" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/solars/port)
+"amr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ams" = (/obj/machinery/camera{c_tag = "Fitness Toilets"; pixel_x = 22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"amt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"amu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"amv" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"amw" = (/obj/structure/sign/poster/contraband/eat{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"amx" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"amy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/bar)
+"amz" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"amA" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"amB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden)
+"amC" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"amD" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"amE" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/cable,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/bar"; dir = 8; name = "Bar APC"; pixel_x = -26},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"amF" = (/obj/effect/landmark/start/cook,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"amG" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/chapel/main)
+"amH" = (/obj/item/crowbar/large{pixel_y = 3},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary)
+"amI" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/warden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/warden)
+"amJ" = (/obj/structure/lattice,/obj/structure/sign/departments/botany{pixel_x = -32},/turf/open/space/basic,/area/space/nearstation)
+"amK" = (/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"amL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/service)
+"amM" = (/obj/machinery/light,/obj/machinery/disposal/bin{name = "Kitchen Mailbox"},/obj/effect/turf_decal/delivery/white,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"amN" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/tools)
+"amO" = (/obj/item/bedsheet/mime,/obj/structure/bed,/obj/effect/landmark/start/mime,/obj/machinery/camera{c_tag = "Mime's Office"; pixel_x = 22},/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
+"amP" = (/obj/effect/landmark/start/assistant,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
+"amQ" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Reception Window"},/obj/machinery/door/window/westleft{name = "Warden's Desk"; req_one_access_txt = "2"},/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/warden)
+"amR" = (/obj/machinery/light/small,/obj/machinery/light_switch{pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/secondary)
+"amS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"amT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/construction/secondary)
+"amU" = (/obj/structure/beebox,/obj/item/queen_bee/bought,/turf/open/floor/grass,/area/hydroponics)
+"amV" = (/turf/open/floor/grass,/area/hydroponics)
+"amW" = (/obj/structure/table/glass,/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = -4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = -4},/obj/item/book/manual/hydroponics_pod_people{pixel_x = 4; pixel_y = 4},/obj/item/paper/guides/jobs/hydroponics{pixel_x = 4; pixel_y = 4},/turf/open/floor/grass,/area/hydroponics)
+"amX" = (/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/dark,/area/security/processing)
+"amY" = (/turf/closed/wall,/area/chapel/main)
+"amZ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"ana" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"anb" = (/obj/structure/table,/obj/item/lipstick/black,/obj/item/lipstick/random{pixel_x = 2; pixel_y = 4},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime)
+"anc" = (/obj/item/cigbutt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/secondary)
+"and" = (/turf/closed/wall/r_wall,/area/chapel/main)
+"ane" = (/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"anf" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/construction/secondary"; dir = 1; name = "Secondary Construction Area APC"; pixel_y = 24},/turf/open/floor/plating,/area/construction/secondary)
+"ang" = (/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"})
+"anh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/paper_bin,/obj/item/pen,/obj/item/clothing/glasses/regular,/obj/machinery/door/window/northright{name = "Medical Booth Desk"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"ani" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/poster/official/duelshotgun{pixel_y = -32},/turf/open/floor/plasteel,/area/security/brig)
+"anj" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ank" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/machinery/camera{c_tag = "Crew Lounge"; dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"anl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"anm" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/disposal)
+"ann" = (/obj/effect/landmark/event_spawn,/turf/open/floor/goonplaque{desc = "It reads 'In honor of spacemen past, whose work allowed this station to find its new home. The fact that you stand on a station originally built light years away is a definitive representation of the ingenuity of the human spirit.' Beneath this is the image of a spaceman rocketing upwards by means of what appears to be a match and flatulence."},/area/hallway/secondary/entry)
+"ano" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"anp" = (/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
+"anq" = (/turf/closed/wall,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"anr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"ans" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/destTagger,/obj/machinery/button/door{id = "secblock"; name = "Router Access Control"; pixel_x = 8; pixel_y = 24; req_access_txt = "1"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/router/sec)
+"ant" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"anu" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"anv" = (/obj/item/stack/sheet/plasteel{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/beakers,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/construction)
+"anw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"anx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/tcommsat/computer)
+"any" = (/obj/structure/table/wood,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"anz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"anA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fitness Room Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"anB" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"anC" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/delivery,/obj/machinery/requests_console{department = "Security Router"; name = "Security Router RC"; pixel_y = 32},/turf/open/floor/plasteel,/area/router/sec)
+"anD" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"anE" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"anF" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen)
+"anG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"anH" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/checkpoint)
+"anI" = (/obj/machinery/computer/arcade/orion_trail,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"anJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/item/paper_bin,/obj/item/stamp/denied{pixel_x = 8; pixel_y = 8},/obj/item/stamp{pixel_x = 6; pixel_y = 4},/obj/item/pen,/obj/machinery/power/apc{areastring = "/area/security/checkpoint"; dir = 4; name = "Security Checkpoint APC"; pixel_x = 24},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/checkpoint)
+"anK" = (/turf/closed/wall/r_wall,/area/security/detectives_office)
+"anL" = (/obj/machinery/computer/arcade/minesweeper,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"anM" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools)
+"anN" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/analyzer,/obj/item/wrench{pixel_y = 4},/turf/open/floor/plasteel,/area/storage/tools)
+"anO" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/storage/belt/utility,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/tools)
+"anP" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"anQ" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"anR" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"anS" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/power/apc{areastring = "/area/storage/tools"; name = "Auxiliary Tool Storage APC"; pixel_y = -26},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 4; pixel_y = -22},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/storage/tools)
+"anT" = (/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"anU" = (/turf/closed/wall/r_wall,/area/security/brig)
+"anV" = (/turf/open/floor/plating,/area/maintenance/solars/port)
+"anW" = (/obj/machinery/conveyor{dir = 1; id = "sec_off"},/turf/open/floor/plating,/area/router/sec)
+"anX" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"anY" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"anZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"aoa" = (/obj/item/clockwork/component/geis_capacitor/fallen_armor,/obj/structure/table/bronze,/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"aob" = (/obj/structure/closet/emcloset,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/solars/port)
+"aoc" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/machinery/requests_console{department = "Recreation"; name = "Recreation RC"; pixel_y = -32},/obj/item/storage/box/drinkingglasses,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -4; pixel_y = 2},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aod" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
+"aoe" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"aof" = (/obj/structure/sign/poster/official/foam_force_ad{pixel_y = 32},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"aog" = (/turf/open/floor/grass,/area/hydroponics/garden{name = "Nature Preserve"})
+"aoh" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aoi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"aoj" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/security/checkpoint)
+"aok" = (/obj/structure/chair/wood/normal{dir = 1},/obj/machinery/button/door{id = "Dorm1"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = -7; pixel_y = -24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"aol" = (/obj/machinery/button/door{id = "Dorm3"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = 7; pixel_y = -24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"aom" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"aon" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"aoo" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary)
+"aop" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/construction/secondary)
+"aoq" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/warden)
+"aor" = (/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"aos" = (/obj/structure/window/reinforced,/obj/structure/closet/athletic_mixed,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aot" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aou" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"aov" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics)
+"aow" = (/mob/living/simple_animal/banana_spider{name = "Henry"},/turf/open/floor/grass,/area/hydroponics)
+"aox" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"aoy" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/camera{c_tag = "Security Checkpoint"; pixel_x = 22},/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint)
+"aoz" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary)
+"aoA" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/machinery/door/window/westright{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint)
+"aoB" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera{c_tag = "Security - Prison Beds"; dir = 8; pixel_y = -22},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/security/prison"; dir = 4; name = "Prison APC"; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aoC" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aoD" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint)
+"aoE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/main)
+"aoF" = (/turf/closed/wall/r_wall,/area/security/main)
+"aoG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint)
+"aoH" = (/obj/machinery/door/airlock/external/glass{name = "Port Bow Solars External Access"; req_access_txt = "10;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aoI" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics)
+"aoJ" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/space_heater,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"aoK" = (/turf/closed/wall/r_wall,/area/router/service)
+"aoL" = (/obj/structure/chair/stool,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"aoM" = (/obj/structure/closet/crate,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/capacitor,/turf/open/floor/plating,/area/construction)
+"aoN" = (/obj/structure/closet/crate/internals,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/flashlight,/obj/item/flashlight,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/item/clothing/head/hardhat/orange,/obj/item/clothing/head/hardhat/orange,/turf/open/floor/plasteel,/area/storage/tools)
+"aoO" = (/turf/open/floor/plasteel,/area/storage/tools)
+"aoP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aoQ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"aoR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/warden)
+"aoS" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{id = "serv_off"},/obj/machinery/door/poddoor/preopen{id = "servblock"; name = "Service Router"},/turf/open/floor/plating,/area/router/service)
+"aoT" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "servblock"; name = "Service Router"},/turf/open/floor/plating,/area/router/service)
+"aoU" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"aoV" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aoW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Port Bow Solars External Access"; req_access_txt = "10;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aoX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aoY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aoZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"apa" = (/obj/structure/chair/sofa/right,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
+"apb" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"apc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig)
+"apd" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"})
+"ape" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/port/fore)
+"apf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"apg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/router/sec)
+"aph" = (/turf/open/floor/plasteel/dark,/area/security/brig)
+"api" = (/obj/machinery/door/window/southright{name = "Weightroom"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"apj" = (/obj/structure/window/reinforced,/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"apk" = (/obj/structure/closet/lasertag/blue,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"apl" = (/obj/structure/chair/sofa/right,/obj/item/clothing/head/beret/black,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"apm" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"apn" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/sec)
+"apo" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction)
+"app" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/sec)
+"apq" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/secondary/entry)
+"apr" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/massdriver{id = "sec_out"; pixel_x = 24; pixel_y = 24},/turf/open/floor/plasteel,/area/router/sec)
+"aps" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/security{name = "Security EVA Prep Room"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing)
+"apt" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction)
+"apu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
+"apv" = (/turf/closed/wall,/area/hallway/secondary/entry)
+"apw" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/assistant,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"apx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"apy" = (/obj/machinery/vr_sleeper{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"apz" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"apA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/dorms/purple)
+"apB" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/hydroponics/garden{name = "Nature Preserve"})
+"apC" = (/turf/closed/wall/r_wall,/area/hydroponics)
+"apD" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Room 1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"apE" = (/obj/machinery/biogenerator,/turf/open/floor/grass,/area/hydroponics)
+"apF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"apG" = (/mob/living/simple_animal/chicken{name = "Featherbottom"; real_name = "Featherbottom"},/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"apH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/main)
+"apI" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"apJ" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/machinery/camera{c_tag = "Hydroponics - Fore"; dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
+"apK" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/hydroponics)
+"apL" = (/obj/structure/chair/sofa/left,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"apM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"apN" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Room 3"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"apO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/dorms/blue)
+"apP" = (/obj/structure/table,/obj/item/radio/intercom{name = "Station Intercom (Common)"},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"apQ" = (/obj/machinery/door/airlock/security/glass{name = "Solitary Confinement"; req_one_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"apR" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 1; pixel_y = 3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -5; pixel_y = 7},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"apS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"apT" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction)
+"apU" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/gun/ballistic/revolver/russian,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"apV" = (/turf/closed/wall/rust,/area/chapel/main)
+"apW" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/kitchen)
+"apX" = (/obj/structure/fermenting_barrel,/turf/open/floor/grass,/area/hydroponics)
+"apY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore)
+"apZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Fitness Toilets"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"aqa" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aqb" = (/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Secondary Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction/secondary)
+"aqc" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall/r_wall,/area/medical{name = "Medical Booth"})
+"aqd" = (/obj/structure/chair/sofa/right,/obj/machinery/camera{c_tag = "Chapel - Fore"},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
+"aqe" = (/obj/machinery/conveyor{id = "serv_off"},/turf/open/floor/plating,/area/router/service)
+"aqf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aqg" = (/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room"; dir = 8; pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aqh" = (/obj/structure/chair/sofa/left,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aqi" = (/obj/structure/table,/obj/item/clipboard,/obj/item/paper_bin{pixel_x = 2; pixel_y = 4},/obj/item/pen,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aqj" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aqk" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"aql" = (/turf/closed/wall/r_wall,/area/crew_quarters/bar)
+"aqm" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"aqn" = (/turf/closed/wall/r_wall,/area/medical{name = "Medical Booth"})
+"aqo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"aqp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"aqq" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/storage/tools)
+"aqr" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/tools)
+"aqs" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aqt" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/sign/poster/contraband/hacking_guide{pixel_x = 32},/turf/open/floor/plasteel,/area/storage/tools)
+"aqu" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aqv" = (/obj/structure/sign/poster/official/no_erp{pixel_x = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"aqw" = (/turf/closed/wall/r_wall/rust,/area/maintenance/solars/port)
+"aqx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"aqy" = (/obj/machinery/mass_driver{dir = 1; id = "serv_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/service)
+"aqz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
+"aqA" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aqB" = (/turf/closed/wall,/area/hydroponics)
+"aqC" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics)
+"aqD" = (/obj/machinery/vending/sustenance,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aqE" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/sec)
+"aqF" = (/turf/open/floor/plasteel,/area/router/sec)
+"aqG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"aqH" = (/obj/machinery/power/apc{name = "Security Router APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/router/sec)
+"aqI" = (/obj/structure/flora/ausbushes/genericbush,/turf/open/floor/grass,/area/hydroponics)
+"aqJ" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/router/sec)
+"aqK" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aqL" = (/turf/closed/wall,/area/security/checkpoint)
+"aqM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port)
+"aqN" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/hallway/secondary/service)
+"aqO" = (/obj/machinery/door/airlock/engineering{name = "Engineering EVA"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"aqP" = (/obj/structure/chair/stool,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"aqQ" = (/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"aqR" = (/obj/item/grown/bananapeel,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"aqS" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"aqT" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"aqU" = (/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"})
+"aqV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Purple Dorms Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/purple)
+"aqW" = (/obj/structure/table,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/book/manual/chef_recipes,/obj/item/storage/box/donkpockets,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aqX" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; icon_state = "roomnum"; name = "Room Number 1"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"aqY" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/security/brig)
+"aqZ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"ara" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"arb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/barbershop"; dir = 4; name = "Barbershop APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/port/fore)
+"arc" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/toy/figure/clown,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"ard" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"are" = (/obj/machinery/chem_heater,/obj/effect/turf_decal/stripes/end{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"arf" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"arg" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"arh" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"ari" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/processing)
+"arj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/purple)
+"ark" = (/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"arl" = (/obj/machinery/vending/kink,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Locker Room"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"arm" = (/obj/structure/chair/sofa/right,/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"arn" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools)
+"aro" = (/obj/structure/closet/firecloset,/obj/machinery/camera{c_tag = "Starboard Bow Maintenance - Starboard"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"arp" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/disposal)
+"arq" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
+"arr" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plating,/area/maintenance/solars/port)
+"ars" = (/obj/structure/chair/stool,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/landmark/start/bartender,/obj/item/clothing/under/costume/maid,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"art" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aru" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/blue)
+"arv" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian{pixel_x = 1; pixel_y = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"arw" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Crew Quarters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"arx" = (/obj/machinery/button/door{id = "kitchenlock"; name = "Kitchen Lockup"; pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"ary" = (/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"arz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"arA" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"arB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"arC" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 4; icon_state = "roomnum"; name = "Room Number 3"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"arD" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Blue Dorms Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/crew_quarters/dorms/blue)
+"arE" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/central)
+"arF" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"arG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"arH" = (/obj/machinery/disposal/bin{name = "Detective's Mailbox"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"arI" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness)
+"arJ" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"arK" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/destTagger,/obj/machinery/button/massdriver{id = "serv_out"; pixel_x = 8; pixel_y = -4},/obj/machinery/requests_console{department = "Service Router"; name = "Service Router RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/router/service)
+"arL" = (/obj/machinery/conveyor{dir = 1; id = "serv_off"},/turf/open/floor/plating,/area/router/service)
+"arM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/router/service)
+"arN" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "gas to sauna"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"arO" = (/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"arP" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"arQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"arR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/falsewall/reinforced{req_access_txt = "1"},/turf/open/floor/plasteel,/area/router/sec)
+"arS" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/dorms/purple)
+"arT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig)
+"arU" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 1; icon_state = "roomnum"; name = "Room Number 2"; pixel_y = -28},/obj/machinery/camera{c_tag = "Dormitories - Purple"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"arV" = (/obj/machinery/vr_sleeper{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/sign/poster/official/soft_cap_pop_art{pixel_x = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"arW" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"arX" = (/obj/machinery/computer/med_data{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"arY" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"arZ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"asa" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"asb" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"asc" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"asd" = (/turf/closed/wall/rust,/area/maintenance/starboard/fore)
+"ase" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Purple Dorms"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms/purple)
+"asf" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Blue Dorms"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms/blue)
+"asg" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"ash" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"asi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"asj" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
+"ask" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Security - Prison Fore"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/mob/living/simple_animal/mouse/brown/Tom,/turf/open/floor/plasteel,/area/security/prison)
+"asl" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/camera{c_tag = "Port Bow Solar Maintenance"; dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port)
+"asm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/hallway/secondary/service"; dir = 8; name = "Service Hall APC"; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"asn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"aso" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 8; icon_state = "roomnum"; name = "Room Number 4"; pixel_y = -28},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Dormitories - Blue"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"asp" = (/obj/structure/chair/comfy/brown,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"asq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/dorms/blue)
+"asr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore)
+"ass" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/light/small,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"ast" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"asu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/rust,/area/maintenance/disposal)
+"asv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"asw" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"asx" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"asy" = (/obj/effect/landmark/start/assistant,/obj/machinery/holopad,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
+"asz" = (/obj/structure/toilet{dir = 4},/obj/machinery/camera{c_tag = "Security - Prison Bathroom"; dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison)
+"asA" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plating,/area/router/service)
+"asB" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"asC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"asD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"asE" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/button/door{id = "servblock"; name = "Router Access Control"; pixel_x = 8; pixel_y = 24; req_one_access_txt = "12;25;26;28;35;46"},/turf/open/floor/plasteel,/area/router/service)
+"asF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/security{name = "Labor Camp Arrivals"},/turf/open/floor/plasteel,/area/security/processing)
+"asG" = (/obj/structure/sign/warning/nosmoking/circle,/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"})
+"asH" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port)
+"asI" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"asJ" = (/turf/closed/wall,/area/crew_quarters/toilet)
+"asK" = (/obj/machinery/vr_sleeper{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"asL" = (/turf/closed/wall,/area/security/brig)
+"asM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"})
+"asN" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"asO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"asP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"asQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/router/service)
+"asR" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"asS" = (/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"asT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/simple_animal/mouse/gray{desc = "A strangely observant rodent."; name = "Remy"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"asU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Router"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"asV" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"asW" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/security/main)
+"asX" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/tape,/obj/item/radio/off,/turf/open/floor/plasteel/dark,/area/security/brig)
+"asY" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/item/clipboard,/turf/open/floor/plasteel/dark,/area/security/brig)
+"asZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/service)
+"ata" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main)
+"atb" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"atc" = (/turf/closed/wall,/area/security/main)
+"atd" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Service Router APC"; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/router/service)
+"ate" = (/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/router/service)
+"atf" = (/turf/closed/wall/r_wall/rust,/area/maintenance/starboard/central)
+"atg" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/router/service)
+"ath" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/router/service)
+"ati" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/turf/open/floor/plasteel,/area/router/service)
+"atj" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/security/brig)
+"atk" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"atl" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/router/service)
+"atm" = (/obj/structure/table,/obj/item/kitchen/rollingpin,/obj/item/reagent_containers/food/condiment/enzyme,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"atn" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plasteel,/area/router/service)
+"ato" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"atp" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Room 2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"atq" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/processing)
+"atr" = (/obj/machinery/door/airlock{id_tag = "Dorm4"; name = "Room 4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"ats" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{name = "Clown's Office"; req_access_txt = "46"},/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
+"att" = (/turf/open/floor/plating,/area/maintenance/starboard/central)
+"atu" = (/obj/machinery/computer/cargo/request{dir = 4},/turf/open/floor/plating,/area/router/service)
+"atv" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"atw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/service)
+"atx" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/router/service)
+"aty" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/router/service)
+"atz" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main)
+"atA" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"atB" = (/obj/machinery/shower{dir = 4},/obj/item/bikehorn/rubberducky,/obj/structure/sign/poster/official/no_erp{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"atC" = (/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"atD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router/service)
+"atE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/router/service)
+"atF" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator)
+"atG" = (/turf/open/floor/plasteel/dark,/area/router/service)
+"atH" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/power/apc{areastring = "/area/security/processing"; name = "Labor Shuttle Dock APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/security/processing)
+"atI" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/warden)
+"atJ" = (/turf/closed/wall/rust,/area/crew_quarters/theatre/clown)
+"atK" = (/obj/structure/chair{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"atL" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"atM" = (/obj/structure/chair{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"atN" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"atO" = (/obj/structure/table,/obj/item/storage/bag/tray,/obj/item/clothing/gloves/color/white,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/paper/guides/cogstation/cooks,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"atP" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"atQ" = (/obj/structure/closet/lasertag/red,/obj/structure/sign/poster/official/space_cops{pixel_x = -32},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"atR" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"atS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access_txt = "25"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"atT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"atU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/security/brig)
+"atV" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"atW" = (/obj/machinery/disposal/bin{name = "Parolee Exit"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig)
+"atX" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/stock_parts/cell/high/plus,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/tools)
+"atY" = (/obj/machinery/button/door{id = "Dorm2"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = -7; pixel_y = 24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"atZ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/hallway/secondary/entry)
+"aua" = (/obj/structure/chair/wood/normal,/obj/machinery/button/door{id = "Dorm4"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = 7; pixel_y = 24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"aub" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"auc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aud" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"aue" = (/obj/structure/closet/crate/hydroponics,/obj/item/seeds/random,/turf/open/floor/plating,/area/router/service)
+"auf" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service)
+"aug" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/storage/bag/plants,/turf/open/floor/plasteel,/area/hydroponics)
+"auh" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/pill_bottle/dice,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aui" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Freezer AC Pump"},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"auj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/router/service)
+"auk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/service)
+"aul" = (/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/mouse/brown{name = "Chewy"},/turf/open/floor/plating,/area/hallway/secondary/service)
+"aum" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/service)
+"aun" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/hydroponics)
+"auo" = (/obj/machinery/light{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/machinery/reagentgrinder{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics)
+"aup" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/table/glass,/obj/item/reagent_containers/glass/bucket{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"auq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/router/service)
+"aur" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/router/service)
+"aus" = (/turf/open/floor/engine,/area/engine/gravity_generator)
+"aut" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"auu" = (/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel/dark,/area/router/service)
+"auv" = (/obj/structure/bed,/obj/item/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"auw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"aux" = (/obj/machinery/light/small,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"auy" = (/turf/open/floor/plasteel,/area/hydroponics)
+"auz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/chem_master,/turf/open/floor/plasteel,/area/hydroponics)
+"auA" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/beacon,/turf/open/floor/plasteel,/area/hydroponics)
+"auB" = (/obj/structure/dresser,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
+"auC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"auD" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"auE" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"auF" = (/obj/structure/table/wood,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"auG" = (/obj/machinery/light/small,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"auH" = (/obj/structure/girder/displaced,/obj/item/reagent_containers/rag,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"auI" = (/obj/structure/closet/secure_closet/brig,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"auJ" = (/obj/structure/bed,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
+"auK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/security/brig)
+"auL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plating,/area/maintenance/solars/port)
+"auM" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/official/bless_this_spess{pixel_x = -32},/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"auN" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"auO" = (/obj/structure/closet/crate/freezer,/turf/open/floor/plating,/area/router/service)
+"auP" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/start/assistant/override,/turf/open/floor/plasteel,/area/security/main)
+"auQ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"auR" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/power/apc{areastring = "/area/engine/secure_construction"; dir = 1; name = "Engineering Construction Area APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"auS" = (/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"auT" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"auU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/router/service)
+"auV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
+"auW" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/poster/official/the_owl{pixel_y = 32},/turf/open/floor/plasteel,/area/security/main)
+"auX" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/right,/area/router/service)
+"auY" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"auZ" = (/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"ava" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/service)
+"avb" = (/turf/closed/wall,/area/hallway/secondary/civilian)
+"avc" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avd" = (/obj/structure/sign/warning{name = "\improper COLD TEMPERATURES"; pixel_x = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"ave" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
+"avf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/secondary/civilian)
+"avg" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/turnstile{name = "Genpop Entrance Turnstile"; icon_state = "turnstile_map"; dir = 8; req_access_txt = "69"},/turf/open/floor/plasteel,/area/security/prison)
+"avh" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/tools)
+"avi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/abandoned{name = "Port Bow Maintainance"; req_one_access_txt = "13"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"avj" = (/obj/machinery/photocopier,/turf/open/floor/carpet/red,/area/security/brig)
+"avk" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/plant_analyzer,/obj/structure/table/glass,/obj/machinery/plantgenes{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics)
+"avl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"avm" = (/turf/closed/wall/r_wall,/area/hallway/secondary/civilian)
+"avn" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/poster/official/spiderlings{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"avo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"avp" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service)
+"avq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/service)
+"avr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/solar/starboard/fore)
+"avs" = (/turf/closed/wall,/area/router/service)
+"avt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"avu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"avv" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating,/area/space/nearstation)
+"avw" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/sign/poster/official/wtf_is_co2{pixel_x = 32},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"avx" = (/obj/structure/table,/obj/item/hand_labeler,/obj/item/crowbar/large,/obj/item/crowbar{pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service)
+"avy" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating,/area/space/nearstation)
+"avz" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service)
+"avA" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"avB" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service)
+"avC" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avD" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/storage/belt/utility,/obj/item/tank/internals/air,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service)
+"avE" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "generator to hot loop"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison)
+"avG" = (/turf/closed/wall,/area/security/prison)
+"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avJ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/security/main)
+"avK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avL" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main)
+"avM" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/main)
+"avN" = (/turf/closed/wall,/area/crew_quarters/barbershop)
+"avO" = (/obj/structure/table,/obj/structure/bedsheetbin/color,/obj/item/clothing/gloves/color/white,/obj/machinery/camera{c_tag = "Laundry Room"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"avP" = (/obj/structure/reagent_dispensers/keg,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"avQ" = (/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avR" = (/obj/machinery/washing_machine,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"avS" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"avT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"avU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avV" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"avW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/solars/port)
+"avX" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"avY" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/obj/machinery/door/window/westleft{name = "AI Core Access"; req_access_txt = "65"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"avZ" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"awa" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible,/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"awb" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"awc" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"awd" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"awe" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"awf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"awg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Fore"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"awh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/poster/official/fruit_bowl{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"awi" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"awj" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"awk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"awl" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"awm" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/solars/port)
+"awn" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"awo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"awp" = (/turf/closed/wall,/area/hydroponics/lobby)
+"awq" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/space/nearstation)
+"awr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aws" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"})
+"awt" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/firedoor,/obj/item/folder/red,/obj/machinery/door/window/westleft{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint)
+"awu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/maintenance/solars/port)
+"awv" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/structure/table,/obj/item/clothing/gloves/color/white,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"aww" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"awx" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hydroponics/lobby)
+"awy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Laundry Room Maintenance"; req_one_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/barbershop)
+"awz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"awA" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"awB" = (/obj/machinery/microwave,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/bar)
+"awC" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"awD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/storage/tools)
+"awE" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/tools)
+"awF" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"awG" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"awH" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/machinery/turnstile{name = "Genpop Entrance Turnstile"; icon_state = "turnstile_map"; dir = 8; req_access_txt = "69"},/turf/open/floor/plasteel,/area/security/prison)
+"awI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"awJ" = (/obj/effect/turf_decal/bot,/obj/machinery/flasher/portable,/turf/open/floor/plasteel,/area/security/brig)
+"awK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"awL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"awM" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar/large,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"awN" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore)
+"awO" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/central"; dir = 1; name = "Central Port Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/port/central)
+"awP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"awQ" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main)
+"awR" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"awS" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main)
+"awT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 7},/turf/open/floor/plasteel,/area/security/main)
+"awU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"awV" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/storage/tools)
+"awW" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"awX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"awY" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/button/door{id = "solitarylock"; name = "Solitary Lockdown"; pixel_x = -24; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/brig)
+"awZ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"axa" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"axb" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"axc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/closed/wall/r_wall,/area/maintenance/solars/port)
+"axd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"axe" = (/obj/structure/closet/crate,/obj/item/storage/belt/utility,/obj/item/clothing/glasses/meson,/turf/open/floor/plating,/area/maintenance/fore)
+"axf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"axg" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/camera{c_tag = "Arcade"; dir = 4},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"axh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/fore)
+"axi" = (/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig)
+"axj" = (/obj/machinery/vr_sleeper{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"axk" = (/obj/item/storage/pill_bottle/penis_enlargement,/turf/open/floor/plasteel/freezer,/area/security/prison)
+"axl" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/item/soap/homemade,/turf/open/floor/plasteel/freezer,/area/security/prison)
+"axm" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/security/prison)
+"axn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"axo" = (/obj/structure/table,/obj/item/tape,/obj/item/wrench,/obj/item/radio/off,/turf/open/floor/plasteel,/area/security/brig)
+"axp" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"axq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"axr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"axs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"axt" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"axu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/brig)
+"axv" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/clothing/accessory/armband/deputy,/obj/item/encryptionkey/headset_sec,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/clothing/head/cowboyhat/sec,/turf/open/floor/plasteel,/area/security/brig)
+"axw" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/security/main)
+"axx" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/camera{c_tag = "Fore Maintenance - Aft"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"axy" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"axz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/reagent_dispensers/peppertank{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
+"axA" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/science,/obj/item/encryptionkey/headset_sci,/turf/open/floor/plasteel,/area/security/brig)
+"axB" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/medblue,/obj/item/encryptionkey/headset_med,/turf/open/floor/plasteel,/area/security/brig)
+"axC" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"axD" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"axE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/kudzu{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"axF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"axG" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"axH" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"axI" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"axJ" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"axK" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"axL" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/obj/item/assembly/prox_sensor,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"axM" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"axN" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/security{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"axO" = (/obj/structure/weightmachine/stacklifter,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"axP" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"axQ" = (/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"axR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"axS" = (/obj/structure/closet/crate,/obj/item/storage/box/lights/mixed,/obj/item/clothing/mask/gas,/obj/item/cane,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"axT" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/crayons{pixel_y = 8},/turf/open/floor/plasteel,/area/security/brig)
+"axU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"axV" = (/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"axW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"axX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"axY" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"axZ" = (/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_y = 28},/obj/machinery/door/window/eastright{name = "AI Core Access"; req_access_txt = "65"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aya" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "AI Core Exterior"; dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation)
+"ayb" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"ayc" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"ayd" = (/turf/closed/wall,/area/hallway/primary/port/fore)
+"aye" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation)
+"ayf" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
+"ayg" = (/obj/machinery/vending/wardrobe/hydro_wardrobe,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"ayh" = (/obj/machinery/door/airlock{name = "Bathroom"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/freezer,/area/security/prison)
+"ayi" = (/obj/structure/table,/obj/item/clipboard,/obj/item/paper_bin{pixel_x = 2; pixel_y = 4},/obj/item/pen,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"ayj" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/brig)
+"ayk" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"ayl" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aym" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/prison)
+"ayn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"ayo" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"ayp" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"ayq" = (/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"ayr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"ays" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/space_up,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"ayt" = (/obj/structure/closet/crate,/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"ayu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore)
+"ayv" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"ayw" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Service Hallway - Fore"; dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"ayx" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"ayy" = (/turf/open/floor/carpet,/area/chapel/main)
+"ayz" = (/obj/structure/chair/pew/right{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
+"ayA" = (/obj/structure/window/reinforced,/obj/structure/destructible/cult/tome,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
+"ayB" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"ayC" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"ayD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"ayE" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/hydroponics/lobby)
+"ayF" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
+"ayG" = (/obj/structure/chair/comfy/brown{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"ayH" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/mob/living/simple_animal/cockroach,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"ayI" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"ayJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/maintenance/solars/port)
+"ayK" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"ayL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"ayM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"ayN" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
+"ayO" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main)
+"ayP" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"ayQ" = (/obj/machinery/vr_sleeper{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"ayR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/brig)
+"ayS" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
+"ayT" = (/obj/machinery/vending/security,/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"ayU" = (/obj/vehicle/ridden/secway,/obj/effect/turf_decal/bot,/obj/item/key/security,/turf/open/floor/plasteel,/area/security/brig)
+"ayV" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/tools)
+"ayW" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"ayX" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"ayY" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"ayZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aza" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/clothing/gloves/botanic_leather,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"azb" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"azc" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"azd" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/mask/gas,/obj/machinery/camera{c_tag = "Central Port Maintenace - Port"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aze" = (/obj/machinery/power/apc{dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"azf" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"azg" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"azh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"azi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Maintenance"; req_access_txt = "63;12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/brig)
+"azj" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/brig)
+"azk" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
+"azl" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Brig Aft"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig)
+"azm" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet,/area/crew_quarters/bar)
+"azn" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig)
+"azo" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"azp" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"azq" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation)
+"azr" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/security/checkpoint)
+"azs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"azt" = (/obj/structure/chair/pew/right{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"azu" = (/obj/structure/chair/pew{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
+"azv" = (/obj/machinery/door/window/westleft{name = "Holy Driver"; req_one_access_txt = "22"},/obj/machinery/conveyor{dir = 4; id = "Holydriver"},/turf/open/floor/plating,/area/chapel/main)
+"azw" = (/obj/machinery/conveyor{dir = 4; id = "Holydriver"},/turf/open/floor/plating,/area/chapel/main)
+"azx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"azy" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"azz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"azA" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"azB" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"azC" = (/obj/machinery/disposal/bin,/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
+"azD" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"azE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"azF" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tools)
+"azG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"azH" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sign/departments/botany{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"azI" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"azJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"azK" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/door/window/westleft{name = "Boxing Ring"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"azL" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"azM" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"azN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison)
+"azO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/blobstart,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"azP" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"azQ" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"azR" = (/obj/structure/closet/secure_closet/bar,/obj/structure/disposalpipe/segment,/obj/item/clothing/under/costume/maid,/obj/item/stack/spacecash/c10,/obj/item/clothing/under/suit/waiter,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"azS" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/closet,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/red,/obj/item/wrench,/obj/item/screwdriver{pixel_y = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"azT" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/tools)
+"azU" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"azV" = (/obj/structure/kitchenspike,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"azW" = (/obj/effect/landmark/start/botanist,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"azX" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools)
+"azY" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{areastring = "/area/hydroponics/lobby"; dir = 4; name = "Hydroponics Lobby APC"; pixel_x = 24},/obj/item/clothing/suit/beekeeper_suit,/obj/item/melee/flyswatter,/obj/item/clothing/head/beekeeper_head,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"azZ" = (/obj/machinery/mass_driver{dir = 4; id = "chapelgun"; name = "Holy Driver"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/chapel/main)
+"aAa" = (/turf/closed/wall/r_wall,/area/crew_quarters/kitchen)
+"aAb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aAc" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/maintenance/solars/port)
+"aAd" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/processing)
+"aAe" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aAf" = (/obj/structure/disposalpipe/segment,/obj/structure/mineral_door/wood,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
+"aAg" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/machinery/gibber,/obj/machinery/camera{c_tag = "Kitchen Coldroom"; dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"aAh" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/item/storage/crayons,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aAi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aAj" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aAk" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/security/main)
+"aAl" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aAm" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/airlock/freezer{name = "Kitchen Coldroom"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"aAn" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig)
+"aAo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/poster/official/twelve_gauge{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"aAp" = (/obj/machinery/computer/security/telescreen/entertainment,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/bar)
+"aAq" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"aAr" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aAs" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aAt" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/machinery/camera{c_tag = "Hydroponics Storage"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aAu" = (/obj/structure/closet/crate/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/item/circuitboard/machine/hydroponics,/obj/item/circuitboard/machine/hydroponics,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aAv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/brig)
+"aAw" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/chapel/main)
+"aAx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
+"aAy" = (/obj/machinery/atmospherics/components/binary/circulator{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aAz" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"aAA" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aAB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aAC" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aAD" = (/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aAE" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aAF" = (/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"aAG" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
+"aAH" = (/obj/structure/chair/pew{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/chapel/main)
+"aAI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"aAJ" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"aAK" = (/obj/structure/transit_tube/horizontal,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"aAL" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aAM" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"aAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"aAO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/toilet)
+"aAP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig)
+"aAQ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint)
+"aAR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Telecomms Access Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aAS" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/engine,/obj/item/encryptionkey/headset_eng,/turf/open/floor/plasteel,/area/security/brig)
+"aAT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aAU" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aAV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aAW" = (/obj/machinery/chem_master/condimaster{name = "BrewMaster 3000"},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aAX" = (/turf/open/floor/carpet/red,/area/security/brig)
+"aAY" = (/obj/structure/chair,/turf/open/floor/carpet/red,/area/security/brig)
+"aAZ" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet/red,/area/security/brig)
+"aBa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aBb" = (/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/security/brig)
+"aBc" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/suit/beekeeper_suit,/obj/item/melee/flyswatter,/obj/item/clothing/head/beekeeper_head,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aBd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"aBe" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aBf" = (/obj/structure/closet{name = "Evidence Closet"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aBg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/junction,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aBh" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aBi" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aBj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig)
+"aBk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/barbershop)
+"aBl" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
+"aBm" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Dormitories"},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aBn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"aBo" = (/obj/structure/table,/obj/item/storage/pill_bottle/epinephrine,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
+"aBp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/computer/pod/old{density = 0; icon = 'icons/obj/airlock_machines.dmi'; icon_state = "airlock_control_standby"; id = "chapelgun"; name = "Mass Driver Controller"; pixel_x = 24},/obj/machinery/conveyor_switch/oneway{id = "Holydriver"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aBq" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aBr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
+"aBs" = (/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aBt" = (/obj/structure/chair/comfy/brown,/obj/machinery/newscaster{pixel_y = 32},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
+"aBu" = (/obj/item/flashlight/lantern,/turf/open/floor/carpet,/area/chapel/main)
+"aBv" = (/obj/structure/chair/pew/left{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
+"aBw" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
+"aBx" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main)
+"aBy" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/kirbyplants{icon_state = "plant-16"},/obj/machinery/camera{c_tag = "Port Bow Hall - Central"; dir = 4; network = list("ss13","medbay")},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aBz" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
+"aBA" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/item/healthanalyzer,/obj/item/storage/hypospraykit/fire{pixel_x = -4},/obj/item/storage/hypospraykit/brute{pixel_x = 4},/obj/structure/sign/poster/official/nt_storm{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig)
+"aBB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"aBC" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/security/main)
+"aBD" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aBE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"aBF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/security/brig)
+"aBG" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/bar)
+"aBH" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
+"aBI" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aBJ" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aBK" = (/obj/structure/table,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/security/main)
+"aBL" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aBM" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/abandoned_gambling_den"; name = "Arcade APC"; pixel_y = -26},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"aBN" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
+"aBO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aBP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aBQ" = (/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aBR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aBS" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aBT" = (/obj/item/razor,/obj/item/toy/figure/chef{pixel_x = -6},/obj/item/toy/figure/bartender{pixel_x = 4},/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar)
+"aBU" = (/obj/structure/window/reinforced/tinted,/obj/structure/rack,/obj/item/soap/nanotrasen,/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aBV" = (/obj/item/flashlight/lantern,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aBW" = (/obj/structure/window/reinforced,/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar)
+"aBX" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aBY" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Security Maintenance"; dir = 1; network = list("ss13","medbay")},/turf/open/floor/plating,/area/maintenance/department/security)
+"aBZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aCa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main)
+"aCb" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig)
+"aCc" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/clothing/accessory/armband/cargo,/obj/item/encryptionkey/headset_cargo,/turf/open/floor/plasteel,/area/security/brig)
+"aCd" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/port; dir = 1; name = "Port Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aCe" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar)
+"aCf" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer)
+"aCg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/depsec/supply,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aCh" = (/obj/structure/mineral_door/wood{name = "Barbershop"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aCi" = (/obj/structure/closet/l3closet/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig)
+"aCj" = (/obj/machinery/door/window/southleft{name = "Showers"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aCk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/toilet/fitness)
+"aCl" = (/obj/structure/closet/bombcloset/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig)
+"aCm" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aCn" = (/obj/machinery/vending/boozeomat,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aCo" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"aCp" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
+"aCq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"aCr" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aCs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aCt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
+"aCu" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/freezer,/area/security/prison)
+"aCv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"aCw" = (/obj/structure/window/reinforced/tinted,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aCx" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aCy" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aCz" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aCA" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aCB" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar)
+"aCC" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/prison)
+"aCD" = (/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/structure/table/wood/fancy,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"aCE" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/button/door{id = "briglockdown"; name = "Brig Lockdown"; pixel_x = 24; req_access_txt = "2"},/obj/effect/turf_decal/arrows/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"aCF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"aCG" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"aCH" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/arrows/red{dir = 8},/obj/effect/turf_decal/arrows/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
+"aCI" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/door/firedoor,/obj/structure/sign/departments/botany{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aCJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/main)
+"aCK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/security/prison)
+"aCL" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/book/manual/wiki/security_space_law,/obj/item/paper/guides/cogstation/letter_sec,/turf/open/floor/carpet/red,/area/security/brig)
+"aCM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/fun_police{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aCN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aCO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aCP" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/landmark/start/botanist,/obj/machinery/camera{c_tag = "Hydroponics Lobby"},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aCQ" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
+"aCR" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/modular_computer/laptop/preset/civilian{pixel_x = 1; pixel_y = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aCS" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aCT" = (/obj/machinery/disposal/bin{name = "Hydroponics Mailbox"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/obj/machinery/requests_console{department = "Hydroponics"; name = "Hydroponics RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aCU" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation)
+"aCV" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools)
+"aCW" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aCX" = (/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"aCY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aCZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aDa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/barbershop)
+"aDb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/checkpoint)
+"aDc" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Barbershop"; dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aDd" = (/obj/structure/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aDe" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"aDf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aDg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central)
+"aDh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Port Bow Primary Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aDi" = (/obj/structure/closet/secure_closet/evidence,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/main)
+"aDj" = (/obj/structure/closet/wardrobe/green,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aDk" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aDl" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aDm" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint)
+"aDn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/bridge)
+"aDo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aDp" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/barbershop)
+"aDq" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aDr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Civilian Wing Hallway"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aDs" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig)
+"aDt" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aDu" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/machinery/light,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aDv" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aDw" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aDx" = (/obj/structure/closet/crate,/obj/item/gun/ballistic/shotgun/toy/unrestricted,/obj/item/gun/ballistic/shotgun/toy/unrestricted,/obj/item/toy/gun,/obj/item/toy/sword,/obj/item/toy/sword,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"aDy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aDz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/departments/restroom{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aDA" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aDB" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aDC" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aDD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"aDE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aDF" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint)
+"aDG" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aDH" = (/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aDI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aDJ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aDK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aDL" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aDM" = (/turf/closed/wall,/area/maintenance/central)
+"aDN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central)
+"aDO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aDP" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/security/main)
+"aDQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aDR" = (/turf/open/floor/plating,/area/maintenance/central)
+"aDS" = (/turf/closed/wall/r_wall,/area/crew_quarters/barbershop)
+"aDT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aDU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aDV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aDW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/machinery/turnstile{dir = 4; name = "Genpop Exit Turnstile"; req_access_txt = "70"},/turf/open/floor/plasteel,/area/security/prison)
+"aDX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"aDY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/prison)
+"aDZ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aEa" = (/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
+"aEb" = (/obj/structure/transit_tube/crossing/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
+"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig)
+"aEd" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aEe" = (/obj/structure/transit_tube/horizontal,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aEf" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port Bow"; dir = 1; network = list("tcomms")},/turf/open/space/basic,/area/space)
+"aEg" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/hallway/secondary/service)
+"aEh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore)
+"aEi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aEj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
+"aEk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aEl" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aEm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aEn" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aEo" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/sign/poster/official/fashion{pixel_x = -32},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aEp" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aEq" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aEr" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/lighter,/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aEs" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aEt" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aEu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aEv" = (/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aEw" = (/obj/structure/chair,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aEx" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aEy" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig)
+"aEz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aEA" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aEC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aED" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/security_officer,/turf/open/floor/carpet/red,/area/security/brig)
+"aEE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"aEF" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/circuit)
+"aEG" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aEI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/chapel/main)
+"aEJ" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aEK" = (/obj/structure/table,/obj/item/razor,/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aEL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aEM" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/carpet,/area/chapel/main)
+"aEN" = (/obj/structure/table,/obj/machinery/light,/obj/item/razor,/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aEO" = (/obj/structure/table,/obj/item/clothing/accessory/pocketprotector/cosmetology,/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aEP" = (/obj/item/kirbyplants,/turf/open/floor/wood,/area/crew_quarters/barbershop)
+"aEQ" = (/turf/closed/wall/r_wall,/area/maintenance/central)
+"aER" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/bot,/obj/structure/sign/warning/nosmoking{pixel_x = -32},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aES" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"aET" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"aEU" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aEV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/central)
+"aEW" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aEX" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_y = 32},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aEY" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aEZ" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Emergency Storage APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFa" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 10},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFb" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFc" = (/obj/structure/table,/obj/item/clothing/suit/toggle/owlwings,/obj/item/clothing/under/costume/owl,/obj/item/clothing/mask/gas/owl_mask,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"aFd" = (/obj/machinery/space_heater,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFe" = (/obj/machinery/photocopier,/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"aFf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=serv"; location = "sec1"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aFg" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aFh" = (/obj/structure/chair/pew/right{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/chapel/main)
+"aFi" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=market"; location = "sec2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aFj" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos)
+"aFk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable,/turf/open/floor/plating,/area/security/checkpoint)
+"aFl" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1},/obj/item/reagent_containers/glass/bottle/diethylamine,/obj/structure/sign/poster/official/hydro_ad{pixel_x = -32},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFm" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos)
+"aFn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aFo" = (/obj/machinery/door/window/southleft{name = "Weightroom"},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"aFp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aFq" = (/obj/structure/table/wood,/obj/item/candle{pixel_x = 4},/obj/item/candle{pixel_y = 8},/turf/open/floor/carpet,/area/chapel/main)
+"aFr" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aFs" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aFt" = (/obj/structure/table/glass,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aFu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore)
+"aFv" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/secondary/entry)
+"aFw" = (/obj/structure/table,/obj/item/multitool,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/camera{c_tag = "Central Maintenance - Power Monitoring"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/central)
+"aFx" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/folder/blue,/obj/machinery/door/window/westleft{name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFy" = (/obj/machinery/computer/monitor,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/central)
+"aFz" = (/obj/structure/table,/obj/item/multitool{pixel_x = 8; pixel_y = 2},/obj/item/stack/cable_coil/random,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/central)
+"aFA" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/landmark/start/botanist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFB" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aFD" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AftH"; location = "Hydroponics"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFE" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/techstorage/tcomms,/turf/open/floor/circuit,/area/bridge)
+"aFF" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aFG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/prison)
+"aFH" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFI" = (/obj/effect/turf_decal/bot,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Primary Tool Storage"},/turf/open/floor/plasteel,/area/storage/tools)
+"aFJ" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/watertank,/obj/item/grenade/chem_grenade/antiweed,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFK" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/storage/box/beakers{pixel_y = 4},/obj/item/reagent_containers/dropper,/obj/structure/disposalpipe/segment{dir = 9},/obj/item/pen/blue{pixel_x = -4; pixel_y = -2},/obj/item/pen/red{pixel_x = 4; pixel_y = 4},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFL" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/chem_master,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aFM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/barbershop)
+"aFN" = (/obj/structure/flora/junglebush/b,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"aFO" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/main)
+"aFQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFT" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
+"aFU" = (/obj/machinery/atmospherics/components/binary/circulator/cold{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aFV" = (/obj/structure/window/reinforced,/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar)
+"aFW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aFX" = (/obj/machinery/computer/security/hos{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aFY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet,/area/chapel/main)
+"aFZ" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall/r_wall,/area/security/prison)
+"aGa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/tcommsat/computer)
+"aGb" = (/obj/machinery/suit_storage_unit/hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aGc" = (/obj/item/coin/iron,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/port/fore)
+"aGd" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/central)
+"aGe" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/central)
+"aGf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aGg" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aGh" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/landmark/start/security_officer,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"aGi" = (/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aGj" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/analyzer{pixel_y = -4},/obj/item/flashlight{pixel_y = 4},/obj/item/flashlight{pixel_y = 4},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aGk" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aGl" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced,/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/clipboard,/obj/item/pen,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aGm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/door/window/southright{name = "Hydroponics Desk"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aGn" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/bridge)
+"aGo" = (/obj/structure/rack,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/screwdriver,/obj/item/wrench,/obj/item/clothing/gloves/color/fyellow,/obj/item/multitool,/obj/item/multitool,/obj/item/wrench,/turf/open/floor/plasteel,/area/security/brig)
+"aGp" = (/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"aGq" = (/turf/closed/wall/r_wall,/area/bridge)
+"aGr" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aGs" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/bridge)
+"aGt" = (/obj/machinery/computer/card/minor/hos{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aGu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aGv" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aGw" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Lobby"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"aGx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aGy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/solars/port)
+"aGz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; name = "Bridge APC"; pixel_y = -24},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aGA" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aGB" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aGC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aGD" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet"; dir = 8; name = "Dormitory Toilets APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aGE" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central)
+"aGF" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aGG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aGH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medical Booth"; req_access_txt = "5"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/medical{name = "Medical Booth"})
+"aGI" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 5},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 3},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 1},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = -1},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 5},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 3},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 1},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aGJ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aGK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Head of Security's APC"; pixel_y = 24},/obj/machinery/camera{c_tag = "Security - Head of Security's Office"; pixel_x = 22},/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aGL" = (/obj/structure/table/wood,/obj/item/storage/firstaid/regular,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"aGM" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"aGN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aGO" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel,/area/hydroponics)
+"aGP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aGQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aGR" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/store/cake/chocolate,/obj/machinery/door/poddoor/preopen{id = "kitchenlock"; name = "Kitchen Lockup"},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen)
+"aGS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aGT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"aGU" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aGV" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/table,/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aGW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/closed/wall/r_wall,/area/bridge)
+"aGX" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"aGZ" = (/turf/open/floor/plasteel/stairs/medium,/area/hallway/secondary/entry)
+"aHa" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aHb" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aHc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"aHd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aHe" = (/obj/structure/sign/poster/official/bless_this_spess{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aHf" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aHg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
+"aHh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aHi" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aHj" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Starboard Bow Solar Exterior Airlock"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aHk" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aHl" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aHm" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aHn" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/maintenance/central)
+"aHo" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/relay,/obj/item/circuitboard/machine/telecomms/server,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 5},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"aHp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aHq" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"aHr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/contraband/clown{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore)
+"aHs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/port/fore)
+"aHt" = (/turf/closed/wall/r_wall,/area/hallway/primary/port/fore)
+"aHu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aHv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aHw" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aHx" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/security/detectives_office)
+"aHy" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall/r_wall,/area/security/detectives_office)
+"aHz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/detectives_office)
+"aHA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/detectives_office)
+"aHB" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/wrench,/obj/item/wrench{pixel_x = 2; pixel_y = 2},/obj/item/light/tube,/obj/item/light/tube{pixel_x = -2; pixel_y = 2},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aHC" = (/obj/machinery/vending/cola/random,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aHD" = (/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/dark,/area/bridge)
+"aHE" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
+"aHF" = (/turf/open/floor/plasteel/dark,/area/bridge)
+"aHG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/central)
+"aHH" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aHI" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge)
+"aHJ" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aHK" = (/obj/structure/musician/piano,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aHL" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/stack/medical/gauze,/obj/item/reagent_containers/blood,/obj/item/stack/medical/suture,/obj/item/stack/medical/mesh,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aHM" = (/turf/open/floor/plasteel,/area/bridge)
+"aHN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Security - Interrogation Room"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aHO" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aHP" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos)
+"aHQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aHR" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/trunk,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Security Office APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/security/main)
+"aHS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aHT" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"aHU" = (/obj/effect/turf_decal/delivery,/obj/structure/mineral_door/woodrustic{name = "Nature Preserve"},/turf/open/floor/plasteel,/area/hydroponics/garden{name = "Nature Preserve"})
+"aHV" = (/obj/structure/flora/junglebush/large,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"aHW" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/head_of_security,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aHX" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aHY" = (/turf/closed/wall/r_wall,/area/crew_quarters/cryopod)
+"aHZ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/door/window/eastleft{name = "Security Office Desk"; req_one_access_txt = "63"},/obj/item/folder/red,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/stamp,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"aIa" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/central)
+"aIb" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/junction/flip,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aIc" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/central)
+"aId" = (/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIe" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aIf" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aIg" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge)
+"aIh" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aIi" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIj" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIk" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aIm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = 30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"aIn" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/prison)
+"aIo" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/solars/port)
+"aIp" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aIq" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main)
+"aIr" = (/obj/structure/table/reinforced,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aIs" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aIt" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aIu" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIv" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"aIw" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aIx" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aIz" = (/obj/machinery/cryopod{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aIA" = (/obj/machinery/computer/med_data{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"aIB" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aIC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/main)
+"aID" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/main)
+"aIE" = (/turf/open/floor/carpet/royalblue,/area/bridge)
+"aIF" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/recharger,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main)
+"aIG" = (/obj/structure/table,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main)
+"aIH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/carpet/royalblue,/area/bridge)
+"aII" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/royalblue,/area/bridge)
+"aIJ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIK" = (/obj/structure/table/wood,/obj/item/camera,/obj/item/folder,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aIL" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge)
+"aIM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"aIN" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aIO" = (/obj/structure/sign/directions/medical{dir = 8; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 1; pixel_y = -32},/obj/structure/sign/directions/supply{dir = 8; pixel_y = -40},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aIQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge)
+"aIR" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel,/area/hydroponics)
+"aIS" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/ai,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -7},/obj/item/radio/intercom{freerange = 1; name = "Common Channel"; pixel_x = 27; pixel_y = 5},/obj/machinery/button/door{id = "AIShutter"; layer = 3.6; name = "AI Core Shutter Control"; pixel_x = 24; pixel_y = -24},/obj/item/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = -24; pixel_y = -8},/obj/machinery/button/door{id = "AIChamberShutter"; layer = 3.6; name = "AI Chamber Shutter Control"; pixel_x = -24; pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aIT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/bridge)
+"aIU" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aIV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Monitoring"; req_access_txt = "63"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aIW" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aIX" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aIY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aIZ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aJa" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aJb" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aJc" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aJd" = (/turf/closed/wall,/area/chapel/office)
+"aJe" = (/obj/machinery/computer/crew{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"aJf" = (/obj/machinery/camera{c_tag = "Chapel - Aft"; dir = 1},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aJg" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aJh" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aJi" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aJj" = (/obj/structure/chair{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Chapel APC"; pixel_x = -26},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aJk" = (/obj/structure/table/wood,/obj/item/candle,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aJl" = (/obj/structure/bodycontainer/crematorium{id = "foo"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aJm" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aJn" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge)
+"aJo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aJp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/motion{c_tag = "AI"; network = list("minisat")},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aJq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/item/storage/box/beakers{pixel_y = 4},/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/hydroponics)
+"aJr" = (/obj/structure/sign/directions/command{dir = 8; pixel_y = -32},/obj/structure/sign/directions/security{dir = 8; pixel_y = -24},/obj/structure/sign/directions/science{dir = 8; pixel_y = -40},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aJs" = (/obj/structure/noticeboard{name = "Hydroponics Requests Board"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aJt" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/toy/figure/syndie,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
+"aJu" = (/obj/structure/chair/comfy/brown,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aJv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main)
+"aJw" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
+"aJx" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aJy" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/right,/area/security/brig)
+"aJz" = (/obj/structure/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aJA" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall - Dorms Access"; network = list("ss13","rd")},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aJB" = (/obj/machinery/computer/security/mining{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aJC" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aJD" = (/obj/structure/rack,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/item/storage/belt/medical,/obj/item/tank/internals/emergency_oxygen,/obj/item/clothing/suit/space/eva/paramedic,/obj/item/clothing/head/helmet/space/eva/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"aJE" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"aJF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"aJG" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/bridge)
+"aJH" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/storage/tools)
+"aJI" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/cultivator,/obj/item/crowbar,/obj/item/wirecutters,/obj/item/reagent_containers/glass/bucket,/obj/item/hatchet,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hydroponics"; name = "Hydroponics APC"; pixel_y = -28},/turf/open/floor/plasteel,/area/hydroponics)
+"aJJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools)
+"aJK" = (/obj/structure/filingcabinet,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/bridge)
+"aJL" = (/turf/open/floor/circuit,/area/bridge)
+"aJM" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit,/area/bridge)
+"aJN" = (/obj/machinery/camera{c_tag = "Security - Prison Aft"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/prison)
+"aJO" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison)
+"aJP" = (/obj/structure/chair/comfy/teal,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/sign/departments/botany{pixel_y = 32},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Starboard"; dir = 8; pixel_y = -22},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aJQ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aJR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aJS" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"aJT" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aJU" = (/obj/machinery/vending/cigarette,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main)
+"aJV" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"aJW" = (/obj/machinery/cryopod{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"aJX" = (/obj/machinery/light{dir = 4},/obj/machinery/modular_computer/console/preset/civilian{dir = 8},/turf/open/floor/circuit,/area/bridge)
+"aJY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/storage/box/lights/mixed,/obj/item/stack/sheet/metal/fifty{pixel_x = -3; pixel_y = -7},/turf/open/floor/plasteel,/area/storage/tools)
+"aJZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main)
+"aKa" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/prison)
+"aKb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/civilian)
+"aKc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aKd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/security/brig)
+"aKe" = (/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"aKf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/emergency/generic)
+"aKg" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/entry)
+"aKh" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/security/brig)
+"aKi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/main)
+"aKj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aKk" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/detective,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aKl" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aKm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Emergency Storage"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aKn" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"aKo" = (/obj/effect/turf_decal/delivery,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
+"aKp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aKq" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/chapel/main)
+"aKr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Emergency Storage"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic)
+"aKs" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/reagent_containers/rag,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"aKt" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aKu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/storage/emergency/generic)
+"aKv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge)
+"aKw" = (/obj/structure/table,/obj/item/storage/pill_bottle/dice,/obj/item/toy/cards/deck,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/prison)
+"aKx" = (/obj/machinery/computer/security{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aKy" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/rnd/production/techfab/department/security,/turf/open/floor/plasteel,/area/security/brig)
+"aKz" = (/turf/closed/wall,/area/storage/emergency/generic)
+"aKA" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Blast Door Control"; pixel_x = -6; pixel_y = -3; req_access_txt = "19"},/turf/open/floor/carpet/royalblue,/area/bridge)
+"aKB" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"aKC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aKD" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aKE" = (/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge)
+"aKF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Telecommunications Control Room"; req_access_txt = "19;61"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge)
+"aKG" = (/obj/structure/table/wood,/obj/item/storage/toolbox/emergency,/obj/item/crowbar/red,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aKH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/white/full,/obj/machinery/camera{c_tag = "Bridge - Fore"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/bridge)
+"aKI" = (/obj/structure/closet/cabinet,/obj/item/screwdriver,/obj/item/storage/crayons,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aKJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aKK" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/snack/blue,/turf/open/floor/plasteel,/area/bridge)
+"aKL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/bridge)
+"aKM" = (/obj/machinery/camera{c_tag = "Chapel - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aKN" = (/obj/structure/chair/pew/left{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aKO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/left,/area/security/brig)
+"aKP" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/bridge)
+"aKQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/office)
+"aKR" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
+"aKS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/bridge)
+"aKT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"aKU" = (/obj/structure/bodycontainer/morgue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aKV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aKW" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aKX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Chapel Morgue"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aKY" = (/obj/structure/chair/sofa/left,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aKZ" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"aLa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/door/poddoor/preopen{id = "hos"},/turf/open/floor/plating,/area/crew_quarters/heads/hos)
+"aLb" = (/obj/item/toy/prize/honk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore)
+"aLc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore)
+"aLd" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aLg" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aLh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central)
+"aLj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/brig)
+"aLl" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aLm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge)
+"aLn" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aLo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLp" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aLq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aLt" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Visitation Maintainance"; req_one_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/security/main)
+"aLv" = (/obj/machinery/computer/cryopod{dir = 8; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aLw" = (/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-06"},/turf/open/floor/plasteel,/area/security/brig)
+"aLx" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aLy" = (/obj/machinery/modular_computer/console/preset/command{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"aLz" = (/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLA" = (/obj/item/candle{pixel_x = -4; pixel_y = -4},/obj/item/candle{pixel_x = -8; pixel_y = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aLB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aLC" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aLE" = (/obj/machinery/computer/communications{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"aLF" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aLG" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aLH" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/tcommsat/computer)
+"aLI" = (/obj/structure/table/wood,/obj/item/storage/box/PDAs,/obj/item/storage/box/ids{pixel_x = 3; pixel_y = 3},/turf/open/floor/carpet/royalblue,/area/bridge)
+"aLJ" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aLK" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/bridge)
+"aLL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/brig)
+"aLM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
+"aLN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main)
+"aLO" = (/obj/item/toy/talking/owl,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"aLP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aLQ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/bridge)
+"aLR" = (/obj/structure/table,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/storage/box/bodybags{pixel_y = 4},/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aLS" = (/obj/structure/disposaloutlet{dir = 8; name = "Corpse Outlet"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aLT" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aLU" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aLV" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/camera{c_tag = "Central Maintenance - Aft"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/central)
+"aLW" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/brig)
+"aLX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/security/main)
+"aLY" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main)
+"aLZ" = (/mob/living/simple_animal/chicken{desc = "At least it isn't a court kangaroo."; name = "amusing cluck"; real_name = "amusing cluck"},/turf/open/floor/carpet,/area/security/courtroom)
+"aMa" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aMb" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMd" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/obj/machinery/camera{c_tag = "Chapel Office"; dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aMe" = (/obj/machinery/door/window/northleft{name = "Game Room"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aMf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/central)
+"aMh" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/reagent_containers/food/drinks/bottle/champagne,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = -32},/obj/machinery/keycard_auth{pixel_x = -24},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aMi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge)
+"aMj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"aMk" = (/obj/structure/closet/crate/coffin,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"aMl" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"aMm" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"aMn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"},/turf/closed/wall,/area/maintenance/department/chapel)
+"aMo" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"aMp" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aMq" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aMr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Port"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMs" = (/turf/closed/wall,/area/maintenance/department/chapel)
+"aMt" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"aMu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
+"aMv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
+"aMw" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aMx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"aMy" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"aMz" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"})
+"aMA" = (/turf/closed/wall,/area/janitor)
+"aMB" = (/turf/closed/wall/r_wall,/area/janitor)
+"aMC" = (/obj/structure/table/wood,/obj/item/kitchen/fork,/obj/item/reagent_containers/food/snacks/salad/herbsalad,/obj/item/candle{pixel_x = 8; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"aMD" = (/turf/closed/wall/rust,/area/maintenance/disposal)
+"aME" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aMG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Central Starboard Maintenance"; dir = 8; pixel_y = -22},/mob/living/simple_animal/hostile/retaliate/bat,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"aMH" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aMI" = (/turf/closed/wall/r_wall,/area/maintenance/disposal)
+"aMJ" = (/obj/structure/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/obj/effect/landmark/start/assistant,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aMK" = (/obj/vehicle/ridden/wheelchair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aML" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/chapel/office)
+"aMM" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/sign/poster/official/help_others{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMN" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/main)
+"aMO" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMP" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/wine,/turf/open/floor/plasteel,/area/security/brig)
+"aMQ" = (/obj/machinery/computer/security{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"aMR" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet,/area/chapel/main)
+"aMS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aMT" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMU" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet,/area/chapel/main)
+"aMV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aMW" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aMX" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge)
+"aMY" = (/obj/structure/closet,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"aMZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aNa" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aNb" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aNc" = (/obj/structure/rack,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/mop,/obj/item/storage/box/mousetraps,/obj/item/storage/box/mousetraps,/obj/item/reagent_containers/spray/cleaner,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/janitor)
+"aNd" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper_bin,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"aNe" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/spaghetti,/obj/item/reagent_containers/food/snacks/spaghetti,/turf/open/floor/plating,/area/hallway/secondary/service)
+"aNf" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/clipboard,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"aNg" = (/obj/machinery/computer/cargo/request{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"aNh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aNi" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aNj" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aNk" = (/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/pen{pixel_y = 8},/obj/item/pen,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"aNl" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/condiment/pack/ketchup{pixel_x = -2; pixel_y = 6},/obj/item/reagent_containers/food/condiment/pack/mustard{pixel_x = 6; pixel_y = 3},/obj/item/candle{pixel_x = -8; pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"aNm" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aNn" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aNo" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIShutter"; name = "AI Core Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"aNp" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aNq" = (/obj/machinery/door/window/northright{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aNr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aNs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aNt" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aNu" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
+"aNv" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aNw" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"aNx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"})
+"aNy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aNz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aNA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/security/main)
+"aNB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Port Bow Primary Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aNC" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera/motion{c_tag = "Telecomms Control Room"; network = list("tcomms"); pixel_x = 22},/obj/machinery/power/apc/highcap/fifteen_k{areastring = "/area/tcommsat/server"; dir = 1; name = "Telecomms Server APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/server)
+"aND" = (/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aNE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aNF" = (/obj/machinery/computer/secure_data{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"aNG" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table,/obj/item/taperecorder,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/brig)
+"aNH" = (/obj/machinery/door/airlock/external/glass{name = "Exterior Engineering Access"; req_access_txt = "11;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"aNI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aNJ" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig)
+"aNK" = (/obj/structure/sign/nanotrasen{pixel_x = -32},/turf/open/floor/plasteel,/area/security/courtroom)
+"aNL" = (/turf/open/floor/plasteel,/area/security/courtroom)
+"aNM" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/brig)
+"aNN" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/security/courtroom)
+"aNO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"aNP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aNQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"})
+"aNR" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop)
+"aNS" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"aNT" = (/turf/closed/wall/r_wall,/area/teleporter)
+"aNU" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aNV" = (/obj/structure/table,/obj/item/locator,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/brig)
+"aNW" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"aNX" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/instrument/guitar,/obj/machinery/camera{c_tag = "Bar - Port"; dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aNY" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec2"; location = "bar"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aNZ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aOa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aOb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aOc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aOd" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aOe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"aOf" = (/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aOg" = (/obj/structure/chair/comfy/teal{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aOh" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aOi" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aOj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aOk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced/spawner,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aOl" = (/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aOm" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/structure/table/wood,/obj/item/toy/windupToolbox,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aOn" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
+"aOo" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/hallway/primary/port/fore"; dir = 4; name = "Port Bow Primary Hallway APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/department/security)
+"aOp" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 31},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge)
+"aOq" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/effect/turf_decal/delivery,/obj/item/extinguisher,/obj/structure/window/reinforced/spawner,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aOr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge)
+"aOs" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants,/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge)
+"aOt" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main)
+"aOu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main)
+"aOv" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/gavelblock,/obj/item/gavelhammer,/obj/machinery/camera{c_tag = "Courtroom"; network = list("ss13","rd")},/turf/open/floor/carpet,/area/security/courtroom)
+"aOw" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/pen,/turf/open/floor/plasteel,/area/security/courtroom)
+"aOx" = (/obj/structure/table/reinforced,/obj/item/grenade/chem_grenade/smart_metal_foam{pixel_x = 4},/obj/item/radio,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aOy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aOz" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aOA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel)
+"aOB" = (/turf/closed/wall/r_wall,/area/security/courtroom)
+"aOC" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aOD" = (/obj/machinery/door/airlock{name = "Catering"; req_one_access_txt = "25;28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"aOE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aOF" = (/obj/structure/closet/crate/freezer/surplus_limbs,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"aOG" = (/obj/structure/chair/comfy/teal{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aOH" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
+"aOI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/obj/machinery/flasher{id = "ID"; pixel_x = 8; pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aOJ" = (/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
+"aOK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
+"aOL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall,/area/security/brig)
+"aOM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aON" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aOP" = (/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/engine/gravity_generator)
+"aOQ" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aOR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aOS" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aOT" = (/turf/closed/wall,/area/crew_quarters/fitness/cogpool)
+"aOU" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"aOV" = (/turf/open/floor/plasteel/stairs,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aOW" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/hydro,/obj/item/encryptionkey/headset_service,/obj/item/clothing/under/misc/vice_officer,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aOX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Pool"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/white/side,/area/crew_quarters/fitness/cogpool)
+"aOY" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aOZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/bridge)
+"aPa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Pool"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/side,/area/crew_quarters/fitness/cogpool)
+"aPb" = (/obj/structure/grille,/turf/open/floor/plating,/area/hallway/primary/central)
+"aPc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aPd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aPe" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aPf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"aPg" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation)
+"aPh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aPi" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aPj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aPk" = (/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aPl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aPn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/start/depsec/medical,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aPo" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"aPp" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge)
+"aPq" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"aPr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
+"aPs" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main)
+"aPt" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"aPu" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/bridge)
+"aPv" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aPw" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Courtroom Access"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
+"aPx" = (/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPz" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/courtroom)
+"aPA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPB" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/paper/guides/jobs/security/courtroom,/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/security/courtroom)
+"aPC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPD" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aPE" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 8},/obj/item/toy/talking/AI{name = "Nanotrasen-brand toy AI"; pixel_y = 6},/obj/item/clothing/glasses/meson,/obj/machinery/status_display{pixel_x = -32},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"aPF" = (/turf/closed/wall/r_wall,/area/crew_quarters/locker)
+"aPG" = (/obj/structure/disposalpipe/sorting/mail/flip{sortType = 21},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPH" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/security/courtroom)
+"aPI" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aPJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bar"; location = "serv"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPK" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aPL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPM" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"aPN" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/space/nearstation)
+"aPO" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 8},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aPP" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aPQ" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aPR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/crew_quarters/fitness/cogpool)
+"aPS" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aPT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation)
+"aPU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aPV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aPW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aPX" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/storage/fancy/donut_box,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aPY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aPZ" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aQa" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
+"aQb" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aQc" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aQd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aQe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aQf" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aQg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aQh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aQi" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aQj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"aQk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aQl" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
+"aQm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aQn" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"aQo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/security/courtroom)
+"aQp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation)
+"aQq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/space/nearstation)
+"aQr" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/space/nearstation)
+"aQs" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aQt" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQu" = (/obj/structure/table,/obj/item/toy/beach_ball{pixel_y = 12},/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQv" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
+"aQw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/main)
+"aQx" = (/obj/machinery/camera{c_tag = "Engine Room - Port Bow"},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aQy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/chapel/main)
+"aQz" = (/obj/structure/chair/comfy/teal,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQA" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aQB" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aQD" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aQE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aQF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"aQG" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/central)
+"aQH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aQI" = (/obj/structure/chair/comfy/teal,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQJ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
+"aQK" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/central)
+"aQL" = (/turf/closed/wall,/area/maintenance/port/central)
+"aQM" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
+"aQN" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aQO" = (/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aQP" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQQ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQR" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQS" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
+"aQT" = (/obj/machinery/door/airlock/engineering{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aQU" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/teleporter)
+"aQV" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aQW" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain)
+"aQX" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aQY" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/item/toy/beach_ball/holoball/dodgeball,/obj/item/toy/beach_ball/holoball/dodgeball,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aQZ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"aRa" = (/obj/structure/table/wood,/obj/item/lighter,/obj/item/multitool{pixel_x = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aRb" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/central)
+"aRc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness/cogpool)
+"aRd" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRe" = (/obj/structure/table/wood,/obj/item/storage/secure/briefcase,/obj/item/assembly/flash,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aRf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRh" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aRi" = (/obj/machinery/light,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRj" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/sleep_console{dir = 8},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aRk" = (/obj/structure/disposalpipe/junction/yjunction,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRl" = (/obj/structure/table/wood,/obj/item/restraints/handcuffs,/obj/item/laser_pointer/blue,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aRm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/courtroom)
+"aRn" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRo" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"aRp" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aRq" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aRr" = (/mob/living/simple_animal/chicken{name = "Kentucky"; real_name = "Kentucky"},/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"aRs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRt" = (/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRu" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/space/nearstation)
+"aRv" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/turf/open/space/basic,/area/space/nearstation)
+"aRw" = (/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"aRx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aRy" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aRz" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aRA" = (/obj/structure/table/optable,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/reagent_containers/blood/random,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aRB" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aRC" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"aRD" = (/turf/closed/wall/r_wall/rust,/area/engine/gravity_generator)
+"aRE" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aRF" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"})
+"aRG" = (/obj/machinery/power/generator,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aRH" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/obj/machinery/camera{c_tag = "Central Port Maintenance - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/port/central)
+"aRI" = (/obj/structure/rack,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/port/central)
+"aRJ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"})
+"aRK" = (/obj/structure/sign/departments/holy{pixel_y = -32},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRL" = (/mob/living/simple_animal/crab/kreb,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"aRM" = (/turf/open/floor/carpet,/area/crew_quarters/bar)
+"aRN" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRO" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aRP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRQ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aRR" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aRS" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aRT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aRU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/main)
+"aRV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aRW" = (/turf/open/floor/plating,/area/maintenance/port/central)
+"aRX" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation)
+"aRY" = (/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"aRZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/space/nearstation)
+"aSa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aSb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aSc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aSd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aSe" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Chapel"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/chapel/main)
+"aSf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aSg" = (/obj/machinery/power/apc{name = "Security Maintainance APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/security)
+"aSh" = (/obj/structure/table,/obj/item/storage/fancy/donut_box,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aSi" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aSj" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plasteel,/area/science/circuit)
+"aSk" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aSl" = (/obj/machinery/computer/teleporter{dir = 1},/turf/open/floor/plasteel/dark,/area/teleporter)
+"aSm" = (/obj/machinery/teleport/station,/turf/open/floor/plasteel/dark,/area/teleporter)
+"aSn" = (/obj/machinery/teleport/hub,/turf/open/floor/plasteel/dark,/area/teleporter)
+"aSo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aSp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aSq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/space/nearstation)
+"aSr" = (/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aSs" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/delivery,/obj/machinery/camera{c_tag = "Bridge Access"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/bridge)
+"aSt" = (/turf/closed/wall/r_wall,/area/maintenance/department/eva)
+"aSu" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation)
+"aSv" = (/turf/closed/wall,/area/space/nearstation)
+"aSw" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
+"aSx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aSy" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/space/nearstation)
+"aSz" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aSA" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aSB" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aSC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aSD" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aSE" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aSF" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/surgical_drapes,/obj/item/scalpel,/obj/item/circular_saw{pixel_y = 16},/obj/item/hemostat,/obj/item/retractor,/obj/item/surgicaldrill,/obj/item/cautery,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aSG" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"})
+"aSH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"})
+"aSI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aSJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/main)
+"aSK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aSL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aSM" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation)
+"aSN" = (/obj/structure/table,/obj/machinery/computer/secure_data/laptop{dir = 8; pixel_x = -2; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/red,/area/security/brig)
+"aSO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aSP" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aSQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
+"aSR" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/tools)
+"aSS" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Chapel"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aST" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"aSU" = (/obj/structure/reagent_dispensers/beerkeg,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"aSV" = (/obj/item/toy/talking/AI,/obj/structure/grille/broken,/turf/open/floor/plating,/area/hallway/primary/central)
+"aSW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aSX" = (/obj/machinery/washing_machine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aSY" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aSZ" = (/obj/structure/chair/stool,/obj/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aTa" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
+"aTb" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Central Hall - Starboard"; pixel_x = 22},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aTc" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"aTd" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/space/nearstation)
+"aTe" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aTf" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge)
+"aTg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig)
+"aTh" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 8},/obj/machinery/power/apc{name = "AI Upload Foyer APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aTi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aTj" = (/obj/machinery/pool/filter{pixel_y = 16},/turf/open/pool,/area/crew_quarters/fitness/cogpool)
+"aTk" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
+"aTl" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"aTm" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"aTn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/department/eva"; dir = 8; name = "EVA Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aTo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/detectives_office)
+"aTp" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/landmark/start/security_officer,/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/security/brig)
+"aTq" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aTr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office)
+"aTs" = (/turf/closed/wall,/area/maintenance/department/eva)
+"aTt" = (/obj/structure/closet/secure_closet/detective,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aTu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aTv" = (/turf/open/pool,/area/crew_quarters/fitness/cogpool)
+"aTw" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/cogpool)
+"aTx" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/turf/open/space/basic,/area/space/nearstation)
+"aTy" = (/obj/structure/lattice/catwalk,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/turf/open/space/basic,/area/space/nearstation)
+"aTz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aTA" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aTB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
+"aTC" = (/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aTD" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
+"aTE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/circuit)
+"aTF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aTG" = (/turf/closed/wall,/area/router/public)
+"aTH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"aTI" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/public/glass{name = "Public Router"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/public)
+"aTJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aTK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/public/glass{name = "Public Router"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/public)
+"aTL" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/camera{c_tag = "Cryogenics"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"aTM" = (/turf/closed/wall/r_wall,/area/router/public)
+"aTN" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aTO" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/security/courtroom)
+"aTP" = (/obj/machinery/status_display/ai,/turf/closed/wall/r_wall,/area/security/courtroom)
+"aTQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Thermo-Electric Generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aTR" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/stamp,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/pen/red,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aTS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aTT" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aTU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aTV" = (/turf/closed/wall,/area/gateway)
+"aTW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aTX" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/science/circuit)
+"aTY" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/security/courtroom)
+"aTZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aUa" = (/obj/machinery/light_switch{pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aUb" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"aUc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aUd" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aUe" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aUf" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"aUg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aUh" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aUi" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/gateway)
+"aUj" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/machinery/requests_console{department = "Public Router"; name = "Public Router RC"; pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/router/public)
+"aUk" = (/turf/closed/wall/r_wall,/area/gateway)
+"aUl" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/public)
+"aUm" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/public)
+"aUn" = (/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/bot,/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel,/area/router/public)
+"aUo" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/gateway)
+"aUp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/science,/turf/open/floor/plasteel,/area/gateway)
+"aUq" = (/turf/closed/wall/r_wall,/area/crew_quarters/lounge/jazz)
+"aUr" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aUs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aUt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"aUu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/rack,/turf/open/floor/plasteel,/area/gateway)
+"aUv" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jazz Lounge"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"aUx" = (/obj/machinery/door/window/northright{name = "Game Room"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"aUy" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/official/do_not_question{pixel_y = 32},/turf/open/floor/plasteel,/area/security/prison)
+"aUz" = (/obj/machinery/computer/telecomms/server{dir = 4; network = "tcommsat"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/circuit,/area/bridge)
+"aUA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aUB" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"aUC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
+"aUD" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aUE" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aUF" = (/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"aUG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
+"aUH" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/central)
+"aUI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aUJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aUK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning/electricshock{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/central)
+"aUL" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aUM" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aUN" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aUO" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/teleporter"; dir = 4; name = "Teleporter Room APC"; pixel_x = 26},/turf/open/floor/plasteel/dark,/area/teleporter)
+"aUP" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aUQ" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aUR" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge)
+"aUS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"aUT" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aUU" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/cogpool)
+"aUV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/courtroom)
+"aUW" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/cogpool)
+"aUX" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/port/central)
+"aUY" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aUZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
+"aVa" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aVb" = (/obj/structure/pool/Rboard,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aVc" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aVd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aVe" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/central)
+"aVf" = (/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aVg" = (/obj/machinery/computer/cryopod{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"aVh" = (/obj/effect/turf_decal/bot,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/gateway)
+"aVi" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/router/public)
+"aVj" = (/obj/machinery/vending/cola/random,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aVk" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway)
+"aVl" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aVm" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aVn" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/public)
+"aVo" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/router/public)
+"aVp" = (/obj/structure/cable{icon_state = "2-8"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/obj/machinery/camera{c_tag = "Public Router"; dir = 8; pixel_y = -22},/obj/machinery/button/massdriver{id = "public_out"; pixel_x = 24; pixel_y = -6},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/button/door{id = "pubblock"; name = "Router Access Control"; pixel_x = 24; pixel_y = 24},/turf/open/floor/plasteel,/area/router/public)
+"aVq" = (/obj/structure/table,/turf/open/floor/plasteel/white,/area/gateway)
+"aVr" = (/obj/structure/table,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/cups,/obj/structure/sign/poster/official/here_for_your_safety{pixel_x = 32},/turf/open/floor/plasteel,/area/security/main)
+"aVs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/lounge/jazz)
+"aVt" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/space/basic,/area/space/nearstation)
+"aVu" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aVv" = (/turf/open/floor/plating,/area/maintenance/department/eva)
+"aVw" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/red,/area/security/brig)
+"aVx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"aVy" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aVz" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aVA" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"aVB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"aVC" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/central)
+"aVD" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"aVE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitory Toilets"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"aVF" = (/turf/open/floor/plasteel/white,/area/science/circuit)
+"aVG" = (/obj/machinery/ore_silo,/obj/effect/turf_decal/bot_white,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/ai_monitored/nuke_storage"; dir = 4; name = "Vault APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aVH" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/civilian"; dir = 8; name = "Civilian Wing Hallway APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aVI" = (/obj/structure/table,/obj/item/storage/box/zipties,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aVJ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aVK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/space/nearstation)
+"aVL" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aVM" = (/obj/structure/chair/stool,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/eva)
+"aVN" = (/obj/machinery/vending,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aVO" = (/obj/structure/table,/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/item/radio/off,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/red,/area/security/brig)
+"aVP" = (/obj/structure/window/reinforced,/obj/structure/displaycase/captain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
+"aVQ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security)
+"aVR" = (/obj/structure/window/reinforced,/obj/structure/filingcabinet,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
+"aVS" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/central)
+"aVT" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: WASTE EJECTION"; pixel_x = -32},/turf/open/space/basic,/area/space/nearstation)
+"aVU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aVV" = (/obj/structure/bed,/obj/item/bedsheet/red,/obj/structure/cable{icon_state = "2-8"},/mob/living/simple_animal/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; health = 45; maxHealth = 45; name = "Officer Beepsky"},/turf/open/floor/plating,/area/maintenance/department/security)
+"aVW" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/gateway)
+"aVX" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aVY" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"aVZ" = (/obj/machinery/computer/security/wooden_tv,/turf/open/floor/plating,/area/maintenance/department/security)
+"aWa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security)
+"aWb" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aWc" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/central)
+"aWd" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aWe" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aWf" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aWg" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"aWh" = (/obj/effect/landmark/start/lawyer,/obj/structure/chair{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"aWi" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal"; dir = 8; name = "Cryogenics APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"aWj" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation)
+"aWk" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aWl" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aWm" = (/turf/open/floor/plasteel,/area/gateway)
+"aWn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aWo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/cryopod)
+"aWp" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway)
+"aWq" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/extinguisher,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aWr" = (/obj/machinery/gateway{dir = 10},/turf/open/floor/engine,/area/gateway)
+"aWs" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aWt" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
+"aWu" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/cogpool"; dir = 4; name = "Pool APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
+"aWv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aWw" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aWx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office)
+"aWy" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aWz" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Power Monitoring"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
+"aWA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
+"aWB" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"aWC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Defendent's Chair"; req_one_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aWD" = (/obj/structure/window/reinforced/spawner/east,/obj/item/cigbutt,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/public)
+"aWE" = (/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"},/turf/closed/wall/r_wall,/area/janitor)
+"aWF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/janitor)
+"aWG" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aWH" = (/obj/machinery/disposal/bin{name = "Corpse Delivery"},/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aWI" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aWJ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"aWK" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/item/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aWL" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "public"},/turf/open/floor/plating,/area/router/public)
+"aWM" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aWN" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "public"},/turf/open/floor/plating,/area/router/public)
+"aWO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/ai_monitored/storage/eva)
+"aWP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aWQ" = (/obj/structure/closet/crate/rcd,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aWR" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = 32},/turf/open/space/basic,/area/space/nearstation)
+"aWS" = (/obj/structure/table,/obj/item/storage/box/flashes{pixel_x = 8},/obj/item/storage/box/handcuffs{pixel_x = -8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
+"aWT" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/router/public"; dir = 4; name = "Public Router APC"; pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/public)
+"aWU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"aWV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"aWW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/central)
+"aWX" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/medical"; dir = 8; name = "Medical Booth APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aWY" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aWZ" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
+"aXa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central)
+"aXb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central)
+"aXc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aXd" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/central)
+"aXe" = (/obj/machinery/bookbinder,/turf/open/floor/wood,/area/library)
+"aXf" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/table/wood,/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/carpet,/area/library)
+"aXg" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library)
+"aXh" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"aXi" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aXj" = (/obj/structure/transit_tube/station/reverse,/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/camera{c_tag = "Transit Tube Access"; pixel_x = 22},/obj/structure/transit_tube_pod{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge)
+"aXk" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aXl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aXm" = (/obj/machinery/gateway,/turf/open/floor/engine,/area/gateway)
+"aXn" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aXo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aXp" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/reagent_dispensers/foamtank,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"aXq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aXr" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aXs" = (/obj/machinery/gateway{dir = 6},/turf/open/floor/engine,/area/gateway)
+"aXt" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/turf/open/floor/plating,/area/gateway)
+"aXu" = (/turf/closed/wall,/area/security/courtroom/jury)
+"aXv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"aXw" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aXx" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos)
+"aXy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
+"aXz" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aXA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/courtroom/jury)
+"aXB" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/courtroom)
+"aXC" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aXD" = (/obj/effect/turf_decal/bot_white/right,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/closet/crate/silvercrate,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aXE" = (/obj/effect/turf_decal/bot_white,/obj/structure/closet/crate/goldcrate,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aXF" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "gas to hot loop"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"aXG" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"aXH" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"aXI" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aXJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aXK" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aXL" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/item/paper/fluff/jobs/security/beepsky_mom,/turf/open/floor/plating,/area/maintenance/department/security)
+"aXM" = (/turf/closed/wall,/area/maintenance/department/security)
+"aXN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
+"aXO" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"aXP" = (/obj/machinery/door/airlock/maintenance{name = "Pool Maintenance"; req_one_access_txt = "12"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"aXQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical{name = "Medical Booth"})
+"aXR" = (/turf/closed/wall,/area/security/courtroom)
+"aXS" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aXT" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
+"aXU" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aXV" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/assembly/timer{pixel_x = 6; pixel_y = -2},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random{pixel_x = -2; pixel_y = -2},/obj/item/stack/cable_coil/random{pixel_x = 2; pixel_y = 2},/obj/item/multitool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aXW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"aXX" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aXY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aXZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aYa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"aYb" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aYc" = (/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/library)
+"aYd" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aYe" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aYf" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plasteel/white,/area/gateway)
+"aYg" = (/obj/effect/turf_decal/bot_white/right,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aYh" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/radio/off,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"aYi" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aYj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aYk" = (/turf/open/floor/circuit/green,/area/ai_monitored/nuke_storage)
+"aYl" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aYm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aYn" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/storage/box/smart_metal_foam,/obj/item/wrench,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/item/assembly/prox_sensor,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aYo" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Security"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"aYp" = (/obj/structure/fans/tiny/invisible,/turf/open/space/basic,/area/space)
+"aYq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
+"aYr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
+"aYs" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aYt" = (/turf/open/floor/plating,/area/maintenance/department/security)
+"aYu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/holopad,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aYv" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/analyzer,/obj/item/storage/toolbox/electrical,/obj/item/gps,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aYw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aYx" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/department/eva)
+"aYy" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side,/area/bridge)
+"aYz" = (/obj/effect/turf_decal/bot_white,/obj/effect/landmark/start/ai/secondary,/obj/machinery/camera{c_tag = "Vault"; dir = 4; network = list("vault")},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aYA" = (/obj/machinery/nuclearbomb/selfdestruct,/obj/effect/turf_decal/box/white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aYB" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
+"aYC" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/security/detectives_office"; dir = 1; name = "Detective's Office APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"aYD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aYE" = (/obj/structure/closet/crate/trashcart,/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aYF" = (/obj/structure/table/wood,/obj/item/storage/box/evidence,/obj/item/hand_labeler,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"aYG" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"aYH" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aYI" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/photocopier,/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/item/paper/fluff/cogstation/secsolars,/turf/open/floor/plasteel,/area/security/main)
+"aYJ" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
+"aYK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Civilian Wing Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"aYL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"aYM" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aYN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aYO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/courtroom)
+"aYP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aYQ" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aYR" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"aYS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/security/brig)
+"aYT" = (/turf/closed/wall/r_wall,/area/security/checkpoint/customs)
+"aYU" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
+"aYV" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"aYW" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northright{name = "Customs Desk"; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"aYX" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/structure/window/reinforced/spawner/north,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"aYY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/courtroom)
+"aYZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
+"aZa" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aZb" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/eva)
+"aZc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aZd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Maintenance"; req_access_txt = "18"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"aZe" = (/obj/structure/sign/warning/biohazard{pixel_y = 32},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"aZf" = (/obj/effect/turf_decal/bot_white/left,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aZg" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"aZh" = (/obj/structure/closet/crate,/obj/machinery/light,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/public)
+"aZi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"aZj" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/extinguisher{pixel_x = -4; pixel_y = 4},/obj/item/extinguisher{pixel_x = -4; pixel_y = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aZk" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/mass_driver{id = "public_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/public)
+"aZl" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/public)
+"aZm" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"aZn" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/motion{c_tag = "EVA"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aZo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/eva)
+"aZp" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
+"aZq" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge)
+"aZr" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aZs" = (/obj/structure/safe,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/lazarus_injector,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/effect/turf_decal/bot_white/left,/obj/item/stack/sheet/mineral/diamond,/obj/item/clothing/under/costume/soviet,/obj/item/clothing/suit/armor/vest/russian_coat,/obj/item/clothing/head/helmet/rus_helmet,/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aZt" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"aZu" = (/obj/machinery/blackbox_recorder,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"aZv" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"aZw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/obj/item/flashlight,/obj/item/flashlight,/obj/item/weldingtool,/obj/item/flashlight,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aZx" = (/obj/machinery/space_heater,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"aZy" = (/turf/closed/wall,/area/lawoffice)
+"aZz" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"aZA" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/lawoffice)
+"aZB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"aZC" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"aZD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Chapel Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"aZE" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/primary/central"; dir = 8; name = "Central Primary Hallway APC"; pixel_x = -26},/turf/open/floor/plating,/area/maintenance/port/central)
+"aZF" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aZG" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation)
+"aZH" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aZI" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/lawyer,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"aZJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"aZK" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/electrical,/obj/item/weldingtool,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/obj/item/assembly/signaler{pixel_x = 6; pixel_y = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/storage/tools)
+"aZL" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"aZM" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet,/area/security/courtroom)
+"aZN" = (/obj/machinery/computer/station_alert{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/lawoffice)
+"aZO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
+"aZP" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/aiModule/reset/purge{pixel_y = 6},/obj/item/aiModule/reset{pixel_x = -2; pixel_y = 4},/obj/item/aiModule/core/full/custom{pixel_x = -4},/obj/machinery/status_display{pixel_x = 32},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"aZQ" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/plasteel{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"aZR" = (/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
+"aZS" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
+"aZT" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/storage/box/deputy,/obj/item/paper/guides/cogstation/letter_hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"aZU" = (/obj/structure/chair,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"aZV" = (/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"aZW" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"aZX" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"aZY" = (/obj/machinery/airalarm{pixel_y = 24},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"aZZ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
+"baa" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bab" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation)
+"bac" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/item/storage/toolbox/emergency,/obj/item/stack/sheet/rglass,/obj/item/stack/sheet/rglass,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"bad" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/white/full,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bae" = (/turf/open/floor/plasteel/dark,/area/lawoffice)
+"baf" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Central Plaza - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bag" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/belt/utility,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"bah" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/lawoffice)
+"bai" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"baj" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/glass/beaker/waterbottle,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bak" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/lawoffice)
+"bal" = (/obj/structure/lattice,/obj/structure/grille,/turf/closed/wall/r_wall,/area/space/nearstation)
+"bam" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation)
+"ban" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"bao" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"bap" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"baq" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bar" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet,/area/crew_quarters/bar)
+"bas" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar)
+"bat" = (/obj/structure/chair/stool/bar,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar)
+"bau" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/junction/flip{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab)
+"bav" = (/obj/structure/chair/sofa/right,/obj/machinery/firealarm{pixel_y = 26},/obj/item/clipboard,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"baw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/lawoffice)
+"bax" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/library)
+"bay" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/library)
+"baz" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"baA" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/blue,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"baB" = (/obj/structure/rack,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/department/security)
+"baC" = (/obj/machinery/vending/cart,/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"baD" = (/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"baE" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/wood,/area/library)
+"baF" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"baG" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"baH" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security)
+"baI" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"baJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"baK" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/item/kitchen/fork,/obj/item/reagent_containers/food/snacks/pastatomato,/obj/machinery/newscaster/security_unit{pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"baL" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"baM" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar/large,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security)
+"baN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"baO" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"baP" = (/obj/structure/closet/secure_closet/captains,/obj/item/reagent_containers/food/drinks/flask/gold,/obj/item/clothing/under/rank/captain/suit,/obj/item/clothing/under/rank/captain/suit/skirt,/obj/machinery/airalarm{pixel_y = 24},/obj/item/clothing/head/centhat{name = "\improper green captain's hat"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
+"baQ" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"baR" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/lawyer,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"baS" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"baT" = (/obj/machinery/iv_drip,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"baU" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"baV" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"baW" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/aiModule/core/full/asimov{pixel_x = 2; pixel_y = 10},/obj/effect/spawner/lootdrop/aimodule_neutral{pixel_x = 1; pixel_y = 8},/obj/effect/spawner/lootdrop/aimodule_harmless{pixel_y = 6},/obj/item/aiModule/core/freeformcore{pixel_x = -1; pixel_y = 2},/obj/item/aiModule/supplied/freeform{pixel_x = -2},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"baX" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/displaycase,/turf/open/floor/wood,/area/library)
+"baY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"baZ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bba" = (/obj/effect/landmark/start/assistant,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"bbb" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet/royalblue,/area/bridge)
+"bbc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
+"bbd" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge)
+"bbe" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/bridge)
+"bbf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop)
+"bbg" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/courtroom)
+"bbh" = (/turf/closed/wall,/area/hallway/primary/aft)
+"bbi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"bbj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/teleporter)
+"bbk" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Telecomms Admin"; departmentType = 5; name = "Telecomms RC"; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bbl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bbm" = (/obj/structure/chair/stool,/obj/effect/landmark/start/lawyer,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bbn" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bbo" = (/obj/structure/closet/crate,/obj/item/book/manual/wiki/security_space_law,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bbp" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet,/area/security/courtroom)
+"bbq" = (/obj/effect/landmark/start/librarian,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"bbr" = (/obj/structure/filingcabinet/employment,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bbs" = (/obj/structure/table/wood,/obj/item/camera,/obj/item/pen/red,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bbt" = (/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bbu" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation)
+"bbv" = (/turf/open/space,/area/space)
+"bbw" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bbx" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bby" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bbz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bbA" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bbB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bbC" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bbD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/bridge)
+"bbE" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bbF" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bbG" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge)
+"bbH" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"bbI" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bbJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bbK" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bbL" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bbM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bbN" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bbO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bbP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "HoP Office Maintenance"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint/customs)
+"bbQ" = (/obj/structure/sign/warning/vacuum/external{pixel_x = -32; pixel_y = 32},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"bbR" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/reagent_containers/food/snacks/grown/wheat,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/cocoapod,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/soybeans,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/cherries,/obj/structure/sign/poster/contraband/have_a_puff{pixel_y = -32},/turf/open/floor/plasteel,/area/hydroponics)
+"bbS" = (/obj/machinery/space_heater,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/gateway)
+"bbT" = (/turf/closed/wall/r_wall,/area/quartermaster/sorting)
+"bbU" = (/turf/open/floor/plating,/area/quartermaster/sorting)
+"bbV" = (/turf/closed/wall/r_wall,/area/quartermaster/warehouse)
+"bbW" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/noticeboard{dir = 4; pixel_x = -27},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bbX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bbY" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bbZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bca" = (/turf/open/floor/engine/vacuum,/area/engine/atmos)
+"bcb" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bcc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/space/nearstation)
+"bcd" = (/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"bce" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "public"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Public Router"},/turf/open/floor/plating,/area/router/public)
+"bcf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bcg" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Public Router"},/turf/open/floor/plating,/area/router/public)
+"bch" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bci" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bcj" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bck" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bcl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bcm" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bcn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bco" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bcp" = (/obj/machinery/libraryscanner,/obj/machinery/light,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"bcq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bcr" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bcs" = (/obj/machinery/pdapainter,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bct" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bcu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/camera{c_tag = "Aft Maintenance - Air Hookup"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bcv" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bcw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/mixing)
+"bcx" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bcy" = (/turf/closed/wall/r_wall,/area/science/mixing)
+"bcz" = (/obj/machinery/computer/card{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bcA" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bcB" = (/obj/structure/reagent_dispensers/watertank,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/gateway)
+"bcC" = (/obj/machinery/power/apc{name = "Research Division Storage APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/gateway)
+"bcD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bcE" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bcF" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bcG" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 5},/turf/open/space/basic,/area/space/nearstation)
+"bcH" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
+"bcI" = (/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bcJ" = (/obj/machinery/button/door{id = "HoPAft"; name = "Aft Shutters"; pixel_x = -24; pixel_y = -24; req_access_txt = "57"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bcK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/public/glass{name = "Cryogenics"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
+"bcL" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bcM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"bcN" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge2"; location = "court"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/courtroom)
+"bcO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/space/nearstation)
+"bcP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bcQ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"bcR" = (/turf/closed/wall,/area/hallway/primary/central)
+"bcS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Courtroom"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/courtroom)
+"bcT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/aft)
+"bcU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Jury Room Maintainance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/security/courtroom/jury)
+"bcV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting)
+"bcW" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_y = -30},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bcX" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/primary/central)
+"bcY" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bcZ" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bda" = (/obj/structure/table,/obj/item/hand_tele,/obj/machinery/camera{c_tag = "Teleporter Room"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/teleporter)
+"bdb" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/central)
+"bdc" = (/turf/open/floor/engine/vacuum,/area/science/mixing)
+"bdd" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Pool"; dir = 1},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/toy/poolnoodle/red,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"bde" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/mixing)
+"bdf" = (/turf/open/floor/plasteel,/area/science/mixing)
+"bdg" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central)
+"bdh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/toy/poolnoodle/blue,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"bdi" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bdj" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
+"bdk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bdl" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/closet/athletic_mixed,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
+"bdm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bdn" = (/obj/structure/chair{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"bdo" = (/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 17},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bdp" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bdq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bdr" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
+"bds" = (/obj/structure/chair/stool,/obj/effect/landmark/start/chaplain,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bdt" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
+"bdu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/hallway/primary/aft)
+"bdv" = (/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bdw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced/tinted,/turf/open/floor/plating,/area/chapel/office)
+"bdx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"bdy" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
+"bdz" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"bdA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bdB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb,/obj/item/toy/eightball,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"bdC" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bdD" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bdE" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
+"bdF" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bdG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bdH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bdI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bdJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Telecommunications Control Room Maintenance"; req_access_txt = "61"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/bridge)
+"bdK" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bdL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bdM" = (/turf/open/floor/plasteel,/area/quartermaster/office)
+"bdN" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bdO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Pool External Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"bdP" = (/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool)
+"bdQ" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"bdR" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"bdS" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/bridge)
+"bdT" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/item/storage/toolbox/emergency,/obj/item/hand_labeler,/obj/item/hand_labeler,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bdU" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bdV" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bdW" = (/obj/structure/mineral_door/woodrustic{name = "Sauna"},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
+"bdX" = (/obj/structure/table/wood,/obj/item/storage/box/donkpockets,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"bdY" = (/obj/structure/sign/warning/fire,/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool)
+"bdZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/quartermaster/sorting)
+"bea" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/poster/official/report_crimes{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"beb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/courtroom/jury)
+"bec" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/mixing)
+"bed" = (/obj/machinery/suit_storage_unit/rd,/turf/open/floor/plasteel,/area/science/mixing)
+"bee" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/science/mixing)
+"bef" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating/airless,/area/science/test_area)
+"beg" = (/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"beh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/science/test_area)
+"bei" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"bej" = (/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bek" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"bel" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bem" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"ben" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"beo" = (/turf/open/floor/plasteel/white,/area/gateway)
+"bep" = (/obj/structure/table/wood,/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hor"; dir = 8; name = "Research Director's Office APC"; pixel_x = -24},/obj/item/reagent_containers/food/snacks/muffin/berry,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"beq" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "generator to cold loop"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"ber" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bes" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/space/nearstation)
+"bet" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"beu" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"bev" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"bew" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port/central)
+"bex" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"bey" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall/rust,/area/space/nearstation)
+"bez" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/office)
+"beA" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/chapel/main)
+"beB" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/quartermaster/office)
+"beC" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"beD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/space/nearstation)
+"beE" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/fans/tiny,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/disposal)
+"beF" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"beG" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Routing Depot - Fore Exterior"; dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"beH" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"beI" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"beJ" = (/turf/open/floor/plasteel,/area/hallway/primary/central)
+"beK" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"beL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"beM" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"beN" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"beO" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"beP" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"beQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/security/detectives_office)
+"beR" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"beS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"beT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"beU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"beV" = (/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = 25; pixel_y = -5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "executionburn"; pixel_x = 24; pixel_y = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/port/fore)
+"beW" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"beX" = (/obj/structure/closet/crate,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"beY" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"beZ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bfa" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/port/fore)
+"bfb" = (/obj/machinery/computer/card/minor/qm,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/keycard_auth{pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bfc" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bfd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bfe" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bff" = (/turf/closed/wall/r_wall,/area/quartermaster/qm)
+"bfg" = (/obj/structure/closet,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bfh" = (/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"bfi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bfj" = (/mob/living/simple_animal/butterfly,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"bfk" = (/mob/living/simple_animal/kiwi,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"bfl" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bfm" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
+"bfn" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"bfo" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing)
+"bfp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4},/obj/machinery/sparker/toxmix{pixel_x = 25},/turf/open/floor/engine/vacuum,/area/science/mixing)
+"bfq" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/cog; width = 9},/turf/open/space/basic,/area/space)
+"bfr" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/white,/area/science/circuit)
+"bfs" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bft" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/hallway/primary/central)
+"bfu" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway)
+"bfv" = (/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"bfw" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel,/area/security/brig)
+"bfx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/gateway)
+"bfy" = (/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"bfz" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bfA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"bfB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access_txt = "22;27"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bfC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/qm)
+"bfD" = (/obj/structure/grille,/turf/open/floor/plating,/area/quartermaster/sorting)
+"bfE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 5; id = "mail"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bfF" = (/obj/machinery/space_heater,/obj/structure/sign/poster/official/no_erp{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
+"bfG" = (/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bfH" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/button/crematorium{id = "foo"; pixel_x = 8; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bfI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = "/area/engine/storage_shared"; dir = 1; name = "Electrical Substation APC"; pixel_y = 26},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
+"bfJ" = (/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
+"bfK" = (/obj/structure/table/wood,/obj/item/storage/fancy/candle_box{pixel_x = -11; pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/paper/fluff/cogstation/letter_chap{pixel_x = 10; pixel_y = 2},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"bfL" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"bfM" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/structure/bedsheetbin/towel,/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
+"bfN" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bfO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jazz Lounge"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bfP" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bfQ" = (/obj/machinery/light/small,/obj/item/candle,/obj/item/trash/candle,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bfR" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bfS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bfT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/chapel/office)
+"bfU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bfV" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main)
+"bfW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bfX" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/cable{icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bfY" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "QM #2"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bfZ" = (/obj/effect/turf_decal/delivery,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bga" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bgb" = (/obj/structure/disposalpipe/sorting/mail{sortType = 30},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bgc" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/directions/command{dir = 8; pixel_x = -32; pixel_y = -32},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/hallway/primary/central)
+"bgd" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
+"bge" = (/turf/closed/wall/r_wall,/area/storage/primary)
+"bgf" = (/turf/closed/wall,/area/quartermaster/warehouse)
+"bgg" = (/obj/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bgh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 6},/turf/open/space/basic,/area/space/nearstation)
+"bgi" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space)
+"bgj" = (/obj/structure/table,/obj/item/weldingtool/mini,/obj/item/light/tube,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bgk" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "mail"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bgl" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/turf/open/floor/plasteel,/area/storage/primary)
+"bgm" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bgn" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/storage/primary)
+"bgo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/chapel/main)
+"bgp" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"bgq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bgr" = (/obj/structure/table/wood,/obj/item/clothing/head/helmet/skull,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"bgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bgt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bgu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bgv" = (/obj/effect/landmark/xeno_spawn,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bgw" = (/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bgx" = (/obj/structure/table/glass,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bgy" = (/obj/structure/closet,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/security/courtroom/jury"; dir = 4; name = "Jury Room APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
+"bgz" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bgA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bgB" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/lightreplacer,/obj/item/lightreplacer,/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/turf/open/floor/plasteel,/area/storage/primary)
+"bgC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/science/mixing)
+"bgD" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/item/target,/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/test_area)
+"bgE" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bgF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/turf/open/floor/plating,/area/hallway/primary/central)
+"bgG" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
+"bgH" = (/obj/machinery/pipedispenser,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bgI" = (/obj/machinery/pipedispenser/disposal,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bgJ" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"bgK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bgL" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bgM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
+"bgN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/primary/central)
+"bgO" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/obj/item/wrench,/obj/item/pipe_dispenser,/mob/living/simple_animal/sloth/paperwork,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bgP" = (/obj/item/analyzer,/obj/item/caution,/turf/open/floor/plating,/area/maintenance/disposal)
+"bgQ" = (/turf/closed/wall,/area/quartermaster/qm)
+"bgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool)
+"bgS" = (/obj/machinery/computer/bounty,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bgT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage)
+"bgU" = (/obj/machinery/computer/cargo,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bgV" = (/turf/closed/wall/r_wall,/area/quartermaster/storage)
+"bgW" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor)
+"bgX" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/hor)
+"bgY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/hallway/primary/central)
+"bgZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bha" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
+"bhb" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bhc" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
+"bhd" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bhe" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bhf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/office)
+"bhg" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Pool - Sauna"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 8},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
+"bhh" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/security/courtroom)
+"bhi" = (/obj/effect/decal/cleanable/dirt,/obj/item/clothing/head/cone,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bhj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bhk" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bhl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool)
+"bhm" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bhn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"bho" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/storage/primary)
+"bhp" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bhq" = (/obj/structure/chair/sofa/right,/obj/item/instrument/recorder,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bhr" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bhs" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bht" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"bhu" = (/obj/effect/turf_decal/bot,/obj/machinery/recharge_station,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bhv" = (/obj/structure/chair/sofa/left,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bhw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/cc64k_ad{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bhx" = (/obj/machinery/vending/coffee,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/wood,/area/medical/medbay/lobby)
+"bhy" = (/obj/structure/closet/crate/science,/obj/item/stack/sheet/metal/ten,/obj/item/stack/sheet/glass/five,/obj/item/stack/rods/twentyfive,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target,/obj/item/target/clown,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/mixing)
+"bhz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"bhA" = (/obj/item/stack/cable_coil/red,/obj/item/multitool,/obj/item/wrench,/obj/item/stack/sheet/metal/five{pixel_x = 6; pixel_y = -6},/obj/item/paper/fluff/cogstation/letter_arrd,/turf/open/floor/plating,/area/maintenance/disposal)
+"bhB" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/paper/fluff/cogstation/bsrb,/obj/item/paper/fluff/cogstation/survey{pixel_x = -4; pixel_y = 2},/turf/open/floor/carpet/royalblue,/area/bridge)
+"bhC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bhD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Chapel Air Hookup"; req_one_access_txt = "12;22"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bhE" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bhF" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bhG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bhH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bhI" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
+"bhJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/engine/atmos)
+"bhK" = (/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bhL" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal"; req_one_access_txt = "12;50"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bhM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bhN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/item/kirbyplants/dead,/turf/open/floor/plasteel,/area/security/main)
+"bhO" = (/obj/structure/chair/sofa/right,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bhP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bhQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bhR" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"bhS" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bhT" = (/obj/structure/sign/departments/engineering,/turf/closed/wall,/area/hallway/primary/aft)
+"bhU" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/janitor)
+"bhV" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/pen/red{pixel_x = -4; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"bhW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"bhX" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bhY" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bhZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
+"bia" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bib" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bic" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = -28},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bid" = (/obj/structure/chair/sofa/left,/mob/living/simple_animal/pet/cat/Proc,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bie" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bif" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
+"big" = (/turf/closed/wall,/area/science/circuit)
+"bih" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bii" = (/obj/structure/table/glass,/obj/item/storage/box/matches,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bij" = (/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage)
+"bik" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"bil" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/conveyor{dir = 6; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
+"bim" = (/turf/open/space/basic,/area/space/nearstation)
+"bin" = (/obj/machinery/computer/mecha{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"bio" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bip" = (/obj/effect/landmark/start/quartermaster,/turf/open/floor/plasteel,/area/quartermaster/qm)
+"biq" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/clothing/under/rank/civilian/head_of_personnel/suit,/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt{name = "head of personnel's suitskirt"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"bir" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bis" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bit" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"biu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"biv" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/quartermaster/office)
+"biw" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/button/door{id = "QMLoadDoor"; layer = 4; name = "Cargo Loading Doors"; pixel_x = 24; pixel_y = 6},/obj/machinery/button/door{id = "QMUnloadDoor"; layer = 4; name = "Cargo Unloading Doors"; pixel_x = 24; pixel_y = -6},/obj/machinery/camera{c_tag = "Supply - Cargo Bay"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bix" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Courtroom"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
+"biy" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
+"biz" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"biA" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"biB" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/rd,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"biC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"biD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"biE" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"biF" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"biG" = (/obj/structure/displaycase/labcage,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/camera{c_tag = "Research Director's Office - Starboard"; network = list("ss13","rd")},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"biH" = (/obj/machinery/light/small,/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"biI" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"biJ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
+"biK" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/science/mixing)
+"biL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall,/area/crew_quarters/heads/chief)
+"biM" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/bot,/obj/structure/sign/poster/official/foam_force_ad{pixel_x = 32},/turf/open/floor/plasteel,/area/quartermaster/office)
+"biN" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"biO" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"biP" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/gateway)
+"biQ" = (/turf/closed/wall,/area/crew_quarters/heads/chief)
+"biR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief)
+"biS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"biT" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/science/mixing)
+"biU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
+"biV" = (/turf/closed/wall,/area/storage/primary)
+"biW" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"biX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"biY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"biZ" = (/turf/closed/wall/r_wall,/area/quartermaster/office)
+"bja" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bjb" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/mechanical,/obj/item/wrench,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/storage/primary)
+"bjc" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/plasteel/twenty,/turf/open/floor/plasteel,/area/storage/primary)
+"bjd" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bje" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bjf" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bjg" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bjh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/central)
+"bji" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bjj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bjk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bjl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/quartermaster/office)
+"bjm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bjn" = (/turf/closed/wall/r_wall,/area/security/checkpoint/supply)
+"bjo" = (/obj/machinery/rnd/production/techfab/department/cargo,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bjp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bjq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/conveyor{id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
+"bjr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/quartermaster/storage)
+"bjs" = (/obj/machinery/computer/robotics{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"bjt" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"bju" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"bjv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/security/courtroom/jury)
+"bjw" = (/obj/item/storage/secure/safe{pixel_x = 4; pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bjx" = (/obj/structure/table/optable,/obj/effect/turf_decal/bot,/obj/item/defibrillator/loaded,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bjy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"bjz" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"bjA" = (/obj/machinery/camera{c_tag = "EVA Maintenace - Fore"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bjB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/security/brig)
+"bjC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jury Room"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/courtroom/jury)
+"bjD" = (/turf/closed/wall/r_wall,/area/security/courtroom/jury)
+"bjE" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/item/phone{pixel_x = -3; pixel_y = 3},/obj/machinery/camera{c_tag = "Atmospherics - Control Room"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/paper/guides/cogstation/letter_atmos,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos)
+"bjF" = (/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Head of Personnel APC"; pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"bjG" = (/obj/structure/rack,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bjH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bjI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bjJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"bjK" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plasteel,/area/storage/primary)
+"bjL" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/item/reagent_containers/spray/cleaner,/obj/machinery/camera{c_tag = "Pool Maintenance"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"bjM" = (/obj/machinery/door/airlock/public/glass{name = "Atmospherics Storage"; req_one_access_txt = "24;31"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bjN" = (/obj/machinery/vending/autodrobe,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bjO" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/item/instrument/piano_synth,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bjP" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bjQ" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant/override,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bjR" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bjS" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/bot,/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_x = 32},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bjT" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"bjU" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bjV" = (/obj/structure/closet{name = "Evidence Closet 5"},/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
+"bjW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bjX" = (/obj/structure/rack,/obj/machinery/button/door{id = "marketdoor"; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bjY" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bjZ" = (/obj/structure/window/reinforced,/obj/machinery/shower{name = "emergency shower"; pixel_y = 12},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westright{name = "Emergency Shower"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary)
+"bka" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bkb" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 9; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bkc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light,/obj/machinery/conveyor_switch/oneway{id = "DeliveryConveyer"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bkd" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bke" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec1"; location = "bridge2"},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bkf" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bkg" = (/obj/structure/disposalpipe/segment,/obj/machinery/mineral/stacking_unit_console{machinedir = 2},/turf/closed/wall,/area/maintenance/disposal)
+"bkh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bki" = (/obj/machinery/light,/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bkj" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor_switch/oneway{id = "mail"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bkk" = (/obj/machinery/autolathe,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bkl" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/item/storage/belt/utility,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bkm" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Supply - Delivery Office Fore"; network = list("ss13","rd")},/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bkn" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bko" = (/turf/open/floor/plasteel,/area/science/circuit)
+"bkp" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bkq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/conveyor/inverted{dir = 9; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
+"bkr" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoadDoor"; name = "Cargo Loading Door"},/turf/open/floor/plating,/area/quartermaster/storage)
+"bks" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
+"bkt" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoadDoor"; name = "Cargo Loading Door"},/turf/open/floor/plating,/area/quartermaster/storage)
+"bku" = (/obj/structure/closet,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bkv" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bkw" = (/obj/structure/bookcase/random/fiction,/obj/effect/spawner/lootdrop/gambling,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bkx" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/central)
+"bky" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"bkz" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bkA" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Bridge - Starboard Quarter"; dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
+"bkB" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bkC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
+"bkD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/heads/chief)
+"bkE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bkF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security)
+"bkG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/crate/engineering,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/rcl/pre_loaded,/obj/item/stock_parts/cell/high/plus,/obj/item/clothing/glasses/meson,/obj/item/cartridge/atmos,/obj/item/cartridge/engineering,/obj/item/cartridge/engineering,/obj/item/cartridge/engineering,/obj/machinery/camera{c_tag = "Chief Engineer's Office"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"bkH" = (/obj/machinery/computer/atmos_control{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/engine/atmos)
+"bkI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/primary)
+"bkJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"bkK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/departments/security{pixel_x = -32},/obj/item/cigbutt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bkL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bkM" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bkN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bkO" = (/obj/machinery/vending/kink,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bkP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bkQ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bkR" = (/obj/machinery/camera{c_tag = "EVA Maintenance - Aft"; dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bkS" = (/obj/machinery/vending/sustenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bkT" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"bkU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bkV" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bkW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Pool Exterior Access"; req_access_txt = "13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"bkX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/sorting)
+"bkY" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/crate/engineering,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bkZ" = (/turf/open/floor/engine/n2,/area/engine/atmos)
+"bla" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"blb" = (/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"blc" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bld" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"ble" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"blf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop)
+"blg" = (/obj/effect/turf_decal/caution/stand_clear,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"blh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bli" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blj" = (/obj/structure/sign/warning/docking,/turf/closed/wall/r_wall,/area/space/nearstation)
+"blk" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bll" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blm" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bln" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blo" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blp" = (/turf/closed/wall/r_wall,/area/hallway/secondary/exit)
+"blq" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/wardrobe/engi_wardrobe,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary)
+"blr" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bls" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/sign/poster/official/ion_rifle{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig)
+"blt" = (/obj/machinery/computer/card/minor/ce{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"blu" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"blv" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"blw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"blx" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bly" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"blz" = (/obj/machinery/computer/atmos_control{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos)
+"blA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"blB" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blC" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
+"blE" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blF" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blG" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine,/area/science/mixing)
+"blH" = (/obj/structure/chair,/obj/machinery/button/massdriver{id = "toxinsdriver"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"blI" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/engine,/area/science/mixing)
+"blJ" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "marketdoor"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blL" = (/turf/open/floor/engine/o2,/area/engine/atmos)
+"blM" = (/turf/open/floor/engine/air,/area/engine/atmos)
+"blN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"blO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"blP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/rust,/area/maintenance/department/chapel)
+"blQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northleft{name = "Delivery Office"; req_one_access_txt = "31;48"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"blR" = (/obj/machinery/computer/bounty{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"blS" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/chair,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"blT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/closed/wall/r_wall,/area/science/mixing)
+"blU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/aft)
+"blV" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"blW" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -24},/obj/item/storage/toolbox/mechanical,/obj/item/clothing/gloves/color/fyellow,/obj/item/crowbar,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"blX" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"blY" = (/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
+"blZ" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "QMUnload"},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bma" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/landmark/start/assistant/override,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/quartermaster/office)
+"bmb" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/hor)
+"bmc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_one_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hos)
+"bmd" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"bme" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"bmf" = (/obj/structure/sign/departments/evac,/turf/closed/wall/r_wall,/area/hallway/secondary/exit)
+"bmg" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmh" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmi" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmj" = (/obj/machinery/vending/wardrobe/cap_wardrobe,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
+"bmk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/dice/d6,/obj/machinery/camera{c_tag = "Jazz Lounge"; dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bml" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bmm" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bmn" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmo" = (/turf/closed/wall/rust,/area/maintenance/department/chapel)
+"bmp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fore)
+"bmq" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=court"; location = "bridge1"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmr" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bms" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/barthpot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bmt" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bmu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bmv" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bmw" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"bmx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bmy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmz" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/primary)
+"bmA" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/hallway/secondary/civilian)
+"bmB" = (/obj/machinery/light_switch{pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bmC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmD" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/gateway)
+"bmF" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/turf/closed/wall,/area/crew_quarters/fitness/cogpool)
+"bmG" = (/turf/open/floor/engine,/area/gateway)
+"bmH" = (/obj/machinery/computer/upload/borg{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bmI" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/chapel/office"; dir = 4; name = "Chapel Office APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bmJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"bmK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
+"bmL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bmM" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"bmN" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal Maintenance"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bmO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/crew_quarters/lounge/jazz)
+"bmP" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/departments/engineering{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bmQ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/camera{c_tag = "Engineering Foyer - Starboard"; dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"bmR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_one_access_txt = "17;19"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/teleporter)
+"bmS" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal)
+"bmT" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"bmU" = (/obj/structure/table/wood,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/instrument/saxophone,/obj/item/reagent_containers/food/drinks/bottle/vermouth,/obj/item/clothing/glasses/sunglasses,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bmV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bmW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal)
+"bmX" = (/obj/structure/table,/obj/item/folder/yellow{pixel_y = 4},/obj/item/pen{pixel_y = 4},/obj/item/clothing/gloves/color/latex{pixel_y = 4},/obj/item/clothing/mask/surgical{pixel_y = 4},/obj/item/healthanalyzer,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/item/paper/guides/cogstation/cdn_chap,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bmY" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/disposal)
+"bmZ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bna" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bnb" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bnc" = (/obj/structure/sign/directions/command{dir = 1; pixel_x = -32; pixel_y = 32},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 40},/obj/structure/sign/directions/science{pixel_x = -32; pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bnd" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/obj/item/storage/box/matches,/obj/item/storage/fancy/cigarettes/cigpack_robust,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bne" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"bnf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"bng" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"bnh" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/poddoor{id = "DeliveryDoor"; name = "Delivery Door"},/obj/effect/turf_decal/caution/stand_clear{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bni" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/item/clipboard,/obj/item/stamp,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/pen/red,/obj/item/pen/blue{pixel_x = -5; pixel_y = -3},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bnj" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/wall,/area/science/test_area)
+"bnk" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/mixing)
+"bnl" = (/obj/machinery/gateway{dir = 9},/turf/open/floor/engine,/area/gateway)
+"bnm" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing)
+"bnn" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/window/southleft{name = "Cargo Desk"; req_access_txt = "31"},/obj/item/folder,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bno" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bnp" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
+"bnq" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room)
+"bnr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bns" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/maintenance/department/eva)
+"bnt" = (/obj/machinery/camera{c_tag = "Electrical Substation"; dir = 1},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
+"bnu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"bnv" = (/obj/effect/turf_decal/plaque{icon_state = "L1"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bnw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bnx" = (/obj/effect/turf_decal/plaque{icon_state = "L3"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bny" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/paper_bin,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/pen,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bnz" = (/obj/effect/turf_decal/plaque{icon_state = "L5"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bnA" = (/obj/effect/turf_decal/plaque{icon_state = "L7"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bnB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bnC" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bnD" = (/obj/effect/turf_decal/plaque{icon_state = "L9"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bnE" = (/obj/effect/decal/cleanable/dirt,/obj/item/crowbar,/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bnF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bnG" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/bridge)
+"bnH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/fore)
+"bnI" = (/obj/structure/bed,/obj/effect/landmark/start/head_of_personnel,/obj/item/bedsheet/hop,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"bnJ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bnK" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/teleporter)
+"bnL" = (/obj/item/beacon,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/teleporter)
+"bnM" = (/obj/effect/turf_decal/delivery,/obj/item/grown/bananapeel,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bnN" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bnO" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/hallway/secondary/exit)
+"bnP" = (/obj/effect/turf_decal/plaque{icon_state = "L11"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bnQ" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bnR" = (/obj/effect/turf_decal/plaque{icon_state = "L13"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bnS" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/space/nearstation)
+"bnT" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
+"bnU" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/wrench,/obj/item/flashlight,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bnV" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
+"bnW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"bnX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/closet/secure_closet/security/cargo,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"bnY" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hallway/secondary/exit)
+"bnZ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/pen/blue,/obj/machinery/camera{c_tag = "Customs - Fore"; dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"boa" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/closed/wall,/area/crew_quarters/heads/chief)
+"bob" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/closed/wall,/area/crew_quarters/heads/chief)
+"boc" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/turf/closed/wall,/area/crew_quarters/heads/chief)
+"bod" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{name = "Primary Tool Storage Desk"; req_access_txt = "11"},/obj/item/folder/yellow,/turf/open/floor/plasteel,/area/storage/primary)
+"boe" = (/obj/machinery/door/airlock/vault{name = "Vault Door"; req_access_txt = "53"},/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage)
+"bof" = (/obj/machinery/door/airlock/external/glass{name = "Pool Exterior Access"; req_access_txt = "13"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
+"bog" = (/obj/machinery/light{dir = 1},/turf/open/floor/grass,/area/hallway/secondary/exit)
+"boh" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"boi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
+"boj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bok" = (/obj/structure/table/wood,/obj/item/paicard,/obj/item/toy/sword,/obj/item/toy/figure/assistant,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bol" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/teleporter)
+"bom" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/grass,/area/hallway/secondary/exit)
+"bon" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"boo" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
+"bop" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/door/window/eastleft{name = "Operating Theatre"; req_access_txt = "45"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"boq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bor" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bos" = (/obj/structure/table,/obj/item/stack/sheet/cardboard/fifty,/obj/item/stack/wrapping_paper,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bot" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bou" = (/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bov" = (/obj/effect/turf_decal/loading_area{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bow" = (/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage)
+"box" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"boy" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"boz" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"boA" = (/turf/closed/wall,/area/security/detectives_office)
+"boB" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage)
+"boC" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/sign/departments/cargo{pixel_x = 32},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"boD" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMUnloadDoor"; name = "Cargo Unloading Door"},/turf/open/floor/plating,/area/quartermaster/storage)
+"boE" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage)
+"boF" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMUnloadDoor"; name = "Cargo Unloading Door"},/turf/open/floor/plating,/area/quartermaster/storage)
+"boG" = (/obj/machinery/space_heater,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/weldingtool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/sign/departments/engineering{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"boH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"boI" = (/turf/closed/wall/r_wall,/area/quartermaster/miningoffice)
+"boJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/machinery/computer/security/telescreen/toxins{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/science/mixing)
+"boK" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningoffice)
+"boL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"boM" = (/obj/machinery/mineral/ore_redemption{input_dir = 4; output_dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"boN" = (/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"boO" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/drinkingglasses{pixel_y = 4},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/bar)
+"boP" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"boQ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/science/mixing)
+"boR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/science/mixing)
+"boS" = (/obj/structure/sign/mining,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice)
+"boT" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"boU" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"boV" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"boW" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"boX" = (/obj/item/beacon,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"boY" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"boZ" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bpa" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/window/westleft{name = "Treatment Center"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bpb" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bpc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bpd" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bpe" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/door/window/eastright{name = "Operating Theatre"; req_access_txt = "45"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bpf" = (/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bpg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bph" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bpi" = (/obj/structure/flora/junglebush/b,/turf/open/floor/grass,/area/hallway/secondary/exit)
+"bpj" = (/obj/structure/flora/junglebush,/turf/open/floor/grass,/area/hallway/secondary/exit)
+"bpk" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bpl" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/autolathe/secure{name = "public autolathe"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bpm" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/aft)
+"bpn" = (/obj/effect/turf_decal/plaque{icon_state = "L4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bpo" = (/obj/machinery/holopad,/turf/open/floor/carpet/red,/area/security/brig)
+"bpp" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bpq" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine/air,/area/engine/atmos)
+"bpr" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bps" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge/jazz"; name = "Jazz Lounge APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bpt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bpu" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bpv" = (/turf/closed/wall/r_wall,/area/engine/break_room)
+"bpw" = (/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bpx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bpy" = (/obj/effect/turf_decal/plaque{icon_state = "L8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/observer_start,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bpz" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bpA" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bpB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/primary/aft)
+"bpC" = (/obj/effect/turf_decal/plaque{icon_state = "L10"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bpD" = (/turf/open/floor/plating,/area/maintenance/aft)
+"bpE" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
+"bpF" = (/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bpG" = (/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bpH" = (/obj/machinery/jukebox,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bpI" = (/obj/effect/turf_decal/delivery,/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bpJ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
+"bpK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"bpL" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/engine/engine_smes{name = "Power Monitoring"})
+"bpM" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/science/mixing)
+"bpN" = (/obj/structure/grille,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
+"bpO" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft)
+"bpP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bpQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bpR" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/mixing)
+"bpS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/carpet/red,/area/security/brig)
+"bpT" = (/obj/structure/window/reinforced/spawner,/turf/open/floor/grass,/area/hallway/secondary/exit)
+"bpU" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"bpV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Aft Air Hookup"; req_access_txt = "12;24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bpW" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/security/brig)
+"bpX" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/poster/official/obey{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig)
+"bpY" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bpZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"bqa" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bqb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/civilian)
+"bqc" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/medbay/lobby)
+"bqd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bqe" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/lobby)
+"bqf" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"bqg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"bqh" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"bqi" = (/obj/machinery/button/door{id = "HoPFore"; name = "Fore Shutters"; pixel_x = -24; pixel_y = 24; req_access_txt = "57"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bqj" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bqk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bql" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/secondary/civilian)
+"bqm" = (/turf/closed/wall,/area/medical/medbay/lobby)
+"bqn" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bqo" = (/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bqp" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"bqq" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Medbay - Chemistry Lab"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/medical/chemistry)
+"bqr" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bqs" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
+"bqt" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/healthanalyzer,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bqu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal Maintenance"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bqv" = (/obj/structure/window/reinforced/spawner/east,/turf/open/floor/wood,/area/medical/medbay/lobby)
+"bqw" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Engineering - Entrance"; dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"bqx" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bqy" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Supply - Mining Office"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bqz" = (/turf/closed/wall,/area/medical/chemistry)
+"bqA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bqB" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/library)
+"bqC" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bqD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bqE" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bqF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/central)
+"bqG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bqH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"bqI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/mixing)
+"bqJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/airlock_sensor/incinerator_toxmix{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/engine,/area/science/mixing)
+"bqK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bqL" = (/obj/structure/chair{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"bqM" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/pill_bottle/dice,/obj/item/toy/cards/deck,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"bqN" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bqO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bqP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bqQ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
+"bqR" = (/obj/machinery/computer/operating{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bqS" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bqT" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bqU" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"bqV" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bqW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bqX" = (/turf/closed/wall/mineral/titanium/nosmooth,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bqY" = (/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -32},/obj/structure/sign/directions/supply{pixel_x = -32; pixel_y = -40},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bqZ" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bra" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"brb" = (/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
+"brc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
+"brd" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bre" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/central)
+"brf" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"brg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"brh" = (/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"bri" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/hallway/secondary/civilian)
+"brj" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Central Starboard Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/civilian)
+"brk" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/medical/medbay/lobby)
+"brl" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/item/paper_bin,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/item/reagent_containers/dropper,/obj/item/stamp/denied{pixel_x = -8; pixel_y = -2},/obj/item/stamp{pixel_x = -8; pixel_y = 2},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"brm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"brn" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hydroponics)
+"bro" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
+"brp" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/machinery/smartfridge/disks,/turf/open/floor/plasteel,/area/hydroponics)
+"brq" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"brr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"brs" = (/turf/open/floor/plating/airless,/area/space/nearstation)
+"brt" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/chapel/office)
+"bru" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"brv" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"brw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/gateway)
+"brx" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/tools)
+"bry" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"brz" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/power/apc{areastring = "/area/science/research"; name = "Research Sector APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"brA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/pda_ad600{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
+"brB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"brC" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/tools)
+"brD" = (/obj/structure/table,/obj/machinery/door/window/eastright{name = "Auxiliary Tool Storage Desk"; req_access_txt = "12"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/folder,/turf/open/floor/plasteel,/area/storage/tools)
+"brE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"brF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/chemistry)
+"brG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"brH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/chemistry)
+"brI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Aft"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"brJ" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
+"brK" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/chem_dispenser,/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/medical/chemistry)
+"brL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation)
+"brM" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Merchant Plaza"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"brN" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"brO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"brP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"brQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
+"brR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "31"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"brS" = (/obj/machinery/suit_storage_unit/open,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"brT" = (/obj/machinery/suit_storage_unit/open,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"brU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/lobby)
+"brV" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"brW" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock{name = "Chapel Maintenance"; req_one_access_txt = "12;22;26;27;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"brX" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"brY" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/camera{c_tag = "Waste Disposal - Aft"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"brZ" = (/obj/item/kirbyplants{icon_state = "plant-02"},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"bsa" = (/obj/structure/table/glass,/obj/item/scalpel,/obj/item/storage/box/cups,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/medical/medbay/lobby)
+"bsb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/port/central)
+"bsc" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/table/glass,/obj/item/reagent_containers/glass/bottle/ammonia,/obj/item/toy/figure/botanist{pixel_x = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"bsd" = (/obj/structure/closet/crate/hydroponics,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/suit/hooded/wintercoat/hydro{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics)
+"bse" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bsf" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/bed/dogbed/ian,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/sign/poster/official/love_ian{pixel_y = 32},/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"bsg" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
+"bsh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Recycler Exterior Access"; req_one_access_txt = "13;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bsi" = (/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bsj" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green,/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics)
+"bsk" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hydroponics)
+"bsl" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
+"bsm" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
+"bsn" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/machinery/plantgenes{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics)
+"bso" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/storage/tools)
+"bsp" = (/turf/open/floor/wood,/area/medical/medbay/lobby)
+"bsq" = (/obj/structure/table,/obj/machinery/door/window/southleft{name = "Auxiliary Tool Storage Desk"; req_access_txt = "12"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/book/manual/wiki/engineering_hacking,/turf/open/floor/plasteel,/area/storage/tools)
+"bsr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty{pixel_x = -6; pixel_y = 2},/turf/open/floor/plasteel,/area/storage/tools)
+"bss" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/item/hand_labeler{pixel_y = 8},/obj/item/storage/firstaid/regular,/obj/item/book/manual/wiki/medicine{pixel_x = -6},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bst" = (/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bsu" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bsv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"bsw" = (/turf/open/floor/plasteel/stairs/left,/area/hydroponics)
+"bsx" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Recycler Exterior Access"; req_one_access_txt = "13;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bsy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"bsz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bsA" = (/turf/open/floor/plasteel/stairs/right,/area/hydroponics)
+"bsB" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
+"bsC" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/camera{c_tag = "Hydroponics - Aft"},/turf/open/floor/plasteel,/area/hydroponics)
+"bsD" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation)
+"bsE" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/hydroponics)
+"bsF" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/grass,/area/hydroponics)
+"bsG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/poster/contraband/borg_fancy_2{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/aft)
+"bsH" = (/obj/structure/table/glass,/obj/item/storage/box/syringes{pixel_y = 4},/turf/open/floor/grass,/area/hydroponics)
+"bsI" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"bsJ" = (/obj/structure/table/glass,/obj/item/reagent_containers/spray/plantbgone{pixel_x = 12; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 2; pixel_y = 9},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 6; pixel_y = 4},/turf/open/floor/grass,/area/hydroponics)
+"bsK" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light,/turf/open/floor/grass,/area/hydroponics)
+"bsL" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/reagentgrinder{pixel_y = 8},/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = -2; pixel_y = -2},/turf/open/floor/plasteel,/area/medical/chemistry)
+"bsM" = (/turf/closed/wall,/area/science/robotics/lab)
+"bsN" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/cable_coil/random,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/screwdriver{pixel_x = -2; pixel_y = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/chemistry)
+"bsO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hallway/secondary/civilian)
+"bsP" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/medical/chemistry)
+"bsQ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/medical/chemistry)
+"bsR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bsS" = (/obj/machinery/door/window/northleft{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bsT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"bsU" = (/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bsV" = (/turf/closed/wall,/area/maintenance/aft)
+"bsW" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/chaplain,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"bsX" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bsY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/aft)
+"bsZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/aft)
+"bta" = (/turf/closed/wall/r_wall,/area/storage/tech)
+"btb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Detective"; departmentType = 5; name = "Detective's Office RC"; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"btc" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Custodial Closet APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/janitor)
+"btd" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bte" = (/obj/structure/sign/warning/vacuum/external,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice)
+"btf" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/medical/medbay/lobby)
+"btg" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bth" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
+"bti" = (/obj/machinery/door/window/eastleft{name = "Waiting Room"},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"btj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"btk" = (/obj/structure/sign/poster/official/nanomichi_ad{pixel_x = 32},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"btl" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"btm" = (/obj/machinery/disposal/bin{name = "Chapel Mailbox"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; name = "Chapel RC"; pixel_x = -32},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"btn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
+"bto" = (/turf/open/floor/plasteel,/area/science/robotics/lab)
+"btp" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"btq" = (/obj/machinery/vending/cigarette,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"btr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bts" = (/obj/effect/decal/cleanable/dirt,/obj/structure/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 1},/turf/open/floor/plasteel,/area/maintenance/aft)
+"btt" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Aft"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
+"btu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/hallway/secondary/civilian)
+"btv" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft)
+"btw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/department/eva)
+"btx" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft)
+"bty" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"btz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"btA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"btB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"btC" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"btD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"btE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tech)
+"btF" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"btG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"btH" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"btI" = (/obj/structure/closet/secure_closet/brig{name = "Detainee Locker"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"btJ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/hallway/secondary/civilian)
+"btK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"btL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"btM" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"btN" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/rack,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/stack/cable_coil/random,/obj/item/weldingtool,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"btO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"btP" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"btQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/turf/open/floor/plating,/area/storage/tech)
+"btR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/department/eva)
+"btS" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"btT" = (/turf/closed/wall/r_wall,/area/router)
+"btU" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/medical/medbay/lobby)
+"btV" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/storage/tech)
+"btW" = (/obj/structure/table,/obj/machinery/light,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/quartermaster/office)
+"btX" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"btY" = (/obj/machinery/door/window/eastright{name = "Waiting Room"},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"btZ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router)
+"bua" = (/turf/closed/wall/r_wall,/area/science/robotics/mechbay)
+"bub" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"buc" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"bud" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{id = "router_off"},/turf/open/floor/plating,/area/router)
+"bue" = (/turf/closed/wall/r_wall,/area/router/eva)
+"buf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/structure/plasticflaps,/obj/machinery/door/window/northleft{name = "Showers"; req_one_access_txt = "29;47"},/turf/open/floor/plasteel,/area/science/lab)
+"bug" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/chapel/office)
+"buh" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/maintenance/disposal)
+"bui" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"buj" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/aft)
+"buk" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bul" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft)
+"bum" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft)
+"bun" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
+"buo" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bup" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"buq" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/router)
+"bur" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bus" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "public_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router)
+"but" = (/turf/closed/wall/mineral/titanium/nosmooth,/area/hallway/primary/central)
+"buu" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"buv" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"buw" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bux" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
+"buy" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"buz" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"buA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
+"buB" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"buC" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/wirer,/turf/open/floor/plasteel/white,/area/science/circuit)
+"buD" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"buE" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "router"},/turf/open/floor/plating,/area/router)
+"buF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"buG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"buH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"buI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"buJ" = (/obj/item/beacon,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"buK" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"buL" = (/obj/structure/closet/crate/coffin,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"buM" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/button/door{id = "capblast"; name = "Window Blast Door Control"; pixel_x = -6; pixel_y = -3; req_access_txt = "19"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
+"buN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/rust,/area/chapel/main)
+"buO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
+"buP" = (/obj/item/trash/plate,/obj/item/lighter/greyscale,/obj/item/clothing/mask/cigarette/cigar/cohiba,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"buQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"buR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop)
+"buS" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/cmo)
+"buT" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/sign/poster/official/soft_cap_pop_art{pixel_x = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"buU" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chips{pixel_x = 3; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"buV" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/processor,/obj/item/circuitboard/machine/telecomms/bus,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"buW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/janitor)
+"buX" = (/obj/structure/chair/stool,/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"buY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"buZ" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/soulstone/anybody/chaplain,/obj/item/organ/heart,/obj/item/book/granter/spell/smoke/lesser,/obj/item/nullrod,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"bva" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall,/area/janitor)
+"bvb" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bvc" = (/obj/machinery/computer/cargo/request,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/router/eva)
+"bvd" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bve" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction)
+"bvf" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"bvg" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/effect/turf_decal/bot,/obj/machinery/requests_console{department = "EVA Router"; name = "EVA Router RC"; pixel_y = 28},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/router/eva)
+"bvh" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"bvi" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"bvj" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
+"bvk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bvl" = (/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bvm" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"bvn" = (/obj/machinery/rnd/production/protolathe/department/science,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/lab)
+"bvo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bvp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint)
+"bvq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bvr" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"bvs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel)
+"bvt" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bvu" = (/turf/closed/wall/r_wall,/area/chapel/office)
+"bvv" = (/turf/closed/wall/r_wall/rust,/area/hydroponics/garden{name = "Nature Preserve"})
+"bvw" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"bvx" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bvy" = (/turf/open/floor/plasteel/white,/area/science/mixing)
+"bvz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/router/eva)
+"bvA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"bvB" = (/turf/closed/wall/r_wall/rust,/area/router)
+"bvC" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"bvD" = (/obj/machinery/camera{c_tag = "Bar - Starboard"; dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bvE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet,/area/chapel/main)
+"bvF" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"bvG" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bvH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/bar)
+"bvI" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/chapel)
+"bvJ" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/head_of_personnel,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"bvK" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bvL" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"bvM" = (/obj/machinery/door/airlock/external/glass{name = "External Construction Access"; req_one_access_txt = "10;31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bvN" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel)
+"bvO" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bvP" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bvQ" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/janitor)
+"bvR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bvS" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bvT" = (/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bvU" = (/obj/item/caution,/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/biohazard{pixel_x = -32},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bvV" = (/obj/structure/table,/obj/machinery/light/small,/obj/item/storage/pill_bottle/epinephrine,/obj/item/wrench{pixel_x = -8},/obj/item/extinguisher{pixel_x = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bvW" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bvX" = (/obj/machinery/door/airlock/external{name = "External Construction Access"; req_one_access_txt = "10;31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bvY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"bvZ" = (/obj/item/folder,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bwa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva)
+"bwb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/camera{c_tag = "Chapel Air Hookup"; dir = 1},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bwc" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bwd" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bwe" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bwf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bwg" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bwh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/machinery/requests_console{department = "Routing Depot"; name = "Routing Depot RC"; pixel_y = 28},/obj/machinery/button/massdriver{id = "eva_in"; name = "mass driver button (EVA)"; pixel_x = -24},/obj/machinery/button/massdriver{id = "public_in"; name = "mass driver button (Public)"; pixel_x = -24; pixel_y = 8},/turf/open/floor/plasteel,/area/router)
+"bwi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bwj" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bwk" = (/obj/machinery/chem_master,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal)
+"bwl" = (/obj/structure/closet/secure_closet/security,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/sign/poster/official/safety_report{pixel_x = 32},/turf/open/floor/plasteel,/area/security/checkpoint)
+"bwm" = (/obj/structure/sign/departments/science,/turf/closed/wall/r_wall,/area/gateway)
+"bwn" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bwo" = (/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bwp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bwq" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bwr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bws" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/autolathe/secure{name = "public autolathe"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bwt" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bwu" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bwv" = (/obj/machinery/disposal/bin{name = "Mass Driver"},/obj/structure/sign/warning/deathsposal{pixel_x = 32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal)
+"bww" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bwx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/janitor)
+"bwy" = (/obj/machinery/vending/wardrobe/jani_wardrobe,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor)
+"bwz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bwA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor)
+"bwB" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/bot_assembly/medbot,/obj/item/clothing/head/hardhat{pixel_x = -2; pixel_y = 6; pressure_resistance = 6},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bwC" = (/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/item/storage/box/mousetraps,/obj/item/light/tube,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/machinery/camera{c_tag = "Routing Depot"},/turf/open/floor/plasteel,/area/router)
+"bwD" = (/obj/structure/table/reinforced,/obj/item/analyzer,/obj/item/wrench,/obj/item/screwdriver,/turf/open/floor/plasteel/white,/area/science/mixing)
+"bwE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bwF" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bwG" = (/obj/item/cigbutt,/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/event_spawn,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bwH" = (/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/mre/menu2/safe,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/glass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bwI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal)
+"bwJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"bwK" = (/obj/machinery/camera{c_tag = "Research - Gateway Chamber"; network = list("ss13","rd")},/obj/machinery/gateway{dir = 1},/turf/open/floor/engine,/area/gateway)
+"bwL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router)
+"bwM" = (/obj/machinery/gateway{dir = 5},/turf/open/floor/engine,/area/gateway)
+"bwN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Toxins Lab - Port"; network = list("ss13","rd")},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"bwO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bwP" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/break_room)
+"bwQ" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 1; id = "router_off"},/turf/open/floor/plating,/area/router)
+"bwR" = (/turf/open/floor/plasteel,/area/engine/break_room)
+"bwS" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bwT" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bwU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bwV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/break_room)
+"bwW" = (/turf/closed/wall,/area/maintenance/disposal)
+"bwX" = (/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bwY" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva)
+"bwZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/obj/item/wirecutters,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/router)
+"bxa" = (/obj/structure/frame/computer,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/router)
+"bxb" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Waste Disposal - Port"; dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bxc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bxd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bxe" = (/obj/item/stack/tile/plasteel{pixel_x = 6; pixel_y = 13},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bxf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "EVA Router"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eva)
+"bxg" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 14},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bxh" = (/obj/machinery/disposal/bin{name = "Corpse Disposal"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bxi" = (/obj/structure/closet/l3closet/janitor,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/item/clothing/gloves/color/purple,/obj/item/clothing/gloves/color/purple,/obj/item/clothing/under/costume/maid,/obj/item/clothing/under/costume/maid,/obj/structure/sign/poster/official/bless_this_spess{pixel_x = -32},/turf/open/floor/plasteel,/area/janitor)
+"bxj" = (/turf/closed/wall/r_wall,/area/maintenance/aft)
+"bxk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bxl" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"bxm" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/closed/wall/r_wall,/area/tcommsat/computer)
+"bxn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxo" = (/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer)
+"bxp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bxq" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer)
+"bxr" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed,/obj/item/radio/off{pixel_x = 4; pixel_y = 4},/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/turf/open/floor/plasteel,/area/janitor)
+"bxs" = (/obj/item/storage/toolbox/mechanical/old,/obj/item/reagent_containers/food/snacks/chips{pixel_x = 3; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/disposal)
+"bxt" = (/obj/machinery/door/airlock/external/glass{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer)
+"bxu" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/broadcaster,/obj/item/circuitboard/machine/telecomms/receiver,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxw" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/aft)
+"bxx" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxy" = (/obj/item/trash/candle,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal)
+"bxz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/station_alert,/obj/structure/sign/poster/official/safety_eye_protection{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper/guides/cogstation/letter_eng,/turf/open/floor/plasteel,/area/engine/break_room)
+"bxA" = (/obj/machinery/announcement_system,/turf/open/floor/plasteel/dark,/area/tcommsat/computer)
+"bxB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/computer/message_monitor{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxC" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small,/turf/open/floor/plating,/area/tcommsat/computer)
+"bxD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/door/airlock/engineering{name = "Telecommunications Chamber"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"bxG" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/disposal)
+"bxH" = (/turf/closed/wall,/area/storage/tech)
+"bxI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxK" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/radio/off,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bxM" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/primary/aft)
+"bxN" = (/obj/structure/rack,/obj/machinery/light/small{dir = 8},/obj/effect/spawner/lootdrop/techstorage/command,/turf/open/floor/plating,/area/storage/tech)
+"bxO" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bxP" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/external{name = "Central Starboard Exterior Access"; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bxQ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxR" = (/obj/effect/turf_decal/bot,/obj/machinery/conveyor_switch{id = "MiningConveyer"},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bxS" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bxT" = (/turf/closed/wall/r_wall,/area/science/xenobiology)
+"bxU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bxV" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bxW" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxY" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bxZ" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"bya" = (/obj/machinery/computer/telecomms/monitor{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"byb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/server)
+"byc" = (/obj/machinery/igniter/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing)
+"byd" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fourcolor,/obj/item/pen/fountain{pixel_x = 2; pixel_y = 6},/obj/item/stamp/hop,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"bye" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"byf" = (/obj/machinery/door/airlock/engineering/glass{name = "Telecommunications Mainframe"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/tcommsat/server)
+"byg" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"byh" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"byi" = (/turf/closed/wall/r_wall,/area/tcommsat/server)
+"byj" = (/turf/open/floor/plasteel,/area/tcommsat/server)
+"byk" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byl" = (/obj/machinery/door/airlock/engineering/glass{name = "Telecommunications Mainframe"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/server)
+"bym" = (/obj/machinery/announcement_system,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byn" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"byo" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/pen,/obj/item/pen{pixel_x = 4; pixel_y = 3},/obj/machinery/camera{c_tag = "Chapel Game Room"; dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"byp" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byq" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byr" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/flashlight/lamp/green,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"bys" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eva)
+"byt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Starboard Exterior Access"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"byu" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/external{name = "Central Starboard Exterior Access"; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"byv" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"byw" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"byx" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byy" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byz" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byA" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byB" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"byC" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"byD" = (/obj/machinery/camera{c_tag = "Medbay - Lobby"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"byE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/button/massdriver{id = "eva_out"; pixel_x = 24; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/eva)
+"byF" = (/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor/auto{dir = 4; id = "EVA"},/turf/open/floor/plating,/area/router/eva)
+"byG" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byH" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byI" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byJ" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byK" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byL" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"byM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Chapel Maintenance"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"byN" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/morgue)
+"byO" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/tile/plasteel{pixel_x = 3; pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"byP" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"byQ" = (/turf/closed/wall,/area/medical/morgue)
+"byR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"byS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"byT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
+"byU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
+"byV" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"byW" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"byX" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating/airless,/area/space/nearstation)
+"byY" = (/obj/vehicle/ridden/janicart,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/key/janitor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor)
+"byZ" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/mass_driver{dir = 4; id = "eva_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/eva)
+"bza" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bzb" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bzc" = (/obj/machinery/light/small{dir = 8},/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/turf/open/floor/plating,/area/storage/tech)
+"bzd" = (/turf/open/floor/plating,/area/storage/tech)
+"bze" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/aft)
+"bzf" = (/obj/structure/janitorialcart,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor)
+"bzg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/janitor)
+"bzh" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"bzi" = (/obj/item/cardboard_cutout,/turf/open/floor/plating,/area/maintenance/disposal)
+"bzj" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/flashlight,/obj/item/flashlight,/obj/item/assembly/flash,/obj/item/assembly/flash,/obj/item/clothing/glasses/meson,/turf/open/floor/plating,/area/storage/tech)
+"bzk" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/storage/tech)
+"bzl" = (/obj/structure/closet/secure_closet,/obj/effect/spawner/lootdrop/organ_spawner,/obj/effect/spawner/lootdrop/organ_spawner,/obj/effect/spawner/lootdrop/organ_spawner,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/disposal)
+"bzm" = (/obj/machinery/conveyor{dir = 5; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bzn" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bzo" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bzp" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"bzq" = (/obj/machinery/light{dir = 8},/obj/structure/sign/warning/pods{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bzr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall,/area/hallway/primary/aft)
+"bzs" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bzt" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bzu" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/turf/open/floor/plating/airless,/area/quartermaster/miningoffice)
+"bzv" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/structure/plasticflaps,/turf/open/floor/plating/airless,/area/quartermaster/miningoffice)
+"bzw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bzx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Room"; req_access_txt = "63"},/turf/open/floor/plasteel/dark,/area/security/brig)
+"bzy" = (/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bzz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/gateway)
+"bzA" = (/obj/machinery/power/apc{areastring = "/area/medical/chemistry"; dir = 1; name = "Chemistry APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bzB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bzC" = (/obj/structure/closet/toolcloset,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bzD" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "evablock"; name = "EVA Router"},/turf/open/floor/plating,/area/router/eva)
+"bzE" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{dir = 4; id = "router_off"},/turf/open/floor/plating,/area/router)
+"bzF" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "router_off"},/turf/open/floor/plating,/area/router)
+"bzG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bzH" = (/obj/structure/disposalpipe/segment,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/disposal)
+"bzI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bzJ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bzK" = (/obj/machinery/disposal/bin{name = "Chapel Corpse Delivery"},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bzL" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bzM" = (/obj/structure/window/reinforced/spawner,/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bzN" = (/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bzO" = (/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycler Conveyor Control"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bzP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/router)
+"bzQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bzR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bzS" = (/obj/structure/table,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/gloves/color/latex,/obj/item/healthanalyzer,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bzT" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/central"; dir = 4; name = "Central Port Maintenance APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/port/central)
+"bzU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/machinery/meter,/turf/closed/wall,/area/hallway/primary/aft)
+"bzV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
+"bzW" = (/obj/machinery/vending/assist,/turf/open/floor/plating,/area/storage/tech)
+"bzX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "7;8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"bzY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/aft)
+"bzZ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice)
+"bAa" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bAb" = (/turf/open/floor/plating/airless,/area/science/xenobiology)
+"bAc" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway)
+"bAd" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bAe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/router)
+"bAf" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/science/xenobiology)
+"bAg" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall/r_wall,/area/science/xenobiology)
+"bAh" = (/obj/item/reagent_containers/food/condiment/pack/mustard{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/food/condiment/pack/ketchup{pixel_x = -2; pixel_y = 6},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -5; pixel_y = 7},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 1; pixel_y = 3},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bAi" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel,/area/router)
+"bAj" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/janitor)
+"bAk" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Recycler"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/maintenance/disposal)
+"bAl" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"bAm" = (/obj/effect/decal/cleanable/dirt,/obj/item/cigbutt,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel,/area/router)
+"bAn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"bAo" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bAp" = (/obj/structure/bed,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/bedsheet/purple,/obj/effect/landmark/start/janitor,/turf/open/floor/plasteel,/area/janitor)
+"bAq" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bAr" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bAs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bAt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Maintenance - Starboard"; pixel_x = 22},/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore)
+"bAu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bAv" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/bed,/obj/item/bedsheet/qm,/obj/effect/landmark/start/quartermaster,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bAw" = (/obj/item/paper/fluff/bee_objectives,/obj/item/toy/plush/beeplushie,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"bAx" = (/obj/machinery/conveyor{dir = 1; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bAy" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bAz" = (/obj/machinery/gateway{dir = 8},/turf/open/floor/engine,/area/gateway)
+"bAA" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"bAB" = (/obj/item/beacon,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bAC" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bAD" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/window/eastleft{name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bAE" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/light{dir = 8},/obj/machinery/button/door{id = "chem1"; name = "Shutters Control Button"; pixel_x = -8; pixel_y = 24; req_access_txt = "29"},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bAF" = (/obj/machinery/gateway/centerstation,/turf/open/floor/engine,/area/gateway)
+"bAG" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"bAH" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bAI" = (/obj/machinery/photocopier,/obj/machinery/requests_console{department = "Law Office"; name = "Law Office RC"; pixel_y = 32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"bAJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/clothing/neck/stethoscope,/obj/item/clothing/glasses/hud/health,/obj/item/stamp/cmo,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 1; name = "Chief Medical Officer's Office APC"; pixel_y = 24},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"bAK" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/disposal)
+"bAL" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: WASTE EJECTION"; pixel_x = -32},/turf/open/space/basic,/area/space)
+"bAM" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bAN" = (/obj/machinery/gateway{dir = 4},/turf/open/floor/engine,/area/gateway)
+"bAO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bAP" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
+"bAQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal)
+"bAR" = (/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator Room"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"bAS" = (/turf/closed/wall/r_wall/rust,/area/maintenance/disposal)
+"bAT" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bAU" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/mixing)
+"bAV" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel/white,/area/science/mixing)
+"bAW" = (/obj/structure/sign/poster/official/get_your_legs,/turf/closed/wall,/area/hallway/secondary/exit)
+"bAX" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/item/paper/fluff/cogstation/letter_cap{pixel_x = -2; pixel_y = 4},/obj/item/flashlight/lamp,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bAY" = (/obj/machinery/status_display,/turf/closed/wall,/area/hallway/secondary/exit)
+"bAZ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/chapel/main)
+"bBa" = (/obj/structure/sign/poster/official/help_others,/turf/closed/wall,/area/hallway/secondary/exit)
+"bBb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/grille/broken,/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel)
+"bBc" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/secondary/exit)
+"bBd" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/popcorn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bBe" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/sign/warning/pods{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bBf" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/storage/tech)
+"bBg" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech)
+"bBh" = (/obj/machinery/conveyor{dir = 1; id = "recycler"},/obj/structure/sign/warning/vacuum{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/disposal)
+"bBi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bBj" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/crew_quarters/heads/captain"; dir = 4; name = "Captain's Quarters APC"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
+"bBk" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bBl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/aft)
+"bBm" = (/obj/structure/chair,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
+"bBn" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bBo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"bBp" = (/obj/machinery/conveyor/inverted{dir = 9; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bBq" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bBr" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bBs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
+"bBt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bBu" = (/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bBv" = (/turf/closed/wall,/area/router)
+"bBw" = (/obj/structure/chair,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
+"bBx" = (/obj/structure/table,/obj/item/storage/toolbox/electrical,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/t_scanner,/turf/open/floor/plating,/area/storage/tech)
+"bBy" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bBz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bBA" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/ore_box,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bBB" = (/obj/machinery/conveyor/auto{id = "router"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 4},/turf/open/floor/plating,/area/router)
+"bBC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bBD" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bBE" = (/obj/structure/grille,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
+"bBF" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bBG" = (/obj/machinery/conveyor/inverted{dir = 10; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bBH" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bBI" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bBJ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology)
+"bBK" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/door{id = "recycleraccess"; name = "Recycler Access Control"; pixel_y = -24},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bBL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bBM" = (/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bBN" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{dir = 1},/turf/open/floor/engine,/area/science/mixing)
+"bBO" = (/turf/closed/wall/r_wall,/area/engine/engine_smes{name = "Power Monitoring"})
+"bBP" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/window/eastright{name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bBQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
+"bBR" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "Computer Core APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bBS" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bBT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bBU" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/sign/departments/cargo{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bBV" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bBW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bBX" = (/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bBY" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "EVA Router"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/eva)
+"bBZ" = (/turf/closed/wall,/area/hallway/secondary/exit)
+"bCa" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
+"bCb" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"bCc" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/router/eva)
+"bCd" = (/obj/effect/landmark/start/captain,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bCe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"bCf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bCg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bCh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central)
+"bCi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bCj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/disposal)
+"bCk" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/closed/wall,/area/maintenance/disposal)
+"bCl" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bCm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bCn" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/eva)
+"bCo" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva)
+"bCp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bCq" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/door/poddoor{id = "recycleraccess"; name = "Recycler Access"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bCr" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bCs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bCt" = (/obj/effect/turf_decal/bot,/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/item/storage/box/engineer{pixel_y = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"bCu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/eva)
+"bCv" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"bCw" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/turf/open/floor/plating,/area/router/eva)
+"bCx" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bCy" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/turf/open/floor/plating,/area/router/eva)
+"bCz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary)
+"bCA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bCB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal)
+"bCC" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/eva)
+"bCD" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bCE" = (/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "evablock"; name = "EVA Router"},/turf/open/floor/plating,/area/router/eva)
+"bCF" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
+"bCG" = (/obj/item/cigbutt,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bCH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bCI" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bCJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"bCK" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bCL" = (/turf/closed/wall/rust,/area/security/detectives_office)
+"bCM" = (/turf/closed/wall/r_wall/rust,/area/security/detectives_office)
+"bCN" = (/obj/structure/filingcabinet,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bCO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bCP" = (/obj/structure/table/wood,/obj/item/storage/briefcase,/obj/item/taperecorder,/obj/item/radio{pixel_x = -6},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bCQ" = (/obj/structure/table/wood,/obj/machinery/computer/med_data/laptop{dir = 8; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bCR" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "airbridge_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router)
+"bCS" = (/obj/structure/closet,/obj/machinery/camera{c_tag = "Central Plaza - Legal Desk"; dir = 1},/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bCT" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/sorting/mail/flip,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router)
+"bCU" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/maintenance/disposal)
+"bCV" = (/turf/open/floor/plating/airless,/area/maintenance/disposal)
+"bCW" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"bCX" = (/obj/machinery/rnd/production/circuit_imprinter/department/science,/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/lab)
+"bCY" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bCZ" = (/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router)
+"bDa" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bDb" = (/mob/living/simple_animal/mouse/white{desc = "Wubba lubba dub dub."; name = "Rick"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bDc" = (/obj/machinery/vending/security,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bDd" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Aft Maintenance - Port"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
+"bDe" = (/obj/machinery/disposal/bin{name = "Corpse Delivery"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/dark,/area/chapel/office)
+"bDf" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/service,/turf/open/floor/plating,/area/storage/tech)
+"bDg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/medical,/turf/open/floor/plating,/area/storage/tech)
+"bDh" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/turf/open/floor/plating,/area/storage/tech)
+"bDi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"bDj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/decal/cleanable/dirt,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/chapel)
+"bDk" = (/obj/machinery/light,/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 15},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"bDl" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bDm" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/primary/aft"; dir = 1; name = "Aft Primary Hallway APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft)
+"bDn" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"bDo" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bDp" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"bDq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"bDr" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"bDs" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"bDt" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"bDu" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/book/manual/wiki/barman_recipes,/obj/item/reagent_containers/rag,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bDv" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"bDw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"bDx" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDy" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bDz" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 1},/obj/machinery/camera{c_tag = "Service Hallway - Aft"; pixel_x = 22},/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDA" = (/turf/closed/wall/r_wall,/area/hallway/secondary/service)
+"bDB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"bDC" = (/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/router)
+"bDE" = (/obj/structure/closet/crate/freezer,/obj/item/reagent_containers/food/snacks/store/cheesewheel,/obj/item/reagent_containers/food/snacks/grown/pineapple,/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/bluecherries,/obj/item/reagent_containers/food/snacks/grown/citrus/lime,/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDF" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDG" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDH" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDI" = (/obj/structure/closet/crate/freezer,/obj/effect/spawner/lootdrop/three_course_meal,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"bDK" = (/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/service)
+"bDL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
+"bDM" = (/obj/structure/table/reinforced,/obj/item/transfer_valve{pixel_x = 6},/obj/item/transfer_valve{pixel_x = 6},/obj/item/transfer_valve,/obj/item/transfer_valve,/obj/item/transfer_valve{pixel_x = -6},/obj/item/transfer_valve{pixel_x = -6},/obj/machinery/camera{c_tag = "Toxins Lab - Starboard"; dir = 8; pixel_y = -22},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bDN" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bDO" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bDP" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/circuit,/area/bridge)
+"bDQ" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge)
+"bDR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge)
+"bDS" = (/turf/open/floor/plasteel/stairs,/area/crew_quarters/bar)
+"bDT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/science/robotics/lab)
+"bDU" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"bDV" = (/turf/open/floor/plasteel/stairs/left,/area/crew_quarters/bar)
+"bDW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "AI Chamber"; req_access_txt = "65"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
+"bDX" = (/turf/open/floor/plasteel/stairs/right,/area/crew_quarters/bar)
+"bDY" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar)
+"bDZ" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bEa" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"bEb" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"bEc" = (/obj/structure/table,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/item/radio/off{pixel_x = 7; pixel_y = -3},/obj/item/radio/off{pixel_x = 4; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit,/area/bridge)
+"bEd" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bEe" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/sorting/mail{dir = 4},/turf/open/floor/plating,/area/router)
+"bEf" = (/obj/structure/reagent_dispensers,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"bEg" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"bEh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router)
+"bEi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bEj" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/closet/crate,/obj/machinery/camera{c_tag = "Waste Disposal - Starboard"},/obj/item/stack/tile/noslip/thirty,/obj/structure/sign/poster/official/ue_no{pixel_y = 32},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/disposal)
+"bEk" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bEl" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bEm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"bEn" = (/obj/machinery/computer/card{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/security/checkpoint)
+"bEo" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bEp" = (/turf/closed/wall/r_wall,/area/maintenance/solars/starboard/fore)
+"bEq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bEr" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/crew_quarters/locker"; dir = 8; name = "Locker Room APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"bEs" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/eva"; dir = 4; name = "EVA APC"; pixel_x = 24},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"bEt" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"bEu" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"bEv" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"bEw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Starboard Bow Solar Maintenance"; dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"bEx" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router)
+"bEy" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4},/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"bEz" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"bEA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Starboard Bow Solar Maintenance"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
+"bEB" = (/obj/structure/rack,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/item/radio/off{pixel_x = 7; pixel_y = 4},/obj/item/flashlight,/obj/item/crowbar/red,/obj/item/crowbar/red{pixel_x = -6; pixel_y = 4},/obj/item/radio/off{pixel_x = -8},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/camera{c_tag = "Starboard Bow Maintenance - Port"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"bEC" = (/obj/structure/table/glass,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bED" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bEE" = (/obj/structure/table,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/red,/obj/item/clothing/gloves/boxing{pixel_y = 8},/obj/item/clothing/gloves/boxing{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bEF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bEG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"bEH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
+"bEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
+"bEJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bEK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
+"bEL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/disposal)
+"bEM" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"bEN" = (/obj/machinery/computer/communications{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/camera{c_tag = "Bridge - Captain's Quarters"; dir = 8; pixel_y = -22},/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = 30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bEO" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light_switch{pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"bEP" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/sign/poster/official/high_class_martini{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"bEQ" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal"; dir = 8; name = "Waste Disposal APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/disposal)
+"bER" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"bES" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"bET" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bEU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bEV" = (/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = 26},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"bEW" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room)
+"bEX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"bEY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bEZ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
+"bFa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/router)
+"bFb" = (/obj/structure/grille,/turf/open/floor/plating,/area/router)
+"bFc" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bFd" = (/obj/structure/closet/crate/trashcart,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bFe" = (/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bFf" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/aiModule/supplied/oxygen{pixel_x = 2; pixel_y = 10},/obj/item/aiModule/supplied/quarantine{pixel_x = 1; pixel_y = 8},/obj/item/aiModule/zeroth/oneHuman{pixel_y = 4},/obj/effect/spawner/lootdrop/aimodule_harmful{pixel_x = -1; pixel_y = 2},/obj/item/aiModule/supplied/protectStation{pixel_x = -2},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bFg" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bFh" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bFi" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bFj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
+"bFk" = (/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
+"bFl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/xenobiology)
+"bFm" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/paper_bin,/obj/item/pen/fourcolor,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bFn" = (/turf/open/floor/plating/asteroid,/area/chapel/main)
+"bFo" = (/obj/machinery/smartfridge/extract/preloaded,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bFp" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
+"bFq" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/slime_scanner,/obj/item/slime_scanner,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bFr" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/science/test_area)
+"bFs" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bFt" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bFu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
+"bFv" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bFw" = (/obj/machinery/monkey_recycler,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/xenobiology"; name = "Xenobiology Lab APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bFx" = (/obj/machinery/mecha_part_fabricator,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"bFy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bFz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/paper/guides/cogstation/janitor,/turf/open/floor/plasteel,/area/janitor)
+"bFA" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bFB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/science/lab)
+"bFC" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bFD" = (/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bFE" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
+"bFF" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech)
+"bFG" = (/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bFH" = (/obj/machinery/power/apc{name = "Customs APC"; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bFI" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bFJ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bFK" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFL" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFM" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFN" = (/obj/structure/chair{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bFO" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFP" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFQ" = (/obj/structure/table,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/gloves/boxing/blue{pixel_y = 8},/obj/item/clothing/gloves/boxing/blue{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bFR" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bFS" = (/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bFT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFU" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFV" = (/obj/structure/window/reinforced,/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFW" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"bFX" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bFY" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bFZ" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bGa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bGb" = (/obj/machinery/conveyor/auto{id = "router"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bGc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"bGd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
+"bGe" = (/mob/living/simple_animal/crab/Coffee,/turf/open/floor/plating/asteroid,/area/chapel/main)
+"bGf" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/main)
+"bGg" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bGh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"bGi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore)
+"bGj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
+"bGk" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/router)
+"bGl" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/contraband/punch_shit{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/fore)
+"bGm" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
+"bGn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"bGo" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"bGp" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"bGq" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
+"bGr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bGs" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"bGt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bGu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore)
+"bGv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Arcade"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"bGw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Fitness Room"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"bGx" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness)
+"bGy" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/obj/machinery/button/massdriver{id = "eng_in"; name = "mass driver button (Engineering)"; pixel_x = 24; pixel_y = -8},/obj/machinery/button/massdriver{id = "router_out"; name = "mass driver button (Other)"; pixel_x = 24; pixel_y = 12},/turf/open/floor/plasteel,/area/router)
+"bGz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
+"bGA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bGB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bGC" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Starboard Quarter Maintenance - Starboard"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bGD" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bGE" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bGF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Starboard Quarter Solar Access"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bGG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"bGH" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/port/fore)
+"bGI" = (/turf/closed/wall/r_wall,/area/hallway/primary/central)
+"bGJ" = (/obj/structure/rack,/obj/item/storage/box/bodybags,/obj/item/clothing/gloves/color/grey,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bGK" = (/obj/machinery/conveyor{id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"bGL" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bGM" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bGN" = (/obj/structure/closet/wardrobe/white,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bGO" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"bGP" = (/obj/machinery/mass_driver{dir = 1; id = "secserv"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"bGQ" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation)
+"bGR" = (/obj/structure/closet/wardrobe/grey,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bGS" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"bGT" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
+"bGU" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall,/area/maintenance/port/fore)
+"bGV" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/maintenance/port/fore)
+"bGW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/port/fore)
+"bGX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"bGZ" = (/obj/structure/closet/crate/internals,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/router/eva)
+"bHa" = (/obj/structure/closet/crate,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router/eva"; dir = 4; name = "EVA Router APC"; pixel_x = 24},/obj/machinery/button/door{id = "evablock"; name = "Router Access Control"; pixel_x = 24; pixel_y = 10; req_access_txt = "19"},/turf/open/floor/plasteel,/area/router/eva)
+"bHb" = (/obj/structure/closet/wardrobe/black,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/structure/window/reinforced/spawner/north,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bHd" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"bHe" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation)
+"bHf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHg" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bHh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main)
+"bHi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"bHj" = (/obj/structure/table,/obj/structure/bedsheetbin/towel,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHk" = (/turf/closed/wall,/area/crew_quarters/locker)
+"bHl" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore)
+"bHm" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/port/fore)
+"bHn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bHo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHp" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bHq" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHr" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHs" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHt" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bHu" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHv" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHw" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHx" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light,/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
+"bHz" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bHA" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
+"bHB" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/locker)
+"bHC" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bHD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/aft)
+"bHE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bHF" = (/obj/structure/table/reinforced,/obj/item/assembly/timer{pixel_x = -5},/obj/item/assembly/timer{pixel_y = -7},/obj/item/assembly/timer{pixel_y = 6},/obj/item/assembly/timer{pixel_x = 8},/obj/machinery/airalarm/unlocked{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bHG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/maintenance/aft)
+"bHH" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/sign/poster/contraband/space_cube{pixel_y = 32},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway)
+"bHI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bHJ" = (/obj/item/kirbyplants{icon_state = "plant-03"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bHK" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/morgue)
+"bHL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bHM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/tech)
+"bHN" = (/turf/closed/wall,/area/maintenance/solars/starboard/aft)
+"bHO" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
+"bHP" = (/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bHQ" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bHR" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bHS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
+"bHT" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bHU" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bHV" = (/obj/machinery/processor/slime,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bHW" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bHX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Bow Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"bHY" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bHZ" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/science/test_area)
+"bIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bIb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bIc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 14},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bId" = (/obj/structure/table,/obj/item/mmi,/obj/item/mmi,/obj/item/storage/box/bodybags,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"bIe" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty{pixel_x = 1},/obj/item/stack/sheet/glass/fifty{pixel_x = 1},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 31; receive_ore_updates = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/robotics/lab)
+"bIf" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/door/airlock/maintenance{name = "Chemistry Maintenance"; req_access_txt = "5; 33"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/chemistry)
+"bIg" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/reagent_containers/food/snacks/chips,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bIh" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery/white,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bIi" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry)
+"bIj" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"bIk" = (/turf/closed/wall/r_wall,/area/science/robotics/lab)
+"bIl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bIm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bIn" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bIo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/evac{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/aft)
+"bIp" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/aft)
+"bIq" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bIr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bIs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bIt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bIu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5;6"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bIv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bIw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bIx" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bIy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "External Solar Access"; req_access_txt = "10;13"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bIz" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bIA" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bIB" = (/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bIC" = (/obj/machinery/conveyor/auto{id = "disposal"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"bID" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"bIE" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
+"bIF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bIG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bIH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bII" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bIJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bIK" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bIL" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bIM" = (/obj/machinery/shower{desc = "The HS-451. Standard Nanotrasen Hygiene Division design, although it looks like this one was installed more recently."; dir = 8; name = "emergency shower"; pixel_y = -4},/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/chemistry)
+"bIN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bIO" = (/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bIP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bIQ" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bIR" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bIS" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bIT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation)
+"bIU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bIV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bIW" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/reagent_containers/food/drinks/bottle/absinthe,/obj/item/stack/spacecash/c20,/obj/item/coin/gold,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"bIX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bIY" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space)
+"bIZ" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bJa" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bJb" = (/obj/machinery/bloodbankgen,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bJc" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bJd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bJe" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bJf" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Maintenance"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/medical/chemistry)
+"bJg" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/box/rxglasses{pixel_x = 2},/obj/item/pen,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bJh" = (/obj/structure/sign/warning/biohazard,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical/morgue)
+"bJi" = (/obj/structure/bodycontainer/morgue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bJj" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bJk" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bJl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bJm" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 1; name = "Information Office APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bJn" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bJo" = (/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"bJp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
+"bJq" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"bJr" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
+"bJs" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bJt" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bJu" = (/obj/effect/turf_decal/loading_area,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/lab"; dir = 8; name = "Research and Development APC"; pixel_x = -24},/turf/open/floor/plasteel/white,/area/science/lab)
+"bJv" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bJw" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bJx" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bJy" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bJz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/circuit)
+"bJA" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Circuitry Lab"; req_access_txt = "47"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/circuit)
+"bJB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bJC" = (/obj/machinery/camera{c_tag = "Library"; network = list("ss13","rd")},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/wood,/area/library)
+"bJD" = (/obj/machinery/disposal/bin{name = "Corpse Disposal Unit"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/red/full,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"bJE" = (/obj/machinery/mecha_part_fabricator,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"bJF" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bJG" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bJH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
+"bJI" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bJJ" = (/obj/machinery/computer/med_data,/obj/structure/window/reinforced/spawner/east,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central)
+"bJK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
+"bJL" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/bot,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central)
+"bJM" = (/obj/machinery/camera/preset/toxins{dir = 4},/obj/item/target,/turf/open/floor/plating/airless,/area/science/test_area)
+"bJN" = (/obj/machinery/clonepod,/obj/effect/turf_decal/bot,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/medical/medbay/central)
+"bJO" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24},/obj/item/storage/firstaid/radbgone,/obj/item/reagent_containers/glass/beaker/synthflesh,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central)
+"bJP" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bJQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bJR" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bJS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"bJT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bJU" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bJV" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 1; name = "euthanization chamber freezer"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bJW" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bJX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bJY" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"bJZ" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/camera{c_tag = "Xenobiology - Main Access"; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bKa" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bKb" = (/obj/machinery/chem_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bKc" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bKd" = (/obj/structure/table,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bKe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/science/robotics/lab)
+"bKf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bKg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bKh" = (/obj/machinery/door/window/westleft{name = "Operating Theatre"; req_access_txt = "45"},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"bKi" = (/obj/machinery/disposal/bin{name = "Morgue Delivery Bin"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bKj" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bKk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue Maintenance"; req_access_txt = "6"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bKl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/plating,/area/router)
+"bKm" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/storage/box/bodybags,/obj/structure/table,/obj/structure/table,/obj/item/bodybag,/obj/item/pen/blue,/obj/item/pen/red{pixel_y = 6},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bKn" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bKo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/quartermaster/miningoffice)
+"bKp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop)
+"bKq" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bKr" = (/obj/item/stack/packageWrap,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/router)
+"bKs" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bKt" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bKu" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bKv" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bKw" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/sign/poster/official/nanotrasen_logo{pixel_y = -32},/turf/open/floor/wood,/area/library)
+"bKx" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bKy" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bKz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/genetics)
+"bKA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/genetics)
+"bKB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bKC" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/genetics)
+"bKD" = (/obj/machinery/door/airlock/external/glass{name = "Mining Dock Ferry"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bKE" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
+"bKF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
+"bKG" = (/obj/machinery/computer/cargo/request{dir = 1},/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = -8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
+"bKH" = (/obj/item/beacon,/turf/open/floor/plating/airless,/area/science/test_area)
+"bKI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/engine,/area/science/mixing)
+"bKJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/hop)
+"bKK" = (/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/crew_quarters/heads/hop)
+"bKL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/router)
+"bKM" = (/turf/open/floor/engine,/area/science/xenobiology)
+"bKN" = (/obj/structure/table,/obj/item/storage/backpack/duffelbag/med/surgery,/obj/structure/window/reinforced/spawner/west,/obj/structure/window/reinforced,/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"bKO" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"bKP" = (/obj/machinery/door/window/southright,/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"bKQ" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"bKR" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/library)
+"bKS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bKT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bKU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/wardrobe/gene_wardrobe,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bKV" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/clipboard{pixel_y = 3},/obj/item/paper_bin,/obj/item/hand_labeler,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bKW" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/folder/white,/obj/item/storage/pill_bottle/mannitol{pixel_x = 4},/obj/item/storage/pill_bottle/mutadone,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bKX" = (/obj/structure/table_frame,/obj/item/t_scanner{pixel_x = -4},/obj/machinery/camera{c_tag = "Supply - Warehouse Fore"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bKY" = (/turf/closed/wall,/area/medical/genetics)
+"bKZ" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bLa" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bLb" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/stack/ore/glass,/obj/item/stack/ore/iron,/obj/item/stack/ore/silver,/obj/item/stack/ore/silver,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bLc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bLd" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/science/xenobiology)
+"bLe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hop)
+"bLf" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bLg" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bLh" = (/obj/structure/bed,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/item/bedsheet/captain,/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bLi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"bLj" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bLk" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bLl" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bLm" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bLn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/caution,/obj/item/shovel,/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bLo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bLp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"bLq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bLr" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bLs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bLt" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bLu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bLv" = (/obj/machinery/light,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bLw" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bLx" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/science/mixing)
+"bLy" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/engine,/area/science/xenobiology)
+"bLz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bLA" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/table,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass,/obj/item/flashlight,/obj/item/assembly/health,/obj/item/assembly/voice,/obj/item/assembly/timer,/obj/item/assembly/infra,/obj/item/assembly/igniter,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bLB" = (/obj/machinery/light,/obj/item/target,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/science/test_area)
+"bLC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bLD" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft)
+"bLE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/button/ignition/incinerator/toxmix{pixel_x = -24; pixel_y = 8},/obj/machinery/button/door/incinerator_vent_toxmix{pixel_x = -24; pixel_y = -2},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"bLF" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"bLG" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Research Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bLH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bLI" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"bLJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bLK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bLL" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bLM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/genetics)
+"bLN" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bLO" = (/obj/item/pipe{pixel_x = -3},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/mob/living/simple_animal/bot/cleanbot{auto_patrol = 1; icon_state = "cleanbot1"; name = "Mopficcer Sweepsky"},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bLP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bLQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bLR" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bLS" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bLT" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bLU" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bLV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bLW" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"bLX" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bLY" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bLZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bMa" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bMb" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bMc" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bMd" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bMe" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bMf" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bMg" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"bMh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bMi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"bMj" = (/turf/closed/wall,/area/medical/medbay/central)
+"bMk" = (/turf/closed/wall,/area/medical/virology)
+"bMl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/virology)
+"bMm" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/clothing/under/misc/assistantformal{pixel_y = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"bMn" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Monkey Pen"; req_one_access_txt = "9;39"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMo" = (/obj/structure/closet/l3closet/virology,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMp" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bMq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Quarter Maintenance - Port"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bMr" = (/obj/machinery/vending/wardrobe/viro_wardrobe,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMs" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMt" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bMu" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMv" = (/turf/open/floor/grass,/area/medical/virology)
+"bMw" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology)
+"bMx" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bMy" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bMz" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router"; dir = 4; name = "Router APC"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 19},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/router)
+"bMA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/router)
+"bMC" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMD" = (/obj/structure/flora/tree/palm,/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/medical/virology)
+"bME" = (/obj/structure/flora/tree/palm,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/grass,/area/medical/virology)
+"bMF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/southright{name = "Cloning Access"; req_one_access_txt = "9;45"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bMG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bMH" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/crowbar,/obj/machinery/requests_console{department = "Mining"; name = "Mining RC"; pixel_x = -30},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bMI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 15},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router)
+"bMJ" = (/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMK" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation)
+"bML" = (/obj/structure/flora/tree/palm,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology)
+"bMM" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
+"bMN" = (/obj/structure/closet/l3closet/virology,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMO" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMP" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bMR" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/rust,/area/router)
+"bMT" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMU" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bMV" = (/obj/machinery/light,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology)
+"bMW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router)
+"bMX" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bMY" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
+"bMZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
+"bNa" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
+"bNb" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
+"bNc" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/virologist,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNd" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos)
+"bNe" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/door/window/northleft{name = "AI Upload Chamber"; req_one_access_txt = "65"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
+"bNf" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/router)
+"bNg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNi" = (/obj/effect/landmark/blobstart,/turf/open/floor/grass,/area/medical/virology)
+"bNj" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNk" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bNl" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/turf/open/floor/plating,/area/router)
+"bNm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/paper_bin,/obj/item/pen/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNn" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/mass_driver{dir = 4; id = "router_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router)
+"bNo" = (/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"bNp" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"bNq" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"bNr" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/structure/bedsheetbin,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"bNs" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bNu" = (/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/medical/virology)
+"bNv" = (/obj/structure/sink{dir = 1; pixel_y = 25},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"bNw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNx" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNy" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNz" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNA" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNB" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/item/clothing/gloves/color/latex,/obj/item/healthanalyzer,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNC" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bND" = (/obj/machinery/computer/pandemic,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNE" = (/obj/machinery/computer/station_alert{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos)
+"bNF" = (/turf/open/floor/plasteel/stairs,/area/medical/medbay/central)
+"bNG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"bNH" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"bNI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/departments/evac,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"bNJ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit)
+"bNK" = (/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft)
+"bNL" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/aft)
+"bNM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel,/area/maintenance/port/fore)
+"bNN" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/router/eva)
+"bNO" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bNP" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"bNQ" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"bNR" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"bNS" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/aft)
+"bNT" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port/fore)
+"bNU" = (/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft)
+"bNV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bNW" = (/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/exit)
+"bNX" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit)
+"bNY" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/exit)
+"bNZ" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit)
+"bOa" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"bOc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/port)
+"bOd" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/aft)
+"bOe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/port)
+"bOg" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOh" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOi" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOk" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/aft)
+"bOl" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOm" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOn" = (/obj/machinery/door/airlock/external/glass{name = "Shuttle Maintenance Access"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/docking,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"bOp" = (/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bOq" = (/obj/machinery/power/tracker,/obj/structure/cable,/turf/open/floor/plating/airless,/area/solar/starboard/aft)
+"bOr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/closed/wall/r_wall,/area/science/mixing)
+"bOs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/bz,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"bOt" = (/obj/structure/table,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/gateway)
+"bOu" = (/obj/structure/table/reinforced,/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 30; receive_ore_updates = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bOv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/mixing)
+"bOw" = (/obj/structure/lattice,/obj/item/reagent_containers/food/drinks/bottle/grappa,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"bOx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"})
+"bOy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"bOz" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bOA" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"bOB" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/router/eva)
+"bOC" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/router/eva)
+"bOD" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/obj/machinery/sparker/toxmix{pixel_x = 25},/turf/open/floor/engine/vacuum,/area/science/mixing)
+"bOE" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
+"bOF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bOG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bOH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bOI" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/computer/security/telescreen{dir = 1; name = "Test Chamber Monitor"; network = list("xeno"); pixel_y = 2},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bOJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/pet/cat/space,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bOK" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northright{name = "Secure Xenobiological Containment"; req_one_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bOL" = (/obj/machinery/computer/card{dir = 8},/obj/machinery/keycard_auth{pixel_x = 8; pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"bOM" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/science/xenobiology)
+"bON" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bOO" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/science/explab)
+"bOP" = (/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/science/xenobiology)
+"bOQ" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
+"bOR" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/card/id/captains_spare,/obj/item/hand_tele,/obj/item/disk/nuclear,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
+"bOS" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/storage/photo_album/Captain,/obj/item/camera{pixel_y = -6},/obj/item/stamp/captain,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
+"bOT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/engine,/area/science/xenobiology)
+"bOU" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/science/xenobiology)
+"bOV" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/eva)
+"bOW" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/engine,/area/science/xenobiology)
+"bOX" = (/obj/structure/table/reinforced,/obj/item/electropack,/obj/item/assembly/signaler,/turf/open/floor/engine,/area/science/xenobiology)
+"bOY" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/camera{c_tag = "Customs - Aft"; dir = 4},/obj/structure/window/reinforced/spawner,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"bOZ" = (/obj/structure/bed,/obj/item/bedsheet/purple,/turf/open/floor/engine,/area/science/xenobiology)
+"bPa" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology)
+"bPb" = (/obj/structure/table/reinforced,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/turf/open/floor/engine,/area/science/xenobiology)
+"bPc" = (/obj/structure/chair/comfy/black,/turf/open/floor/engine,/area/science/xenobiology)
+"bPd" = (/obj/structure/table/reinforced,/obj/item/book/random/triple,/turf/open/floor/engine,/area/science/xenobiology)
+"bPe" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/engine,/area/science/xenobiology)
+"bPf" = (/obj/machinery/light,/turf/open/floor/engine,/area/science/xenobiology)
+"bPg" = (/obj/structure/chair{dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
+"bPh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
+"bPi" = (/obj/structure/chair{dir = 8},/turf/open/floor/engine,/area/science/xenobiology)
+"bPj" = (/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,/obj/machinery/light,/turf/open/floor/engine,/area/science/xenobiology)
+"bPk" = (/obj/structure/table/reinforced,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/suit/apron/surgical,/turf/open/floor/engine,/area/science/xenobiology)
+"bPl" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/book/manual/wiki/research_and_development,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bPm" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bPn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bPo" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating/airless,/area/space/nearstation)
+"bPp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/structure/window/reinforced/spawner/north,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
+"bPq" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/mineral/stacking_machine{input_dir = 2},/turf/open/floor/plating,/area/maintenance/disposal)
+"bPr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bPs" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
+"bPt" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/bridge)
+"bPu" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
+"bPv" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/t_scanner{pixel_x = -6; pixel_y = 4},/obj/item/t_scanner{pixel_x = -4},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"bPw" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft)
+"bPx" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/primary)
+"bPy" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"bPz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"bPA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bPB" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"bPC" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Waste In"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"bPD" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Escape Hall - Fore"; dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bPE" = (/obj/structure/table/glass,/obj/item/clipboard,/obj/item/storage/crayons,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bPF" = (/obj/structure/table/glass,/obj/item/storage/fancy/cigarettes,/obj/item/lighter{pixel_x = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bPG" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bPH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bPI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bPJ" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"bPK" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bPL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"bPM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/tech)
+"bPN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
+"bPO" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/red,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
+"bPP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/medbay/central)
+"bPQ" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bPR" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bPS" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bPT" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
+"bPU" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
+"bPV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
+"bPW" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/vehicle/ridden/atv,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bPX" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 9},/turf/open/space/basic,/area/space/nearstation)
+"bPY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bPZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/sorting/mail{sortType = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bQa" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bQb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/motion{c_tag = "AI Foyer"; network = list("minisat"); pixel_x = 22},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = 24; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"bQc" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bQd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bQe" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation)
+"bQf" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"bQg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sci"; location = "market"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bQh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bQi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bQj" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/machinery/light_switch{pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bQk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bQl" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bQm" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bQn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bQo" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"bQp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/maintenance/aft)
+"bQq" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/structure/table/wood,/obj/machinery/airalarm{pixel_y = 24},/obj/item/modular_computer/laptop/preset/civilian,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper/guides/cogstation/letter_atmos,/turf/open/floor/plasteel,/area/engine/break_room)
+"bQr" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bQs" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"bQt" = (/obj/machinery/conveyor/auto{dir = 5; id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bQu" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bQv" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bQw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bQx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bQy" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bQz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bQA" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bQB" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/weldingtool,/obj/item/wrench/medical,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bQC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bQD" = (/obj/machinery/power/apc{name = "Tech Storage APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/tech)
+"bQE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft)
+"bQF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"bQH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"bQI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bQJ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/power/apc{name = "Medbay Treatment Center APC"; pixel_y = -24},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bQK" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/atmospheric_technician,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"bQL" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bQM" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room)
+"bQN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation)
+"bQO" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation)
+"bQP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bQQ" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab)
+"bQR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/evac{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/aft)
+"bQS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation)
+"bQT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{frequency = 1447; name = "Station Intercom (AI Private)"; pixel_y = 24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/status_display{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bQU" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"bQV" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation)
+"bQW" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/turf/open/floor/plating,/area/router)
+"bQX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bQY" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bQZ" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/landmark/start/scientist,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bRa" = (/obj/item/cigbutt,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"bRb" = (/obj/machinery/door/window/southleft{name = "Captain's Equipment"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
+"bRc" = (/obj/machinery/suit_storage_unit/captain,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
+"bRd" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/storage"; dir = 4; name = "Canister Storage APC"; pixel_x = 24},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"bRe" = (/obj/machinery/computer/security/wooden_tv,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bRf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bRg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bRh" = (/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"bRi" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bRj" = (/obj/machinery/atmospherics/components/trinary/filter/flipped,/turf/open/floor/plasteel/white,/area/science/mixing)
+"bRk" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/science/mixing)
+"bRl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/router)
+"bRm" = (/obj/structure/closet/bombcloset,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bRn" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"bRo" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation)
+"bRp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation)
+"bRq" = (/obj/machinery/portable_atmospherics/scrubber/huge/movable,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bRr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bRs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bRt" = (/obj/structure/closet/wardrobe/miner,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/miningoffice"; dir = 8; name = "Mining Office APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bRu" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bRv" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation)
+"bRw" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bRx" = (/obj/structure/table,/obj/item/circuitboard/machine/cyborgrecharger,/obj/item/disk/design_disk,/obj/machinery/camera/motion{c_tag = "Computer Core"; dir = 1; network = list("minisat")},/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
+"bRy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bRz" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bRA" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bRB" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bRC" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
+"bRD" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/bridge)
+"bRE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router)
+"bRF" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"bRG" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"bRH" = (/obj/structure/chair/sofa/right,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"bRI" = (/turf/closed/wall/r_wall,/area/medical/medbay/central)
+"bRJ" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/assistant,/obj/machinery/status_display{pixel_y = 32},/obj/machinery/camera{c_tag = "Medbay - Waiting Room"; network = list("ss13","rd")},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"bRK" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/vacuum,/area/engine/atmos)
+"bRL" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bRM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/science/research{name = "Research Sector"})
+"bRN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/medium,/area/science/research{name = "Research Sector"})
+"bRO" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bRP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"bRQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"bRR" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bRS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bRT" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin{name = "Lab Delivery"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bRU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"bRV" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark/side{dir = 9},/area/science/robotics/lab)
+"bRW" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bRX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bRY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bRZ" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library)
+"bSa" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/storage/belt/medolier,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bSb" = (/turf/open/floor/engine/n2o,/area/engine/atmos)
+"bSc" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bSd" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel/dark/side{dir = 1},/area/science/robotics/lab)
+"bSe" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark/side{dir = 1},/area/science/robotics/lab)
+"bSf" = (/obj/structure/table,/obj/item/analyzer,/obj/item/healthanalyzer,/obj/item/plant_analyzer,/obj/item/aicard,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/turf/open/floor/plating,/area/storage/tech)
+"bSg" = (/obj/machinery/rnd/production/techfab/department/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bSh" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/medbay/central)
+"bSi" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/n2o,/area/engine/atmos)
+"bSj" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/obj/machinery/camera{c_tag = "Xenobiology - Kill Chamber"; dir = 4},/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
+"bSk" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "AI Access"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSl" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bSm" = (/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"bSn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
+"bSo" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
+"bSp" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
+"bSq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"bSr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSt" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"bSv" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
+"bSw" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
+"bSx" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plasteel,/area/engine/break_room)
+"bSy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bSz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 11},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router)
+"bSA" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/central)
+"bSB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/hallway/primary/central)
+"bSC" = (/turf/closed/wall,/area/science/lab)
+"bSD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/router)
+"bSE" = (/turf/closed/wall/r_wall,/area/science/lab)
+"bSF" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router)
+"bSG" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/lab)
+"bSH" = (/obj/structure/sign/departments/science,/turf/closed/wall/r_wall,/area/science/lab)
+"bSI" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/router)
+"bSJ" = (/obj/structure/closet/crate/science,/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/science/circuit"; dir = 1; name = "Circuitry Lab APC"; pixel_y = 24},/turf/open/floor/plasteel/white,/area/science/circuit)
+"bSK" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/white,/area/science/lab)
+"bSL" = (/turf/open/floor/plasteel/white,/area/science/lab)
+"bSM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel/white,/area/science/lab)
+"bSN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/item/folder/white,/obj/item/disk/design_disk,/obj/item/disk/design_disk,/obj/item/disk/tech_disk,/obj/item/disk/tech_disk,/turf/open/floor/plasteel/white,/area/science/lab)
+"bSO" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "AI Access"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSP" = (/obj/machinery/computer/rdconsole/core,/turf/open/floor/plasteel,/area/science/lab)
+"bSQ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab)
+"bSR" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/science/lab)
+"bSS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
+"bST" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
+"bSU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
+"bSV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"bSW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bSX" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28; pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bSY" = (/obj/structure/table,/obj/item/stock_parts/micro_laser{pixel_x = 4},/obj/item/stock_parts/micro_laser{pixel_x = 4},/obj/item/stock_parts/scanning_module{pixel_x = -6},/obj/item/stock_parts/scanning_module{pixel_x = -6},/obj/item/stock_parts/capacitor,/obj/item/stock_parts/capacitor,/turf/open/floor/plasteel/white,/area/science/lab)
+"bSZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab)
+"bTa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
+"bTb" = (/turf/open/floor/plasteel,/area/science/lab)
+"bTc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/lab)
+"bTd" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
+"bTe" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
+"bTf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab)
+"bTg" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"bTh" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab)
+"bTi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 5},/area/science/robotics/lab)
+"bTj" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/science/lab)
+"bTk" = (/obj/item/rack_parts,/obj/structure/table_frame,/obj/item/flashlight,/obj/item/flashlight,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 1; name = "Warehouse APC"; pixel_y = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bTl" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/white,/area/science/lab)
+"bTm" = (/obj/machinery/disposal/bin,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab)
+"bTn" = (/obj/effect/turf_decal/delivery,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab)
+"bTo" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/debugger,/turf/open/floor/plasteel/white,/area/science/circuit)
+"bTp" = (/obj/machinery/vending/wardrobe/law_wardrobe,/obj/effect/turf_decal/bot,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bTq" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/circuit)
+"bTr" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/circuit)
+"bTs" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/circuit)
+"bTt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/central)
+"bTu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bTv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bTw" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bTx" = (/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 14},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bTy" = (/obj/item/kirbyplants,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bTz" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bTA" = (/obj/structure/filingcabinet/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bTB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
+"bTC" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bTD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bTE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bTF" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bTG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/circuit)
+"bTH" = (/turf/open/floor/engine/plasma,/area/engine/atmos)
+"bTI" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/plasma,/area/engine/atmos)
+"bTJ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"bTK" = (/turf/open/floor/engine/co2,/area/engine/atmos)
+"bTL" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/co2,/area/engine/atmos)
+"bTM" = (/obj/structure/table,/obj/machinery/light,/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 6},/obj/item/storage/toolbox/mechanical,/obj/machinery/camera{c_tag = "Research - Development Lab"; dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_y = -30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/science/lab)
+"bTN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/science/circuit)
+"bTO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"bTP" = (/obj/machinery/disposal/bin,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit)
+"bTQ" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel/white,/area/science/circuit)
+"bTR" = (/turf/closed/wall/r_wall,/area/science/circuit)
+"bTS" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/item/stock_parts/cell/high/plus,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bTT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/hallway/primary/central)
+"bTU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bTV" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bTW" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
+"bTX" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bTY" = (/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
+"bTZ" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
+"bUa" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics - Entrance"},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/engine/atmos)
+"bUb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bUc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bUd" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bUe" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating/airless,/area/router/aux)
+"bUf" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/sorting)
+"bUg" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"bUh" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bUi" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bUj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bUk" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bUl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bUm" = (/obj/structure/closet/crate/internals,/obj/item/tank/internals/emergency_oxygen/double,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bUn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/hallway/primary/aft)
+"bUo" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/space/nearstation)
+"bUp" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{id = "router"},/turf/open/floor/plating,/area/router)
+"bUq" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft)
+"bUr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/hallway/primary/aft)
+"bUs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bUt" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/dark/side{dir = 4},/area/hallway/primary/central)
+"bUu" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/gateway)
+"bUv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/aft)
+"bUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bUx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"bUy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bUz" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/aft)
+"bUA" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/solars/port)
+"bUB" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/engine/engine_smes"; dir = 1; name = "Power Monitoring APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"bUC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bUD" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bUE" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/aft)
+"bUF" = (/obj/machinery/doppler_array/research/science{dir = 8},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/mixing)
+"bUG" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/storage/primary)
+"bUH" = (/obj/machinery/shieldgen,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bUI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bUJ" = (/obj/effect/landmark/event_spawn,/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/science/lab)
+"bUK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Quartermaster's Office"; req_access_txt = "31;41"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bUL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bUM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/qm)
+"bUN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/door/airlock/engineering{name = "Primary Tool Storage"; req_access_txt = "11"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"bUO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/power/apc{areastring = "/area/storage/primary"; dir = 1; name = "Primary Tool Storage APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/primary)
+"bUP" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/quartermaster/sorting)
+"bUQ" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "DeliveryDoor"; name = "Cargo Delivery Door Control"; pixel_x = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bUR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/mob/living/simple_animal/bot/firebot,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bUS" = (/obj/structure/closet/secure_closet/quartermaster,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/item/clothing/suit/space/eva,/obj/item/clothing/head/helmet/space/eva,/obj/item/paper/fluff/cogstation/letter_qm,/turf/open/floor/plasteel,/area/quartermaster/qm)
+"bUT" = (/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1},/obj/structure/filingcabinet/filingcabinet,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bUU" = (/obj/item/beacon,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bUV" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"bUW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/aft"; dir = 1; name = "Starboard Quarter Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bUX" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bUY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/item/grown/bananapeel,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
+"bUZ" = (/obj/structure/reagent_dispensers/watertank,/obj/item/wirecutters,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bVa" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/router)
+"bVb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/horizontal,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"bVc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bVd" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bVe" = (/obj/machinery/photocopier,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"bVf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring"; dir = 1},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"bVg" = (/obj/machinery/power/emitter,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bVh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bVi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bVj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"bVk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bVl" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bVm" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bVn" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"bVo" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bVp" = (/obj/machinery/computer/card/minor/rd{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"bVq" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bVr" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bVs" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bVt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bVu" = (/obj/effect/decal/cleanable/dirt,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/router)
+"bVv" = (/obj/structure/sign/departments/xenobio{pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"bVw" = (/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bVx" = (/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bVy" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"bVz" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher{pixel_x = -4},/obj/item/crowbar/red{pixel_x = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bVA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/router)
+"bVB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bVC" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "AI SMES Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bVD" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bVE" = (/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/atmos)
+"bVF" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bVG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bVH" = (/obj/effect/landmark/event_spawn,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/janitor)
+"bVI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bVJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bVK" = (/obj/item/restraints/legcuffs/beartrap,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"bVL" = (/obj/effect/turf_decal/delivery,/obj/structure/noticeboard/rd{pixel_y = 28},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bVM" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bVN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
+"bVO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bVP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bVQ" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bVR" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bVS" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bVT" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bVU" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/lawoffice)
+"bVV" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"bVW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/aft)
+"bVX" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"bVY" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Primary Tool Storage Desk"; req_access_txt = "11"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/primary)
+"bVZ" = (/obj/machinery/power/apc{name = "Cargo Bay APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"bWa" = (/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"})
+"bWb" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWc" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWd" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/poster/official/wtf_is_co2{pixel_y = 32},/turf/open/floor/plasteel,/area/science/explab)
+"bWe" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/turf/open/floor/plasteel,/area/bridge)
+"bWf" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bWg" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Law Office"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"bWh" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"bWi" = (/obj/structure/table/wood,/obj/item/cartridge/lawyer{pixel_x = 2; pixel_y = 8},/obj/item/stamp/law,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"bWj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"bWk" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"bWl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Toxins Storage"; req_access_txt = "7;8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/science/mixing)
+"bWm" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "AI SMES Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bWn" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bWo" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWp" = (/obj/machinery/atmospherics/miner/n2o,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engine/atmos)
+"bWq" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Routing Depot - Aft Exterior"; pixel_x = 22},/turf/open/space/basic,/area/space/nearstation)
+"bWr" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Research Entrance"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWs" = (/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bWu" = (/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bWv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation)
+"bWw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/lawoffice)
+"bWx" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWy" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWz" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWA" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWB" = (/obj/structure/rack,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWC" = (/obj/machinery/shower{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWD" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Medbay"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bWE" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bWF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bWG" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"bWH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/central)
+"bWI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bWJ" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bWK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plating,/area/engine/atmos)
+"bWL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWM" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/camera{c_tag = "Central Hall - AI Access"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bWN" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
+"bWO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bWP" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Computer Core"; req_access_txt = "30"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bWQ" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating/airless,/area/space/nearstation)
+"bWR" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"})
+"bWS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing)
+"bWT" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWU" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWV" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWW" = (/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWX" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bWY" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"bWZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/hallway/primary/aft)
+"bXa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/multitool{pixel_y = 4},/obj/item/book/manual/wiki/robotics_cyborgs,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bXb" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bXc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"bXd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
+"bXe" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos)
+"bXf" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/button/door{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"; pixel_x = 24; pixel_y = -6; req_access_txt = "11"},/obj/machinery/button/door{name = "Privacy Shutters"; pixel_x = 24; pixel_y = 6},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"bXg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/closed/wall/r_wall,/area/science/mixing)
+"bXh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXi" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bXj" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
+"bXk" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bXl" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXm" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bXn" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bXo" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/router)
+"bXq" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"bXr" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Research Fore"; dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXs" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"bXt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft)
+"bXu" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft)
+"bXv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft)
+"bXw" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bXx" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXy" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXz" = (/obj/machinery/power/apc{name = "Medbay Lobby APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/aft)
+"bXA" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXB" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXC" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bXD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bXE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bXF" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/checkpoint/supply)
+"bXG" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"bXH" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hydroponics)
+"bXI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
+"bXJ" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXK" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/machinery/light,/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/maintenance/aft)
+"bXM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router)
+"bXN" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft)
+"bXO" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/camera{c_tag = "Xenobiology - Fore"; dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bXP" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/space/nearstation)
+"bXQ" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXR" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos)
+"bXS" = (/obj/structure/closet/bombcloset,/obj/machinery/camera{c_tag = "Toxins Lab - Access"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/mixing)
+"bXT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bXU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/research{name = "Research Sector"})
+"bXV" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/space/nearstation)
+"bXW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bXX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bXY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bXZ" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/paper_bin,/obj/item/radio/headset/headset_sci,/obj/item/radio/headset/headset_sci,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYa" = (/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bYc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/research{name = "Research Sector"})
+"bYd" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/central)
+"bYe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bYf" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 8; id = "router"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router)
+"bYg" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/science/mixing)
+"bYh" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bYi" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/recharger,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bYk" = (/obj/machinery/vending/wardrobe/science_wardrobe,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYl" = (/obj/structure/lattice,/obj/structure/disposalpipe/sorting/mail/flip{sortType = 6},/turf/open/space/basic,/area/space/nearstation)
+"bYm" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bYn" = (/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bYo" = (/obj/structure/disposalpipe/segment,/obj/machinery/computer/mech_bay_power_console,/turf/open/floor/circuit/green,/area/science/robotics/mechbay)
+"bYp" = (/turf/open/floor/plasteel/recharge_floor,/area/science/robotics/mechbay)
+"bYq" = (/obj/machinery/light/small{dir = 1},/obj/machinery/mech_bay_recharge_port{dir = 8},/turf/open/floor/circuit/green,/area/science/robotics/mechbay)
+"bYr" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYs" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Toxins Lab Access"; req_access_txt = "7;8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
+"bYt" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bYu" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYv" = (/turf/closed/wall,/area/science/robotics/mechbay)
+"bYw" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
+"bYy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
+"bYz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bYA" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"bYC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
+"bYD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bYE" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bYF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/machinery/recharge_station,/turf/open/floor/circuit/green,/area/science/robotics/mechbay)
+"bYG" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/machinery/sleeper{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"bYH" = (/obj/structure/sign/poster/contraband/kss13{pixel_y = -32},/obj/structure/cable,/obj/machinery/recharge_station,/turf/open/floor/circuit/green,/area/science/robotics/mechbay)
+"bYI" = (/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bYJ" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/storage/belt/medical,/obj/item/clothing/neck/stethoscope,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"bYK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"bYL" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bYM" = (/obj/machinery/vending/wardrobe/cargo_wardrobe,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"bYN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage)
+"bYO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bYP" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bYQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft)
+"bYR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft)
+"bYS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
+"bYT" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bYU" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bYV" = (/obj/machinery/rnd/destructive_analyzer,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/lab)
+"bYW" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bYX" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bYY" = (/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
+"bYZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
+"bZa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/disks,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"bZb" = (/obj/structure/table,/obj/machinery/button/door{id = "RDServer"; layer = 3.6; name = "RD Server Lockup Control"; pixel_x = -24},/obj/item/circuitboard/machine/rdserver,/obj/item/disk/tech_disk,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
+"bZc" = (/obj/machinery/computer/robotics{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
+"bZd" = (/obj/effect/landmark/blobstart,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bZe" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
+"bZf" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bZg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bZh" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms)
+"bZi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"bZj" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bZk" = (/obj/machinery/shower{dir = 4},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"bZl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bZm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=upload"; location = "med"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"bZn" = (/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"bZo" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"bZp" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"bZq" = (/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"bZr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/central)
+"bZs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Bathroom Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/crew_quarters/toilet/restrooms)
+"bZt" = (/turf/closed/wall,/area/maintenance/starboard/aft)
+"bZu" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bZv" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/machinery/camera{c_tag = "Fire Suppression Storage"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bZw" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/office)
+"bZx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fire Suppression Storage"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bZy" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"bZz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research/glass{name = "Xenobiology Kill Room"; req_access_txt = "47"},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"bZA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/library)
+"bZB" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bZC" = (/obj/machinery/computer/libraryconsole,/obj/structure/table/wood,/turf/open/floor/carpet,/area/library)
+"bZD" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/science/xenobiology)
+"bZE" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bZF" = (/turf/open/floor/wood,/area/library)
+"bZG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/warning/fire{pixel_x = -32; pixel_y = 32},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"bZH" = (/turf/closed/wall,/area/library)
+"bZI" = (/obj/machinery/air_sensor/atmos/mix_tank,/turf/open/floor/engine/vacuum,/area/engine/atmos)
+"bZJ" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/photocopier,/turf/open/floor/carpet,/area/library)
+"bZK" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library)
+"bZL" = (/obj/machinery/air_sensor/atmos/nitrous_tank,/turf/open/floor/engine/n2o,/area/engine/atmos)
+"bZM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"bZN" = (/obj/structure/closet/crate/freezer,/obj/item/rack_parts,/obj/item/rack_parts,/obj/item/wrench,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"bZO" = (/obj/machinery/air_sensor/atmos/toxin_tank,/turf/open/floor/engine/plasma,/area/engine/atmos)
+"bZP" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos)
+"bZQ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"bZR" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/atmos)
+"bZS" = (/turf/closed/wall/r_wall,/area/library)
+"bZT" = (/obj/structure/table,/obj/item/book/manual/wiki/robotics_cyborgs{pixel_x = -3; pixel_y = -2},/obj/item/book/manual/ripley_build_and_repair{pixel_x = 3; pixel_y = 2},/obj/item/mmi/posibrain,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"bZU" = (/obj/structure/table/wood,/obj/machinery/door/window/northright{name = "Library Desk Window"; req_access_txt = "37"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"bZV" = (/obj/structure/table/wood,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"bZW" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/mixing)
+"bZX" = (/obj/structure/table/wood,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"bZY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/mixing)
+"bZZ" = (/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"caa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/white,/area/science/mixing)
+"cab" = (/obj/structure/bookcase/random/adult{name = "Forbidden Knowledge"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"cac" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/science/mixing)
+"cad" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/white,/area/science/mixing)
+"cae" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light,/obj/item/storage/firstaid/toxin,/turf/open/floor/plasteel/white,/area/science/mixing)
+"caf" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation)
+"cag" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cah" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cai" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"caj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cak" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
+"cal" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos)
+"cam" = (/obj/machinery/door/poddoor/incinerator_atmos_main,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"can" = (/obj/machinery/power/turbine{dir = 8},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"cao" = (/obj/machinery/power/compressor{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"cap" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = -32; pixel_y = 32},/obj/machinery/igniter/incinerator_atmos,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"caq" = (/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"car" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"cas" = (/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine/vacuum,/area/engine/atmos)
+"cat" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input,/turf/open/floor/engine/vacuum,/area/engine/atmos)
+"cau" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"cav" = (/turf/closed/wall/r_wall,/area/science/explab)
+"caw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/explab)
+"cax" = (/turf/closed/wall,/area/science/explab)
+"cay" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos)
+"caz" = (/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
+"caA" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/science/explab)
+"caB" = (/obj/structure/closet/bombcloset,/turf/open/floor/plasteel,/area/science/explab)
+"caC" = (/obj/structure/table,/obj/item/wrench,/obj/item/clothing/suit/fire/firefighter,/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel,/area/science/explab)
+"caD" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal)
+"caE" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/explab)
+"caF" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos)
+"caG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab)
+"caH" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"caI" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/science/circuit)
+"caJ" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos)
+"caK" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos)
+"caL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos)
+"caM" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/engine/atmos)
+"caN" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/engine/atmos)
+"caO" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab)
+"caP" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/explab)
+"caQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Medbay Lobby"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side,/area/medical/medbay/lobby)
+"caR" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/kirbyplants{icon_state = "plant-06"},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"caS" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos)
+"caT" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/science/explab)
+"caU" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/science/explab)
+"caV" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 1"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
+"caW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"caX" = (/turf/open/floor/engine,/area/science/explab)
+"caY" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/engine,/area/science/explab)
+"caZ" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 2"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology)
+"cba" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/closed/wall/r_wall,/area/science/explab)
+"cbb" = (/turf/closed/wall/r_wall,/area/science/storage)
+"cbc" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/stack/sheet/metal/ten,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/screwdriver,/obj/item/screwdriver,/obj/item/multitool,/obj/item/multitool,/obj/machinery/camera{c_tag = "Research - Circuitry Lab"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cbd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/item/clothing/ears/earmuffs,/obj/item/radio,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cbe" = (/obj/structure/table/reinforced,/obj/item/clothing/mask/gas,/turf/open/floor/engine,/area/science/explab)
+"cbf" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/obj/machinery/sleeper{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cbg" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine,/area/science/storage)
+"cbh" = (/obj/machinery/rnd/experimentor,/turf/open/floor/engine,/area/science/explab)
+"cbi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
+"cbj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"cbk" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 8; name = "Quartermaster's Office APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"cbl" = (/obj/structure/table/reinforced,/obj/item/healthanalyzer,/turf/open/floor/engine,/area/science/explab)
+"cbm" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay/central)
+"cbn" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/science/storage)
+"cbo" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/science/xenobiology)
+"cbp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
+"cbq" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/pen,/turf/open/floor/engine,/area/science/explab)
+"cbr" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cbs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cbt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/explab)
+"cbu" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage)
+"cbv" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line,/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel,/area/science/explab)
+"cbw" = (/turf/open/floor/plasteel/dark,/area/science/explab)
+"cbx" = (/obj/structure/table/reinforced,/obj/item/storage/box/syringes,/obj/item/pen/blue,/turf/open/floor/engine,/area/science/explab)
+"cby" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cbz" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/reagent_containers/dropper,/obj/item/pen/red,/turf/open/floor/engine,/area/science/explab)
+"cbA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"cbB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/misc_lab{name = "Research Observatory"})
+"cbC" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage)
+"cbD" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cbE" = (/turf/closed/wall/r_wall,/area/science/misc_lab{name = "Research Observatory"})
+"cbF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cbG" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"cbH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"cbI" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"cbJ" = (/obj/structure/table/reinforced,/obj/item/analyzer,/obj/item/t_scanner,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/supermatter"; dir = 4; name = "Thermo-Electric Generator APC"; pixel_x = 24},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"cbK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/sign/departments/chemistry{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cbL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cbM" = (/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/item/storage/box/lights/mixed,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/structure/cable{icon_state = "1-10"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cbN" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cbO" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"cbP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/mixing)
+"cbQ" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/meat/slab/spider,/obj/item/reagent_containers/food/snacks/meat/slab/xeno,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"cbR" = (/obj/structure/cable{icon_state = "1-10"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"cbS" = (/obj/machinery/conveyor{dir = 4; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cbT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cbU" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/atmos"; name = "Atmospherics APC"; pixel_y = -28},/obj/structure/cable,/turf/open/floor/plasteel,/area/engine/atmos)
+"cbV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/window/reinforced/spawner,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
+"cbW" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
+"cbX" = (/obj/structure/table,/obj/item/aicard,/obj/item/disk/tech_disk,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/circuit,/area/bridge)
+"cbY" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
+"cbZ" = (/obj/machinery/computer/slot_machine,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"cca" = (/obj/machinery/computer/slot_machine,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"ccb" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/medium,/area/crew_quarters/bar)
+"ccc" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux)
+"ccd" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Robotics Lab"; dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab)
+"cce" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/science/circuit)
+"ccf" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"ccg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cch" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/turf/open/floor/plating,/area/router)
+"cci" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/mass_driver{id = "workshop_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router)
+"ccj" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/turf/open/floor/plating,/area/router)
+"cck" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ccl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/maintenance/department/chapel)
+"ccm" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/robotics/lab)
+"ccn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/turf/open/floor/plating,/area/router)
+"cco" = (/obj/machinery/conveyor/auto{id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"ccp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"ccq" = (/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/nanomichi_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"ccr" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
+"ccs" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cct" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/science/robotics/mechbay)
+"ccu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"ccv" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/airlock/mining{name = "Mining Office"; req_one_access_txt = "10;24;48"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"ccw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"ccx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"ccy" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router)
+"ccz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"ccA" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"ccB" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/folder/white,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"ccC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"ccD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"ccE" = (/obj/machinery/mass_driver{id = "eng_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
+"ccF" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/flashlight,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/office)
+"ccG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/engine/atmos)
+"ccH" = (/obj/machinery/mass_driver{dir = 8; id = "disposal_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"ccI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ccJ" = (/obj/machinery/conveyor{dir = 8; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"ccK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"ccL" = (/obj/effect/landmark/event_spawn,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/rnd/bepis,/turf/open/floor/engine,/area/science/explab)
+"ccM" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
+"ccN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"ccO" = (/obj/structure/grille,/obj/structure/disposalpipe/sorting/mail{dir = 8},/turf/open/floor/plating/airless,/area/router/aux)
+"ccP" = (/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux)
+"ccQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/courtroom)
+"ccR" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/courtroom)
+"ccS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/courtroom)
+"ccT" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"ccU" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"ccV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/aft)
+"ccW" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"ccX" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"ccY" = (/obj/structure/cable,/obj/effect/landmark/start/librarian,/obj/machinery/power/apc{areastring = "/area/library"; dir = 4; name = "Library APC"; pixel_x = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"ccZ" = (/obj/structure/closet/cardboard,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cda" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"cdb" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/open/floor/plating/airless,/area/router/aux)
+"cdc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry)
+"cdd" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/hallway/secondary/exit)
+"cde" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
+"cdf" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cdg" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdh" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cdi" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/router/aux)
+"cdj" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/microwave,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdk" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdm" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/photocopier,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper/guides/cogstation/disposals,/turf/open/floor/plasteel,/area/engine/break_room)
+"cdn" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cdo" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating/airless,/area/space/nearstation)
+"cdp" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"cdq" = (/obj/machinery/mass_driver{id = "sq_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"cdr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
+"cds" = (/obj/effect/turf_decal/bot,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdt" = (/turf/closed/wall/r_wall,/area/router/eng)
+"cdu" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdw" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdx" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"cdy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall,/area/engine/break_room)
+"cdz" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdA" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room)
+"cdB" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/sign/warning/enginesafety,/turf/closed/wall,/area/engine/break_room)
+"cdC" = (/turf/closed/wall,/area/engine/break_room)
+"cdD" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_y = 30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cdE" = (/obj/structure/table/wood,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"cdF" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"cdG" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "engblock"; name = "Engineering Router"},/turf/open/floor/plating,/area/router/eng)
+"cdH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/engine/break_room)
+"cdI" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"cdJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
+"cdL" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room)
+"cdM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access_txt = "56"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cdO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/turf/open/floor/plasteel,/area/engine/break_room)
+"cdP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/camera{c_tag = "Aft Hall - Primary Tool Storage"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cdQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room)
+"cdR" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/sign/poster/contraband/hacking_guide{pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"cdS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/break_room)
+"cdT" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_access_txt = "10;24"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cdU" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "eng"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "engblock"; name = "Engineering Router"},/turf/open/floor/plating,/area/router/eng)
+"cdV" = (/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"cdW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
+"cdX" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cdY" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cdZ" = (/turf/closed/wall/r_wall,/area/medical/medbay/lobby)
+"cea" = (/obj/effect/turf_decal/delivery,/obj/machinery/photocopier,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Cargo RC"; pixel_y = 30},/obj/machinery/camera{c_tag = "Supply - Delivery Office Aft"; network = list("ss13","rd")},/obj/item/paper/guides/cogstation/disposals,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ceb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics3"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
+"cec" = (/obj/structure/table/glass,/obj/item/paicard,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"ced" = (/obj/machinery/computer/med_data{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cee" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cef" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"ceg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"ceh" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/storage/tech)
+"cei" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cej" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cek" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"cel" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cem" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/window/eastright{name = "Medbay Desk"; req_access_txt = "5"},/obj/item/folder/white,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cen" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/circuit,/area/bridge)
+"ceo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/bridge)
+"cep" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Starboard Bow"; dir = 1; network = list("tcomms"); pixel_x = 22},/turf/open/space/basic,/area/space)
+"ceq" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall/rust,/area/engine/teg_hot)
+"cer" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "eng_out"; name = "Router Driver"},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/router/eng)
+"ces" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "eng"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/router/eng)
+"cet" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"ceu" = (/obj/machinery/vending/snack/random,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"cev" = (/obj/machinery/vending/games,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"cew" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "service"},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/router/eng)
+"cex" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"cey" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Arcade"},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"cez" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"ceA" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"ceB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"ceC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/solars/port)
+"ceD" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 13; id = "ferry_home"; name = "port bay 2"; width = 5},/turf/open/space/basic,/area/space)
+"ceE" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"ceF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"ceG" = (/obj/machinery/mass_driver{dir = 4; id = "trash"; name = "Disposal Driver"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ceH" = (/obj/structure/fans/tiny,/obj/machinery/door/poddoor{id = "trash"; name = "Disposal Bay Door"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ceI" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"ceJ" = (/obj/machinery/power/solar_control{dir = 4; name = "Starboard Quarter Solar Control"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"ceK" = (/obj/structure/grille,/turf/open/floor/plating,/area/router/eng)
+"ceL" = (/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/item/destTagger,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/router/eng)
+"ceM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/massdriver{id = "eng_out"; pixel_x = -24; pixel_y = 24},/obj/machinery/button/door{id = "engblock"; name = "Router Access Control"; pixel_x = -24; pixel_y = 32; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eng)
+"ceN" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/router/eng)
+"ceO" = (/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eng)
+"ceP" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/router/eng)
+"ceQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-5"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"ceR" = (/obj/machinery/door/poddoor{id = "TEGMixVent"; name = "Mixing Chamber Vent"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"ceS" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/starboard/central)
+"ceT" = (/obj/effect/turf_decal/delivery,/obj/machinery/computer/cargo/request{dir = 4},/obj/machinery/light/small,/obj/machinery/requests_console{department = "Engineering Router"; name = "Engineering Router RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/router/eng)
+"ceU" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/obj/structure/fireaxecabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/engine/atmos)
+"ceV" = (/turf/open/floor/plasteel,/area/router/eng)
+"ceW" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/eng)
+"ceX" = (/obj/effect/turf_decal/delivery,/obj/machinery/power/apc{name = "Engineering Router APC"; pixel_y = -24},/obj/machinery/light/small,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/router/eng)
+"ceY" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"ceZ" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_access_txt = "10;24"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cfa" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfb" = (/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/carpet/blue,/area/medical/medbay/central)
+"cfc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/hallway/primary/aft)
+"cfd" = (/obj/structure/closet/crate/wooden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cfe" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall - Starboard"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cff" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfg" = (/obj/structure/chair{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/research_director,/obj/machinery/camera{c_tag = "Research Director's Office - Port"; network = list("ss13","rd")},/obj/machinery/keycard_auth{pixel_x = -8; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"cfh" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cfi" = (/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cfj" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cfk" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cfl" = (/turf/closed/wall,/area/engine/engine_smes{name = "Power Monitoring"})
+"cfm" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall,/area/engine/engine_smes{name = "Power Monitoring"})
+"cfn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"cfo" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 1},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfq" = (/obj/structure/lattice/catwalk,/turf/open/floor/plating/airless,/area/space/nearstation)
+"cfr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/door/airlock/external/glass{name = "Mixing Chamber Access"; req_one_access_txt = "10;24"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/engine/teg_hot)
+"cfs" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos)
+"cft" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Engineering - Mixing Chamber"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/teg_hot)
+"cfu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"cfv" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cfw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Engineering Construction Area"; dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cfx" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cfy" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
+"cfz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cfA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfB" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfD" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation)
+"cfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"cfF" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/teg_hot)
+"cfG" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech)
+"cfH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/sparker{id = "TEGMixIgniter"; pixel_x = 24},/obj/effect/decal/cleanable/ash,/obj/effect/decal/remains/human,/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
+"cfJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"cfK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/teg_hot)
+"cfL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/airlock/atmos{name = "Atmospherics Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cfM" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cfN" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cfO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cfP" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cfQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/library)
+"cfR" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cfS" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"cfT" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cfU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/break_room)
+"cfV" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/atmos)
+"cfW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/plasma/reinforced/spawner/north,/obj/structure/window/plasma/reinforced/spawner,/obj/structure/lattice,/turf/open/space/basic,/area/engine/teg_hot)
+"cfX" = (/obj/item/pipe,/obj/structure/cable{icon_state = "2-5"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"cfY" = (/obj/machinery/light/small{dir = 4},/obj/item/stack/sheet/metal,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"cfZ" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/stairs/right,/area/science/research{name = "Research Sector"})
+"cga" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cgb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Mixing Chamber Access"; req_one_access_txt = "10;24"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/engine/teg_hot)
+"cgc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/storage/primary)
+"cgd" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal)
+"cge" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/atmos)
+"cgf" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cgg" = (/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cgh" = (/obj/machinery/pipedispenser,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos)
+"cgi" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"cgj" = (/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cgk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cgl" = (/obj/machinery/button/door{id = "TEGMixVent"; name = "Mixing Chamber Vent"; pixel_y = 24; req_access_txt = "10"},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "atmos mix to burn"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cgm" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/caution/stand_clear{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"cgn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cgo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cgp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/button/ignition{id = "TEGMixIgniter"; name = "Mix Igniter"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cgq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cgr" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/science/robotics/mechbay"; dir = 1; name = "Mech Bay APC"; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
+"cgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cgt" = (/obj/structure/rack,/obj/item/caution,/obj/item/caution,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cgu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cgv" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cgw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cgx" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cgy" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/rust,/area/maintenance/solars/starboard/aft)
+"cgz" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/atmos)
+"cgA" = (/obj/machinery/pipedispenser/disposal,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/atmos)
+"cgB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cgC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/central)
+"cgD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/teg_hot)
+"cgE" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"cgF" = (/obj/structure/grille,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
+"cgG" = (/obj/structure/grille,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
+"cgH" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"cgI" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"cgJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"cgK" = (/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"cgL" = (/obj/machinery/computer/rdservercontrol{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
+"cgM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cgN" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"cgO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"cgP" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
+"cgQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
+"cgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cgS" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cgT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/disposal)
+"cgU" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "manual mix to burn"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cgV" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cgW" = (/obj/docking_port/stationary{dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; roundstart_template = /datum/map_template/shuttle/mining/delta; width = 7},/turf/open/space/basic,/area/space)
+"cgX" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cgY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cgZ" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cha" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 1},/turf/open/floor/plating,/area/maintenance/disposal)
+"chb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"chc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"chd" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"che" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"chf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"chg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"chh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/tcommsat/computer)
+"chi" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer)
+"chj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"chk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"chl" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"chm" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall/r_wall/rust,/area/hydroponics/garden{name = "Nature Preserve"})
+"chn" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal/incinerator"; dir = 8; name = "Incinerator APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cho" = (/turf/closed/wall/r_wall/rust,/area/maintenance/department/eva)
+"chp" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"chq" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel/dark,/area/engine/atmos)
+"chr" = (/obj/machinery/atmospherics/components/binary/valve/digital,/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"chs" = (/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cht" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"chu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"chv" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"chw" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"chx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos)
+"chy" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"chz" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"chA" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"chB" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"chC" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"chD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"chE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/teg_cold)
+"chF" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/table,/obj/item/analyzer,/obj/item/pipe_dispenser,/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"chG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"chH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall/rust,/area/maintenance/fore)
+"chI" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/meter,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"chJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
+"chK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/open/floor/plating,/area/engine/teg_cold)
+"chL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"chM" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos)
+"chN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"chO" = (/obj/structure/table,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 7},/obj/item/clothing/glasses/welding,/obj/item/multitool,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos)
+"chP" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/lawoffice)
+"chQ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"chR" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/mixing"; dir = 1; name = "Toxins Lab APC"; pixel_y = 24},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage)
+"chS" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/atmos)
+"chT" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/engine,/area/science/storage)
+"chU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/wood,/area/library)
+"chV" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"chW" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"chX" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"chY" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/obj/machinery/light{dir = 8},/obj/item/storage/hypospraykit/fire,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/wrench,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"chZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cia" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cib" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cic" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
+"cid" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/analyzer,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cie" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_cold)
+"cif" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cig" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cih" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cii" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cij" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westleft{name = "Science Desk"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/lab)
+"cik" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "router_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cil" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cim" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 11},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cin" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"cio" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/closed/wall,/area/science/robotics/mechbay)
+"cip" = (/obj/machinery/mass_driver{id = "cargo_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"ciq" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"cir" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"cis" = (/obj/structure/sign/warning/vacuum{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cit" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"ciu" = (/obj/structure/barricade/wooden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/ripped{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/port/fore)
+"civ" = (/obj/structure/girder/displaced,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ciw" = (/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore)
+"cix" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/port/fore)
+"ciy" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore)
+"ciz" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/item/reagent_containers/food/drinks/trophy,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"ciA" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/port)
+"ciB" = (/obj/structure/frame/computer,/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/maintenance/port/fore)
+"ciC" = (/obj/structure/table,/obj/item/paper/pamphlet/gateway,/turf/open/floor/plasteel/white,/area/gateway)
+"ciD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"ciE" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"ciF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"ciG" = (/obj/machinery/conveyor{dir = 4; id = "disposal_off"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ciH" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/machinery/meter,/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"ciI" = (/turf/closed/wall/r_wall/rust,/area/quartermaster/warehouse)
+"ciJ" = (/turf/closed/wall/rust,/area/quartermaster/warehouse)
+"ciK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"ciL" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/primary)
+"ciM" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ciN" = (/obj/structure/table/reinforced,/obj/item/storage/box/donkpockets{pixel_y = 4},/obj/machinery/door/poddoor/preopen{id = "kitchenlock"; name = "Kitchen Lockup"},/obj/machinery/door/window/northleft{name = "Kitchen Slider"; req_access_txt = "28"},/obj/machinery/door/window/southleft{name = "Bar Slider"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/kitchen)
+"ciO" = (/obj/machinery/mass_driver{dir = 4; id = "disposal_out"; name = "Router Driver"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ciP" = (/obj/effect/turf_decal/delivery,/obj/item/weldingtool,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"ciQ" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"ciR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/airlock/security{name = "Cargo Security Checkpoint"; req_access_txt = "63"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"ciS" = (/obj/machinery/conveyor/auto{dir = 9; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ciT" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/closet/radiation,/obj/machinery/firealarm{dir = 4; pixel_x = -28; pixel_y = -4},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"ciU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"ciV" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ciW" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 11},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"ciX" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"ciY" = (/obj/structure/table,/obj/item/storage/toolbox/emergency,/obj/item/wrench,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/engine/teg_hot"; dir = 8; name = "Hot Loop APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"ciZ" = (/obj/machinery/atmospherics/components/binary/valve/digital,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cja" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cjb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cjc" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/door/poddoor{name = "Disposal Router"},/turf/open/floor/plating,/area/maintenance/disposal)
+"cjd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cje" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cjf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Cargo Detainment Cell"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"cjg" = (/obj/machinery/conveyor/auto{dir = 1; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"cjh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cji" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
+"cjj" = (/turf/closed/wall,/area/crew_quarters/theatre/mime)
+"cjk" = (/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
+"cjl" = (/obj/structure/closet/crate/wooden/toy,/obj/item/toy/figure/mime,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
+"cjm" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
+"cjn" = (/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
+"cjo" = (/obj/structure/table,/obj/item/flashlight/seclite,/turf/open/floor/plating,/area/maintenance/port/fore)
+"cjp" = (/turf/closed/wall/r_wall,/area/crew_quarters/theatre/mime)
+"cjq" = (/turf/closed/wall/rust,/area/maintenance/port/central)
+"cjr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
+"cjs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cjt" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; dir = 1; name = "Cargo Office APC"; pixel_y = 24},/obj/structure/sign/poster/contraband/scum{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cju" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24},/obj/item/clothing/ears/earmuffs,/obj/item/extinguisher{pixel_x = -12; pixel_y = -2},/obj/machinery/camera{c_tag = "Engineering - Hot Loop"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cjv" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/library)
+"cjw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/library)
+"cjx" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/library)
+"cjy" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/port/central)
+"cjz" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cjA" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/office)
+"cjB" = (/obj/item/stack/cable_coil/cut/red,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"cjC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/mask/cigarette,/obj/structure/sign/poster/official/twelve_gauge{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cjD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/maintenance/department/eva)
+"cjE" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation)
+"cjF" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation)
+"cjG" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"cjH" = (/obj/structure/lattice,/obj/structure/sign/warning/electricshock{pixel_x = -32},/turf/open/space/basic,/area/space/nearstation)
+"cjI" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
+"cjJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"cjK" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_cold)
+"cjL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"cjM" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/storage/toolbox/mechanical,/obj/item/radio/off,/obj/item/multitool{pixel_x = -6},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/department/eva)
+"cjN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/camera{c_tag = "Security - Visitation Area"; dir = 1},/turf/open/floor/plasteel,/area/security/main)
+"cjO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
+"cjP" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cjQ" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"cjR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_one_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hos)
+"cjS" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"cjT" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/landmark/start/security_officer,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
+"cjU" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"cjV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Engineering Sector"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cjW" = (/obj/structure/bed,/obj/machinery/light_switch{pixel_y = -24},/obj/item/bedsheet/hos,/obj/effect/landmark/start/head_of_security,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/button/door{id = "hos"; name = "HoS Office Shutters"; pixel_y = -32; pixel_x = -5},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"cjX" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 9},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
+"cjY" = (/obj/machinery/computer/station_alert{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/keycard_auth{pixel_x = 8; pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cjZ" = (/obj/item/beacon,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
+"cka" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"ckb" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab)
+"ckc" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft/secondary"; dir = 8; name = "Aft Air Hookup APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"ckd" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cke" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/library)
+"ckf" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"ckg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
+"ckh" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"cki" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ckj" = (/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"ckk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Research Maintenance"; dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
+"ckl" = (/turf/open/space/basic,/area/space/station_ruins)
+"ckm" = (/turf/closed/wall/r_wall,/area/engine/teg_cold)
+"ckn" = (/obj/machinery/door/airlock/external/glass{name = "External Solar Access"; req_access_txt = "10;13"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"cko" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/engine/engineering"; dir = 4; name = "Engine Room APC"; pixel_x = 24},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"ckp" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/chemist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"ckq" = (/obj/structure/closet/crate/hydroponics,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
+"ckr" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"cks" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"ckt" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cku" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"ckv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Warehouse"; req_one_access_txt = "10;31"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"ckw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"ckx" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cky" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"ckz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/item/pipe_dispenser,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"ckA" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"ckB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/engineering,/obj/machinery/light_switch{pixel_x = -24},/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/camera{c_tag = "Engineering - Cold Loop"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"ckC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve/digital{name = "gas to cold loop"},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"ckD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/sign/warning/fire{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"ckE" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"ckF" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/teg_cold"; dir = 4; name = "Cold Loop APC"; pixel_x = 24},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"ckG" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ckH" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"ckI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
+"ckJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/teg_hot)
+"ckK" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"ckL" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"ckM" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"ckN" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/science/xenobiology)
+"ckO" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"ckP" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ckQ" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ckR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/science/lab)
+"ckS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"ckT" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ckU" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ckV" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ckW" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ckX" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"ckY" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
+"ckZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/storage/eva)
+"cla" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"clb" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"clc" = (/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cld" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cle" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/misc_lab"; dir = 1; name = "Research Observatory APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"clf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 3"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
+"clg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"clh" = (/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cli" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology)
+"clj" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/xenobiology)
+"clk" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology)
+"cll" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology)
+"clm" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/space/nearstation)
+"cln" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation)
+"clo" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation)
+"clp" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/xenobiology)
+"clq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology)
+"clr" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/xenobiology)
+"cls" = (/obj/structure/window/reinforced/spawner,/obj/structure/grille,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/space/nearstation)
+"clt" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology)
+"clu" = (/obj/machinery/door/window/northleft{name = "Library Desk Door"; req_access_txt = "37"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"clv" = (/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"clw" = (/obj/effect/landmark/start/librarian,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"clx" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cly" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"clz" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"clA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"clB" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"clC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"clD" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clE" = (/obj/machinery/ntnet_relay,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clF" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clG" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clH" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
+"clI" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clJ" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clK" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clL" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clM" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clN" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
+"clO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"; req_access_txt = "10"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
+"clP" = (/obj/structure/table,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"clQ" = (/obj/structure/table,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"clR" = (/obj/structure/table,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"clS" = (/obj/structure/table,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"clT" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/micro_laser,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"clU" = (/obj/structure/table,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/scanning_module,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"clV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/camera{c_tag = "Supply - Security Post"; dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"clW" = (/turf/closed/wall/rust,/area/storage/tech)
+"clX" = (/turf/closed/wall/rust,/area/maintenance/starboard/aft)
+"clY" = (/obj/effect/turf_decal/stripes/line,/obj/structure/closet/firecloset,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"clZ" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/chair{dir = 4},/obj/machinery/camera{c_tag = "Escape Hall - Port"; dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cma" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Escape Hall - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cmb" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Supply - Mining Dock"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cmc" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Quarter Solar Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"cmd" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cme" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"cmf" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cmg" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cmh" = (/obj/structure/sign/warning/radiation,/turf/closed/wall/r_wall,/area/engine/gravity_generator)
+"cmi" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cmj" = (/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cmk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cml" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"cmm" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
+"cmn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cmo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"cmp" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cmq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cmr" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cms" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cmt" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cmu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable,/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cmv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cmw" = (/obj/machinery/camera{c_tag = "Engineering - Gravity Generator"; dir = 1},/turf/open/floor/engine,/area/engine/gravity_generator)
+"cmx" = (/obj/machinery/light,/turf/open/floor/engine,/area/engine/gravity_generator)
+"cmy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"cmz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"cmA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"cmB" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northright{name = "Emergency Shower"},/turf/open/floor/plasteel,/area/medical/chemistry)
+"cmC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"cmD" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cmE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cmF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
+"cmG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cmH" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Cargo Router"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cmI" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cmJ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/door/airlock/external/glass{name = "Mining Dock"; req_one_access_txt = "10;24;48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cmK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cmL" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/aft)
+"cmM" = (/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cmN" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/lawoffice)
+"cmO" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Engineering"},/turf/open/floor/plasteel,/area/engine/break_room)
+"cmP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"cmQ" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 4"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology)
+"cmR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"cmS" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"cmT" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/folder/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/window/northright{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"cmU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cmV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cmW" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/requests_console{department = "Cargo"; name = "Cargo RC"; pixel_x = -30},/obj/machinery/camera{c_tag = "Supply - Quartermaster's Office"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"cmX" = (/obj/machinery/light/small,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"cmY" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop"; req_one_access_txt = "10;24"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cmZ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/machinery/atmospherics/components/unary/cryo_cell{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cna" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/window/reinforced/spawner/east,/obj/machinery/atmospherics/components/unary/cryo_cell{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cnb" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/beakers{pixel_x = -4},/obj/item/storage/box/syringes{pixel_x = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cnc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cnd" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cne" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cnf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cng" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/qm)
+"cnh" = (/obj/machinery/door/airlock/engineering{name = "Cold Loop"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cni" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cnj" = (/obj/machinery/camera{c_tag = "Research - Observatory"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cnk" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cnl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1; pixel_x = 5},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cnm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/gateway)
+"cnn" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"cno" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cnp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge)
+"cnq" = (/obj/structure/disposalpipe/segment{dir = 10},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/port/central)
+"cnr" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cns" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cnt" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/door/poddoor{name = "Disposal Router"},/turf/open/floor/plating,/area/maintenance/disposal)
+"cnu" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/gateway)
+"cnv" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/structure/frame/computer,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cnw" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/storage)
+"cnx" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cny" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cnz" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/sign/departments/chemistry{pixel_y = 32},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cnA" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office)
+"cnB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"cnC" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/engine,/area/science/explab)
+"cnD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology)
+"cnE" = (/obj/docking_port/stationary{dir = 2; dwidth = 9; height = 22; id = "emergency_home"; name = "CogStation Escape Dock"; width = 29},/turf/open/space/basic,/area/space)
+"cnF" = (/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore)
+"cnG" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/port)
+"cnH" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/port)
+"cnI" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/port)
+"cnJ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/solar/port)
+"cnK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cnL" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/aft)
+"cnM" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft)
+"cnN" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/solar/starboard/aft)
+"cnO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/storage)
+"cnP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/solar/starboard/aft)
+"cnQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft)
+"cnR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/aft)
+"cnS" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/aft; dir = 1; name = "Starboard Quarter Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
+"cnT" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
+"cnU" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing)
+"cnV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/engine,/area/science/storage)
+"cnW" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
+"cnX" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cnY" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cnZ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/holopad,/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"coa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cob" = (/obj/structure/closet/l3closet/virology,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/virology)
+"coc" = (/obj/machinery/camera{c_tag = "Medbay - Reception"; dir = 4},/turf/open/floor/plasteel/stairs,/area/medical/medbay/central)
+"cod" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/light,/obj/structure/window/reinforced/spawner/east,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby)
+"coe" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Medbay Morgue"; dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"cof" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cog" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
+"coh" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
+"coi" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"coj" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cok" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"col" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"com" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/end{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/medical/chemistry)
+"con" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/station_engineer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/storage/primary)
+"coo" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/storage/primary)
+"cop" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/chief)
+"coq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cor" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cos" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Workshop"; req_access_txt = "11"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cot" = (/obj/machinery/computer/apc_control{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cou" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/chief_engineer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cov" = (/obj/structure/sign/warning/nosmoking{pixel_y = -32},/turf/closed/wall,/area/medical/medbay/central)
+"cow" = (/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_one_access_txt = "10;48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cox" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"coy" = (/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/obj/effect/turf_decal/stripes/line,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"coz" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"coA" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Aft Maintenance - Starboard Quarter"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/aft)
+"coB" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Aft Hallway - MedSci Port"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"coC" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera{c_tag = "Aft Maintenance - Starboard Bow"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/aft)
+"coD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"coE" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Aft Hall - MedSci Starboard"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"coF" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/landmark/start/assistant,/obj/machinery/camera{c_tag = "Aft Hall - Workshop"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"coG" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research - Experimentation Lab"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/explab)
+"coH" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"coI" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway)
+"coJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Virology Access"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/medical/virology)
+"coK" = (/obj/machinery/camera{c_tag = "Medbay - Monkey Pen"; dir = 4},/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology)
+"coL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=cargo"; location = "eng2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"coM" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"coN" = (/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"coO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/camera{c_tag = "Central Hall"; dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
+"coP" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/machinery/camera{c_tag = "Central Plaza - Port"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"coQ" = (/obj/machinery/camera{c_tag = "Central Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"coR" = (/obj/machinery/camera{c_tag = "Ferry Docking Bay"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"coS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Ferry Docking Bay - Starboard"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"coT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"coU" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Front Desk"; dir = 1},/turf/open/floor/plasteel,/area/security/main)
+"coV" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/camera{c_tag = "Medbay Entrance"; dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"coW" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/engineering,/obj/machinery/camera{c_tag = "Technical Storage"; dir = 4},/turf/open/floor/plating,/area/storage/tech)
+"coX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/camera{c_tag = "Medbay - Operating Theatre"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"coY" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/machinery/camera{c_tag = "Medbay - Cryogenics"; dir = 1},/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker/cryoxadone,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"coZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cpa" = (/obj/structure/closet/crate/radiation,/obj/item/storage/firstaid/radbgone,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpb" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel,/area/medical/virology)
+"cpc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cpd" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/fitness)
+"cpe" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/engine,/area/science/explab)
+"cpf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cpg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cph" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"cpi" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"cpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cpk" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpl" = (/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cpm" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/lawoffice)
+"cpn" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cpo" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpp" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "cargo"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Cargo Router"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cpq" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
+"cpr" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cps" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"cpt" = (/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
+"cpu" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/holopad,/turf/open/floor/wood,/area/library)
+"cpv" = (/obj/structure/table,/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cpw" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/poster/official/space_cops{pixel_y = 32},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
+"cpx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
+"cpy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cpz" = (/turf/closed/wall/r_wall,/area/medical/virology)
+"cpA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpB" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space)
+"cpC" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space/station_ruins)
+"cpD" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/engine,/area/science/storage)
+"cpE" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/disposal)
+"cpF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva)
+"cpH" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/directions/engineering{dir = 4; pixel_y = -24},/obj/structure/sign/directions/supply{dir = 4; pixel_y = -32},/obj/structure/sign/directions/evac{dir = 4; pixel_y = -40},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cpI" = (/obj/machinery/chem_dispenser,/obj/effect/turf_decal/stripes/end{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/medical/chemistry)
+"cpJ" = (/turf/closed/wall/r_wall/rust,/area/quartermaster/office)
+"cpK" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cpL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cpM" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cpN" = (/obj/structure/closet/secure_closet/atmospherics,/obj/item/cartridge/atmos,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/atmos)
+"cpO" = (/obj/structure/closet/secure_closet/atmospherics,/obj/item/cartridge/atmos,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/atmos)
+"cpP" = (/obj/machinery/camera{c_tag = "Research - Gateway Atrium"; dir = 1},/turf/open/floor/plasteel/white,/area/gateway)
+"cpQ" = (/obj/machinery/vending/wardrobe/atmos_wardrobe,/obj/effect/turf_decal/stripes/line{dir = 6; layer = 2.03},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/atmos)
+"cpR" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/electronics/apc,/obj/item/electronics/apc,/obj/item/electronics/airalarm,/obj/item/electronics/airalarm,/obj/item/electronics/firelock,/obj/item/electronics/firelock,/obj/item/electronics/firealarm,/obj/item/electronics/firealarm,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpT" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpV" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cpW" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cpX" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos)
+"cpY" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot)
+"cpZ" = (/obj/structure/table,/obj/item/tank/internals/air,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
+"cqa" = (/obj/machinery/autolathe,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqb" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cqc" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqd" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/hostile/retaliate/goose{check_friendly_fire = 1; desc = "It may not be as wise as an owl, but the Head of Security's pet is far more dangerous."; faction = list("neutral","silicon","turret","station"); name = "Officer Snooty"},/turf/open/floor/plasteel,/area/security/main)
+"cqe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=eng1"; location = "sci"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cqf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cqg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cqh" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cqi" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
+"cqj" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"cqk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=med"; location = "cargo"},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cql" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=eng2"; location = "evac"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cqm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/item/storage/box/disks_nanite,/obj/item/book/manual/wiki/research_and_development{pixel_x = 4; pixel_y = -8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cqn" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqo" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Warehouse"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqr" = (/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/central"; name = "Central Starboard Maintenance APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboard/central)
+"cqs" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table/wood,/obj/item/clipboard,/obj/item/paper/guides/jobs/engi/solars,/obj/item/pen,/obj/machinery/camera{c_tag = "Engineering Foyer - Port"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqt" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/noticeboard/qm{dir = 4; pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cqu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqw" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqx" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/modular_computer/console/preset/engineering,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/table/wood,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"cqA" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/absinthe,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"cqC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqE" = (/obj/machinery/conveyor_switch{id = "EngiCargoConveyer"},/obj/machinery/button/door{id = "EngiDeliverDoor"; name = "Engineering Delivery Door Control"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqF" = (/obj/effect/turf_decal/delivery,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cqG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqH" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main)
+"cqI" = (/obj/structure/chair/stool,/obj/effect/landmark/start/atmospheric_technician,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqJ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqK" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/plaques/atmos{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/break_room)
+"cqL" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqN" = (/turf/closed/wall/rust,/area/maintenance/department/security)
+"cqO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cqP" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cqQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cqR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cqS" = (/obj/machinery/computer/rdconsole/experiment{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = -30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/explab)
+"cqT" = (/obj/effect/turf_decal/stripes/line,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cqU" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cqV" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"cqW" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/window/reinforced/spawner,/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cqX" = (/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Shuttle"; width = 12},/turf/open/space/basic,/area/space)
+"cqY" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/status_display{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cqZ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cra" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Auxiliary Tool Storage"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools)
+"crb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/engine/teg_cold)
+"crc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"crd" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/item/destTagger,/obj/item/destTagger,/obj/item/destTagger,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/obj/machinery/button/massdriver{id = "cargo_out"; pixel_x = -8; pixel_y = -4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cre" = (/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_one_access_txt = "10;48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"crf" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
+"crg" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/airlock/medical/glass{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"crh" = (/obj/machinery/mass_driver{dir = 1; id = "cargo_out"; name = "Router Driver"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cri" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel,/area/engine/break_room)
+"crj" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"crk" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
+"crl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"crm" = (/obj/machinery/door/firedoor,/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/machinery/door/poddoor{id = "EngiDeliverDoor"; name = "Engineering Delivery Door"},/turf/open/floor/plating,/area/engine/teg_cold)
+"crn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/medical/chemistry)
+"cro" = (/turf/closed/wall/r_wall/rust,/area/maintenance/starboard/aft)
+"crp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/storage/tech)
+"crq" = (/obj/structure/closet/crate/freezer,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/medical/morgue"; dir = 4; name = "Morgue APC"; pixel_x = 24},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"crr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Fore"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"crs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"crt" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
+"cru" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"crv" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"crw" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"crx" = (/obj/machinery/camera{c_tag = "Engine Room - Port Quarter"; dir = 1},/obj/structure/cable,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cry" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10; pixel_x = -5},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random{pixel_x = -2; pixel_y = -2},/obj/item/stack/cable_coil/random{pixel_x = 2; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/camera{c_tag = "Robotics - Surgery"; dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"crz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/camera/motion{c_tag = "Telecomms Satellite"; dir = 1; network = list("tcomms")},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"crA" = (/obj/machinery/aug_manipulator,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"crB" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port"; dir = 8; network = list("tcomms")},/turf/open/space/basic,/area/space/nearstation)
+"crC" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior Starboard"; dir = 4; network = list("tcomms")},/turf/open/space/basic,/area/space/nearstation)
+"crD" = (/obj/machinery/camera/motion{c_tag = "Telecomms Server Room"; dir = 1; network = list("tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
+"crE" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port Quarter"; network = list("tcomms")},/turf/open/space/basic,/area/space)
+"crF" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Starboard Quarter"; network = list("tcomms"); pixel_x = 22},/turf/open/space/basic,/area/space)
+"crG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating/airless,/area/science/test_area)
+"crH" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating/airless,/area/science/test_area)
+"crI" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/science/mixing)
+"crJ" = (/obj/structure/window/reinforced,/obj/machinery/mass_driver{dir = 8; id = "toxinsdriver"},/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/science/mixing)
+"crK" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/science/test_area)
+"crL" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/science/test_area)
+"crM" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/science/test_area)
+"crN" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology)
+"crO" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel,/area/science/xenobiology)
+"crP" = (/obj/structure/lattice,/turf/closed/wall,/area/hallway/secondary/entry)
+"crQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"crR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"crS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Pod"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"crT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"crU" = (/obj/effect/turf_decal/stripes/line,/obj/item/crowbar,/obj/structure/sign/poster/official/safety_internals{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"crV" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"crW" = (/obj/machinery/computer/rdconsole/robotics{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"crX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"crY" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"crZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/hallway/primary/aft)
+"csa" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/sign/warning/pods{pixel_x = -32; pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
+"csb" = (/obj/structure/sign/warning/pods{pixel_x = 32; pixel_y = 32},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
+"csc" = (/obj/structure/fans/tiny/invisible,/obj/docking_port/stationary{dir = 2; dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/space/basic,/area/space)
+"csd" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cse" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/clipboard,/obj/item/paper/monitorkey,/obj/item/pen/fountain,/obj/item/stamp/ce,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 5; name = "Chief Engineer's RC"; pixel_y = -32},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"csf" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director's RC"; pixel_y = -32; receive_ore_updates = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"csg" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
+"csh" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"csi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/turf/open/floor/plating,/area/medical/chemistry)
+"csj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"csk" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/explab)
+"csl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor)
+"csm" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
+"csn" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/main)
+"cso" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"csp" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"csq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Cold Loop"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"csr" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = 30},/turf/open/floor/plasteel,/area/bridge)
+"css" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"cst" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/teg_cold)
+"csu" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway)
+"csv" = (/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/item/storage/toolbox/mechanical,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/paper/guides/cogstation/letter_supp,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"csw" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main)
+"csx" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/cable{icon_state = "1-2"},/obj/item/paper/fluff/cogstation/letter_rd,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"csy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/xmastree,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
+"csz" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"csA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Visitation"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main)
+"csB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"csC" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
+"csD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge)
+"csE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
+"csF" = (/obj/structure/bed,/obj/effect/landmark/start/research_director,/obj/item/bedsheet/rd,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"csG" = (/obj/machinery/holopad,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
+"csH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library)
+"csI" = (/obj/structure/table/wood,/obj/machinery/light_switch{pixel_x = 4; pixel_y = -24},/obj/item/flashlight/lamp/green,/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = -6; pixel_y = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"csJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"csK" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/window/northright{name = "Medbay Desk"; req_access_txt = "5"},/obj/item/clipboard,/obj/item/clothing/glasses/hud/health,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/pen,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"csL" = (/obj/effect/landmark/xmastree/rdrod,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"csM" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"csN" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"csO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"csP" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"csQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"csR" = (/turf/open/floor/engine,/area/science/storage)
+"csS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"csT" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/circuit)
+"csU" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/storage/tech)
+"csV" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_y = 8; req_access_txt = "29"; pixel_x = -24},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab)
+"csW" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"csX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"csY" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"csZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"cta" = (/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/xenobiology)
+"ctb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/explab)
+"ctc" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ctd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cte" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ctf" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ctg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cth" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cti" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ctj" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/mixing)
+"ctk" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/atmos)
+"ctl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/white/full,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/engine/workshop)
+"ctm" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/sorting/mail/flip{sortType = 2},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ctn" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/obj/item/paper/guides/cogstation/letter_chief,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cto" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ctp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ctq" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ctr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office)
+"cts" = (/obj/structure/rack,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel/white,/area/gateway)
+"ctt" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"ctu" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/machinery/camera{c_tag = "Supply - Cargo Office"; dir = 1},/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/storage/box/disks,/turf/open/floor/plasteel,/area/quartermaster/office)
+"ctv" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
+"ctw" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office)
+"ctx" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cty" = (/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"ctz" = (/obj/structure/table,/obj/item/stamp/qm,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "4-8"},/obj/item/coin/silver{pixel_x = -12},/obj/item/key{pixel_x = 8; pixel_y = 4},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"ctA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "31;48"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"ctB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"ctC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"ctD" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology)
+"ctE" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/modular_computer/console/preset/engineering,/obj/structure/cable{icon_state = "1-2"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/engine/workshop)
+"ctF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology)
+"ctG" = (/turf/closed/wall,/area/engine/workshop)
+"ctH" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"ctI" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/engine,/area/science/explab)
+"ctJ" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/engine/workshop)
+"ctK" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
+"ctL" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 5"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
+"ctM" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 6"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology)
+"ctN" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ctO" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/sign/warning/biohazard{pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/virology)
+"ctP" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ctQ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/science/xenobiology)
+"ctR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"ctS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/warning/biohazard{pixel_x = -32; pixel_y = 32},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"ctT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/machinery/camera{c_tag = "Xenobiology - Aft"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"ctU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"ctV" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/secondary/exit"; name = "Escape Shuttle Hallway APC"; pixel_y = -28},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
+"ctW" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ctX" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/engine/workshop)
+"ctY" = (/obj/structure/sign/departments/xenobio{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"ctZ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cua" = (/obj/structure/chair/comfy/black{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cub" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cuc" = (/obj/machinery/door/airlock/virology/glass{name = "Monkey Pen"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cud" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Xenobiology - Aft Access"; dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cue" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cuf" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cug" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cuh" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cui" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cuj" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cuk" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cul" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cum" = (/obj/structure/rack,/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"cun" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/meat/steak,/obj/machinery/camera{c_tag = "Xenobiology - Test Chamber"; dir = 1},/turf/open/floor/engine,/area/science/xenobiology)
+"cuo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/aft)
+"cup" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cuq" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cur" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cus" = (/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cut" = (/obj/docking_port/stationary{dir = 2; dwidth = 7; height = 9; id = "whiteship_home"; name = "SS13: Merchant Dock"; width = 13},/turf/open/space/basic,/area/space)
+"cuu" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/engine/workshop)
+"cuv" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cuw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop)
+"cux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
+"cuy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
+"cuz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation)
+"cuA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"cuB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"cuC" = (/obj/structure/lattice/catwalk,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"cuD" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
+"cuE" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
+"cuF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop)
+"cuG" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
+"cuH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop)
+"cuI" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table,/obj/machinery/airalarm{pixel_y = 24},/obj/item/storage/toolbox/emergency,/obj/item/screwdriver,/turf/open/floor/plasteel,/area/engine/workshop)
+"cuJ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/storage/toolbox/mechanical,/obj/item/screwdriver,/turf/open/floor/plasteel,/area/engine/workshop)
+"cuK" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/engine/workshop"; dir = 1; name = "Engineering Workshop APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/workshop)
+"cuL" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/workshop)
+"cuM" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop)
+"cuN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall,/area/engine/workshop)
+"cuO" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/primary)
+"cuP" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cuQ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/gateway)
+"cuR" = (/turf/closed/wall,/area/router/air)
+"cuS" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "workshop_out"; name = "Router Driver"},/turf/open/floor/plating,/area/engine/workshop)
+"cuT" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor{id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
+"cuU" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/sign/poster/official/build{pixel_x = -32},/turf/open/floor/plasteel,/area/engine/workshop)
+"cuV" = (/turf/open/floor/plasteel,/area/engine/workshop)
+"cuW" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cuX" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay"; req_access_txt = "5"},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cuY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"cuZ" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab)
+"cva" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/engine/workshop)
+"cvb" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/engine/workshop)
+"cvc" = (/obj/structure/chair/stool,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop)
+"cvd" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop)
+"cve" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"cvf" = (/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cvg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop)
+"cvh" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/computer/rdconsole/production{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop)
+"cvi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/workshop)
+"cvj" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/conveyor{id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cvk" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cvl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/router/air)
+"cvm" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Airbridge Router APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/router/air)
+"cvn" = (/obj/structure/table,/obj/item/destTagger,/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/router/air)
+"cvo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology)
+"cvp" = (/obj/effect/turf_decal/bot,/obj/machinery/computer/cargo/request,/obj/machinery/camera{c_tag = "Airbridge Router"; pixel_x = 22},/obj/machinery/requests_console{department = "Airbridge Router"; name = "Airbridge Router RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/router/air)
+"cvq" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor{dir = 1; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
+"cvr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/workshop)
+"cvs" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/medical/virology)
+"cvt" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 10},/area/science/robotics/lab)
+"cvu" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cvv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/requests_console{department = "Genetics"; name = "Genetics RC"; pixel_x = 30},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cvw" = (/obj/structure/closet,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/wrench/medical,/obj/item/screwdriver,/obj/item/stock_parts/cell/high/plus,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"cvx" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/emergency,/obj/item/hypospray/mkii/tricord,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cvy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"cvz" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cvA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/securearea{pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cvB" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cvC" = (/obj/machinery/computer/nanite_cloud_controller,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
+"cvD" = (/obj/effect/turf_decal/delivery,/obj/machinery/rnd/server,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cvE" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/poddoor{id = "RDServer"; name = "RD Server Lockup"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cvF" = (/obj/item/caution,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cvG" = (/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cvH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Toxins Mixing Lab"; req_access_txt = "7;8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/science/mixing)
+"cvI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/computer/telecomms/server{dir = 1; network = "tcommsat"},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"cvJ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"cvK" = (/obj/structure/chair/sofa/right,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
+"cvL" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cvM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/gateway)
+"cvN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cvO" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cvP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/janitor)
+"cvQ" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab)
+"cvR" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{sortType = 23},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cvS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"cvT" = (/obj/structure/extinguisher_cabinet,/turf/closed/wall,/area/medical/medbay/central)
+"cvU" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/reagent_dispensers/virusfood{pixel_x = -32},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cvV" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cvW" = (/obj/structure/chair/comfy/black,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cvX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cvY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cvZ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/clipboard,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/stamp,/obj/machinery/door/window/southright{name = "Customs Desk"; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"cwa" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/structure/window/reinforced/spawner,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"cwb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
+"cwc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/button/door{id = "cargoblock"; name = "Router Access Control"; pixel_x = -24; pixel_y = 24; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cwd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cwe" = (/obj/structure/closet/secure_closet/exile,/turf/open/floor/plasteel/white,/area/gateway)
+"cwf" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cwg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology)
+"cwh" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cwi" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cwj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
+"cwk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
+"cwl" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/book/manual/wiki/infections,/obj/item/folder/white,/obj/machinery/requests_console{department = "Virology"; name = "Virology RC"; pixel_x = -32},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cwm" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cwn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cwo" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table,/obj/machinery/microwave,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cwp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
+"cwq" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop"; req_one_access_txt = "10;24"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cwr" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop)
+"cws" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cwt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"cwu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cwv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/maintenance/disposal)
+"cww" = (/turf/closed/wall/r_wall,/area/engine/atmos)
+"cwx" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/white/full,/turf/open/floor/plasteel,/area/engine/atmos)
+"cwy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cwz" = (/obj/structure/transit_tube/curved{dir = 8},/turf/open/space/basic,/area/space)
+"cwA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos)
+"cwB" = (/turf/open/floor/plasteel,/area/engine/atmos)
+"cwC" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cwD" = (/obj/structure/transit_tube/diagonal/topleft,/turf/open/space/basic,/area/space)
+"cwE" = (/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop)
+"cwF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cwG" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/effect/landmark/event_spawn,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
+"cwH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/toilet/restrooms)
+"cwI" = (/obj/structure/transit_tube/horizontal,/turf/open/space/basic,/area/space)
+"cwJ" = (/obj/structure/lattice,/obj/structure/transit_tube/horizontal,/turf/open/space/basic,/area/space/nearstation)
+"cwK" = (/obj/structure/transit_tube/crossing/horizontal,/turf/open/space/basic,/area/space)
+"cwL" = (/obj/structure/transit_tube/horizontal,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos)
+"cwM" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/structure/transit_tube/station/reverse/flipped,/obj/structure/transit_tube_pod{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"cwN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"cwO" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cwP" = (/obj/structure/bed,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/chief_engineer,/obj/item/bedsheet/ce,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/chief"; dir = 4; name = "Chief Engineer's Office APC"; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
+"cwQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/primary)
+"cwR" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
+"cwS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Warehouse"; req_access_txt = "11"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
+"cwT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
+"cwU" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
+"cwV" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cwW" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cwX" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cwY" = (/obj/effect/landmark/event_spawn,/obj/machinery/air_sensor/atmos/toxins_mixing_tank,/turf/open/floor/engine/vacuum,/area/science/mixing)
+"cwZ" = (/obj/structure/table,/obj/item/storage/box/beanbag,/obj/item/gun/ballistic/revolver/doublebarrel,/obj/item/storage/hypospraykit/toxin,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
+"cxa" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 6},/turf/open/space/basic,/area/space/nearstation)
+"cxb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"cxc" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"cxd" = (/obj/machinery/computer/monitor,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cxe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cxf" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cxg" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cxh" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cxi" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Engineering - Primary Tool Storage"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"cxj" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/reagent_dispensers/foamtank,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"cxk" = (/obj/structure/tank_dispenser,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
+"cxl" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/storage/primary)
+"cxm" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"cxn" = (/obj/machinery/portable_atmospherics/scrubber,/obj/item/t_scanner{pixel_x = -4},/obj/item/pipe,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/quartermaster/warehouse)
+"cxo" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Supply - Warehouse Aft"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cxp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cxq" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cxr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cxs" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/item/storage/toolbox/electrical,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"cxt" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"cxu" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
+"cxv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cxw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cxx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Warehouse"; req_one_access_txt = "10;31"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
+"cxy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/quartermaster/storage)
+"cxz" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Mining Office"; req_access_txt = "48"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cxB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Cargo Office"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxE" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cxF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxI" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/junction{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxK" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cxN" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxO" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cxP" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxR" = (/obj/effect/landmark/start/shaft_miner,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cxS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cxT" = (/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/paper/guides/cogstation/letter_supp,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cxU" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cxV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cxW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/office)
+"cxX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cxY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cxZ" = (/obj/effect/turf_decal/delivery,/obj/machinery/button/door{id = "MiningConveyorBlastDoor"; name = "Mining Conveyor Access"; pixel_x = 8; pixel_y = -24; req_one_access_txt = "10;24;48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cya" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cyb" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cyc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Mining Dock"; req_one_access_txt = "10;24;48"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cyd" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cye" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cyf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cyg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cyh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Mining Office Maintenance"; req_one_access_txt = "10;24;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningoffice)
+"cyi" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cyj" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cyk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cyl" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cym" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cyn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cyo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
+"cyp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/workshop)
+"cyq" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/power/apc{dir = 4; name = "Restrooms APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"cyr" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cys" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cyt" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/purple,/obj/machinery/power/apc{areastring = "/area/science/robotics/lab"; dir = 8; name = "Robotics Lab APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cyu" = (/obj/structure/closet/wardrobe/chemistry_white{anchored = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cyv" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
+"cyw" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"cyx" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cyy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Medbay Lobby"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side,/area/medical/medbay/lobby)
+"cyz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
+"cyA" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cyB" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/official/medical_green_cross{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cyC" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cyD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cyE" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cyF" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"cyG" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
+"cyH" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cyI" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cyJ" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"cyK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cyL" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cyM" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cyN" = (/obj/machinery/chem_dispenser/apothecary,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
+"cyO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
+"cyP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
+"cyQ" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
+"cyR" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
+"cyS" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
+"cyT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
+"cyU" = (/obj/machinery/camera{c_tag = "Aft Maintenance - Central Starboard"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft)
+"cyV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"cyW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cyX" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cyY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"cyZ" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"cza" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"czb" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/paicard,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
+"czc" = (/obj/structure/chair{dir = 8},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit)
+"czd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/aft)
+"cze" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway)
+"czg" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/mob/living/simple_animal/hostile/retaliate/bat,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"czh" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"czi" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/landmark/start/chief_medical_officer,/obj/item/bedsheet/cmo,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"czj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft)
+"czk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
+"czl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/exit)
+"czm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czp" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czq" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/coffee,/obj/item/pen/blue,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czr" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"czu" = (/obj/machinery/suit_storage_unit/cmo,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"czv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"czw" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"czx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"czy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"czz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/engine,/area/gateway)
+"czA" = (/obj/machinery/modular_computer/console/preset/research{dir = 8},/obj/item/reagent_containers/food/drinks/coffee,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"czB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"czC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"czD" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"czE" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"czF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"czG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"czH" = (/obj/machinery/button/door{id = "robotics2"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"czI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"czJ" = (/obj/item/beacon,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"czK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"czL" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"czM" = (/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; name = "Chemistry RC"; pixel_x = 30; pixel_y = 0; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
+"czN" = (/obj/structure/closet/crate/trashcart,/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
+"czO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"czP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
+"czQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"czR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
+"czS" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor)
+"czT" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor)
+"czU" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/janitor)
+"czV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
+"czW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
+"czX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/rust,/area/maintenance/disposal)
+"czY" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/janitor)
+"czZ" = (/obj/effect/landmark/start/janitor,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/janitor)
+"cAa" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/chair/sofa/right,/obj/item/reagent_containers/food/drinks/bottle/vermouth/empty,/obj/item/reagent_containers/food/snacks/grown/cannabis{pixel_x = -4; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"cAb" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/chair/sofa/left,/obj/item/storage/box/hug/medical,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"cAc" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/central)
+"cAd" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"cAe" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/janitor)
+"cAf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor)
+"cAg" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor)
+"cAh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Custodial Closet"; req_access_txt = "12;26"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor)
+"cAi" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"cAj" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"cAk" = (/obj/effect/turf_decal/stripes/line,/obj/item/reagent_containers/pill/floorpill,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/glass,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 1},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"cAl" = (/obj/effect/turf_decal/stripes/line,/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/item/camera,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"cAm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cAn" = (/obj/structure/disposalpipe/junction/flip,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
+"cAo" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cAp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
+"cAq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"cAr" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/maintenance/disposal)
+"cAs" = (/obj/structure/mopbucket,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/janitor)
+"cAt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/southleft{name = "Cloning Access"; req_one_access_txt = "9;45"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cAu" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
+"cAv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/medical/medbay/central)
+"cAw" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/soap,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/reagent_containers/spray/cleaner{pixel_x = 4; pixel_y = -1},/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/spray/cleaner{pixel_x = -8; pixel_y = 4},/obj/machinery/requests_console{department = "Custodial Closet"; name = "Custodial RC"; pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/janitor)
+"cAx" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/landmark/start/janitor,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor)
+"cAy" = (/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cAz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
+"cAA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall,/area/storage/primary)
+"cAB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cAC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cAD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation Room A"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cAE" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/caution,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cAF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"cAG" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cAH" = (/obj/structure/table,/obj/item/storage/box/beakers,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cAI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cAJ" = (/obj/structure/table/wood,/obj/item/storage/book/bible/booze,/obj/item/beacon{pixel_y = -8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"cAK" = (/obj/machinery/computer/med_data,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cAL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/detectives_office)
+"cAM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"cAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"cAO" = (/obj/effect/landmark/start/detective,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"cAP" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/lighter{pixel_x = -4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster/security_unit{pixel_y = -30},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 1},/obj/item/reagent_containers/food/drinks/bottle/hcider{pixel_x = 3; pixel_y = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"cAQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor)
+"cAR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"cAS" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway)
+"cAT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
+"cAU" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cAV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cAW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cAX" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cAY" = (/obj/machinery/door/airlock{name = "Catering"; req_one_access_txt = "25;28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
+"cAZ" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cBa" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop)
+"cBb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main)
+"cBc" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cBe" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBg" = (/obj/structure/chair,/obj/effect/turf_decal/tile/neutral,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBh" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBi" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBj" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/station_engineer,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cBl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Power Monitoring"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
+"cBm" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/rnd/production/techfab/department/engineering,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
+"cBn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"cBo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBp" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cBq" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"cBr" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"cBs" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"cBt" = (/obj/structure/closet/l3closet/scientist,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"cBu" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/sign/departments/security{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBv" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore)
+"cBx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"cBy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
+"cBz" = (/obj/structure/filingcabinet/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/quartermaster/qm)
+"cBA" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/camera{c_tag = "Aft Hall - Fore"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cBB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/engine/workshop)
+"cBC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
+"cBD" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cBE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/central)
+"cBG" = (/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cBH" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cBI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cBJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/power/apc{name = "Engineering Foyer APC"; pixel_y = -24},/obj/item/storage/firstaid/regular,/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cBK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBL" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cBM" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"cBN" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"cBO" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"cBP" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"cBQ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"cBR" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"cBS" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
+"cBT" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cBU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/crew_quarters/bar)
+"cBV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"cBW" = (/obj/structure/sign/plaques/golden{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"cBX" = (/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"cBY" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
+"cBZ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cCa" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/sign/departments/security{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cCc" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCd" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/sleeper{dir = 8},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
+"cCe" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cCf" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Central Maintenance - Fore"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/central)
+"cCg" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft)
+"cCi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Monkey Pen"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cCl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/medical/virology)
+"cCm" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCn" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port/fore)
+"cCo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology)
+"cCp" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port/fore)
+"cCq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
+"cCr" = (/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/medical/virology)
+"cCs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/office)
+"cCt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Chapel Confessions"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/chapel/main)
+"cCu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
+"cCv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cCw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
+"cCx" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/caution,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation Room B"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cCA" = (/obj/machinery/computer/security/wooden_tv,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
+"cCB" = (/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
+"cCC" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
+"cCD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cCE" = (/obj/machinery/portable_atmospherics/canister/water_vapor,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction/flip,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/janitor)
+"cCF" = (/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycler Conveyor Control"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plating,/area/maintenance/disposal)
+"cCG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cCH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cCI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cCJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/wood,/area/library)
+"cCK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/library)
+"cCL" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cCM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge1"; location = "router"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cCN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/hallway/primary/central)
+"cCO" = (/obj/structure/table,/obj/machinery/airalarm{pixel_y = 24},/obj/item/hand_labeler,/obj/item/reagent_containers/glass/bottle/formaldehyde,/obj/item/paper/guides/jobs/medical/morgue,/obj/item/paper/guides/cogstation/cdn_med{pixel_x = -6; pixel_y = 1},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"cCP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
+"cCQ" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/light,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cCR" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
+"cCS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cCT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/aft)
+"cCU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cCV" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security)
+"cCW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"cCX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
+"cCY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cCZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cDa" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cDb" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/glasses/science,/obj/item/pen,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cDc" = (/obj/structure/table,/obj/machinery/light,/obj/structure/bedsheetbin,/obj/item/clothing/glasses/hud/health,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cDd" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cDe" = (/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/medical/virology)
+"cDf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology)
+"cDg" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cDh" = (/obj/machinery/computer/card/minor/cmo{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/keycard_auth{pixel_x = -24},/obj/item/paper/guides/cogstation/letter_cmo,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"cDi" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/crate/solarpanel_small,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/storage/primary)
+"cDj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"cDk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/port/fore)
+"cDl" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cDm" = (/obj/structure/plasticflaps,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cDn" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/router/air)
+"cDo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/air)
+"cDp" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"cDq" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"cDr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
+"cDs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark/side,/area/bridge)
+"cDt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
+"cDu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain)
+"cDv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"cDw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
+"cDx" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/structure/extinguisher_cabinet{pixel_x = 6; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
+"cDy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/hor)
+"cDz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/checkpoint/supply)
+"cDA" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/newscaster/security_unit{pixel_x = 30},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"cDB" = (/obj/item/storage/secure/safe{pixel_x = -24},/obj/machinery/light{dir = 8},/obj/structure/dresser,/obj/item/storage/lockbox/medal,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"cDC" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
+"cDD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/security{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/security/checkpoint/supply"; dir = 4; name = "Cargo Security Checkpoint APC"; pixel_x = 24},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"cDE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
+"cDF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
+"cDG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
+"cDH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway)
+"cDI" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/gateway)
+"cDJ" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"cDK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/gateway)
+"cDL" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/obj/machinery/camera{c_tag = "Medbay - Apothecary"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cDM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/table/glass,/obj/item/book/manual/wiki/chemistry,/obj/item/book/manual/wiki/chemistry{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/turf/open/floor/plasteel,/area/medical/chemistry)
+"cDN" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/gateway)
+"cDO" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cDP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cDQ" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cDR" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cDS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"cDT" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red{pixel_x = 3},/turf/open/floor/plasteel,/area/gateway)
+"cDU" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"cDV" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/gateway)
+"cDW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"cDX" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cDY" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
+"cDZ" = (/obj/structure/table,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"cEa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
+"cEb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Research Director's Office"; req_access_txt = "30"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
+"cEc" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEe" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEj" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEk" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEl" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEm" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEn" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEo" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEr" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEs" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEt" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab)
+"cEx" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab)
+"cEz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEA" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab)
+"cEC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/science/lab)
+"cED" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/lab)
+"cEE" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Aft Maintenance APC"; pixel_x = -26},/turf/open/floor/plating,/area/maintenance/aft)
+"cEF" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEG" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cEJ" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab)
+"cEL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/science/lab)
+"cEM" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cEO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"cEP" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab)
+"cEQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cER" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Locker Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cES" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cET" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cEU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Locker Room"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cEV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cEW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cEX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cEY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cEZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFd" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFe" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFg" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cFh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFi" = (/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFj" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFk" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFl" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFm" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFn" = (/obj/structure/closet/l3closet,/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFo" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFq" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFs" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFt" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Medbay - Port"; dir = 4},/obj/machinery/power/apc{areastring = "/area/medical/medbay/central"; dir = 8; name = "Medbay APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFw" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/window/westright{name = "Treatment Center"; req_access_txt = "5"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFz" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/healthanalyzer,/obj/item/clothing/neck/stethoscope,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cFA" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 5},/obj/item/storage/box/syringes{pixel_x = -4},/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cFB" = (/obj/machinery/vending/snack/teal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"cFC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/medical/medbay/central)
+"cFD" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFF" = (/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"cFG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"cFH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Break Room"; req_access_txt = "5"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFI" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet/blue,/area/medical/medbay/central)
+"cFL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"cFM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"cFN" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
+"cFO" = (/obj/structure/closet/crate/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFP" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/item/reagent_containers/pill/patch/styptic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet/blue,/area/medical/medbay/central)
+"cFQ" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet/blue,/area/medical/medbay/central)
+"cFR" = (/obj/structure/closet/crate/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cFT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"cFU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cFV" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/multitool{pixel_x = 3},/obj/item/multitool{pixel_x = 3},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = -1},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 4},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"cFW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/robotics/lab)
+"cFX" = (/obj/machinery/chem_heater,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
+"cFY" = (/turf/open/floor/plasteel,/area/router/air)
+"cFZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/button/massdriver{id = "airbridge_out"; pixel_x = -8; pixel_y = 24},/turf/open/floor/plasteel,/area/router/air)
+"cGa" = (/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
+"cGb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "MedSci Router"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cGc" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cGd" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Medbay Locker Room"; dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cGe" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/item/reagent_containers/blood/OMinus{pixel_x = 4; pixel_y = 3},/obj/item/reagent_containers/food/drinks/coffee{pixel_x = 6},/obj/item/storage/box/masks{pixel_x = -4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cGf" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
+"cGg" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
+"cGh" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/window/reinforced/spawner,/obj/machinery/mass_driver{dir = 4; id = "airbridge_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router/air)
+"cGi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cGj" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cGk" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cGl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cGm" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cGn" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cGo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/science/research{name = "Research Sector"})
+"cGp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cGq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGr" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cGt" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cGu" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
+"cGv" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cGy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGz" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cGA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGC" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cGF" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/engine,/area/science/storage)
+"cGG" = (/obj/machinery/power/apc{areastring = "/area/science/storage"; dir = 4; name = "Toxins Storage APC"; pixel_x = 24},/obj/structure/cable,/turf/open/floor/engine,/area/science/storage)
+"cGH" = (/obj/machinery/camera{c_tag = "Toxins Lab - Storage"; dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/engine,/area/science/storage)
+"cGI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/chair/office/light,/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel,/area/medical/chemistry)
+"cGJ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/science/storage)
+"cGK" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine,/area/science/storage)
+"cGL" = (/obj/structure/table,/obj/item/extinguisher,/obj/item/storage/toolbox/mechanical,/obj/item/wrench,/obj/item/clothing/mask/gas,/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/turf/open/floor/engine,/area/science/storage)
+"cGM" = (/obj/structure/tank_dispenser,/turf/open/floor/engine,/area/science/storage)
+"cGN" = (/obj/structure/closet/l3closet,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cGO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cGP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/storage)
+"cGQ" = (/obj/machinery/door/airlock/research{name = "Plasma Canister Storage"; req_access_txt = "7;8"},/turf/open/floor/engine,/area/science/storage)
+"cGR" = (/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cGS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cGT" = (/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cGU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5;6"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"cGV" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/science/storage)
+"cGW" = (/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/science/storage)
+"cGX" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit)
+"cGY" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cGZ" = (/turf/open/floor/plating/airless,/area/science/storage)
+"cHa" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/warning/fire{pixel_x = -32},/obj/machinery/camera{c_tag = "Toxins Lab - Plasma Storage"; dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/science/storage)
+"cHb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit)
+"cHc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cHd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cHe" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit)
+"cHf" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel/white,/area/science/circuit)
+"cHg" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cHh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cHi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit)
+"cHj" = (/obj/structure/table,/obj/item/storage/hypospraykit/toxin{pixel_x = -5},/obj/item/storage/hypospraykit/fire{pixel_x = 5},/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/explab)
+"cHk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab)
+"cHl" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab)
+"cHm" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab)
+"cHn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab)
+"cHo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHq" = (/obj/structure/closet/firecloset,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHt" = (/obj/structure/disposalpipe/junction,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHu" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHv" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Research - Experimentation Hall"; dir = 8; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/explab)
+"cHy" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/science/explab)
+"cHz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/science/explab)
+"cHA" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHB" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHC" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/science/explab"; dir = 4; name = "Experimentation Lab APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/item/beacon,/turf/open/floor/engine,/area/science/explab)
+"cHE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/engine,/area/science/explab)
+"cHF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/engine,/area/science/explab)
+"cHG" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHH" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
+"cHJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/science/explab)
+"cHK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cHL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cHM" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cHN" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cHO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cHP" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cHQ" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cHR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_one_access_txt = "9;45"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"cHS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cHT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/rust,/area/medical/morgue)
+"cHU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cHV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"cHW" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel,/area/medical/chemistry)
+"cHX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
+"cHY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
+"cHZ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "Airbridge Router"},/turf/open/floor/plating,/area/router/air)
+"cIa" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft)
+"cIb" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/storage/firstaid/radbgone,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cIc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft)
+"cId" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft)
+"cIe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft)
+"cIf" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft)
+"cIg" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cIh" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
+"cIi" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
+"cIj" = (/obj/structure/chair,/obj/effect/landmark/start/geneticist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cIk" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cIl" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cIm" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cIn" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
+"cIo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab Maintenance"; req_access_txt = "9"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/medical/genetics)
+"cIp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft)
+"cIq" = (/obj/structure/window/reinforced/spawner,/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor{dir = 1; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
+"cIr" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28; pixel_y = -4},/obj/machinery/light_switch{pixel_x = -24; pixel_y = 10},/turf/open/floor/plasteel,/area/engine/workshop)
+"cIs" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos)
+"cIt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cIu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cIv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIx" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/camera{c_tag = "Aft Hall"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIA" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIB" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIC" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cID" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIE" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIF" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIG" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIH" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cII" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIK" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIL" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Engineering Sector"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIQ" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIS" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIU" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=evac"; location = "eng1"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cIZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cJa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cJb" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cJc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cJd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cJe" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"cJg" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"cJh" = (/obj/structure/table,/obj/structure/bedsheetbin/towel,/obj/machinery/camera{c_tag = "Aft Restrooms"; dir = 8; pixel_y = -22},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"cJi" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office)
+"cJj" = (/obj/machinery/computer/security/mining,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cJk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop)
+"cJl" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Engine Room - Starboard Quarter"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cJm" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos)
+"cJn" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"cJo" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
+"cJp" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"cJq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/suit_storage_unit/engine,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"cJr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 5},/turf/open/space/basic,/area/space/nearstation)
+"cJs" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"cJt" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"cJu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
+"cJv" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Engineering Router"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"cJw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cJx" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 1},/turf/open/space/basic,/area/space/nearstation)
+"cJy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/rnd/production/circuit_imprinter,/turf/open/floor/plasteel,/area/engine/workshop)
+"cJz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/warehouse)
+"cJA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"cJB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
+"cJC" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cJD" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cJE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cJF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cJG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable{icon_state = "0-8"},/obj/structure/table,/obj/machinery/light/small,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/engine/gravity_generator"; dir = 4; name = "Gravity Generator APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/gravity_generator)
+"cJH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
+"cJI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator)
+"cJJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cJK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cJM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cJN" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cJO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
+"cJP" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cJQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"cJR" = (/obj/machinery/door/airlock/engineering{name = "Canister Storage"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cJS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cJT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cJU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cJV" = (/obj/structure/plasticflaps,/obj/machinery/door/poddoor{id = "DeliveryDoor"; name = "Delivery Door"},/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cJW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cJX" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cJY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"cJZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cKa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cKb" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cKc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Canister Storage"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
+"cKd" = (/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/sorting)
+"cKe" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "Airbridge Router"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/air)
+"cKf" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/air)
+"cKg" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/vending/engivend,/turf/open/floor/plasteel,/area/storage/primary)
+"cKh" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cKi" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/medical{name = "Apothecary"; req_access_txt = "5"},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
+"cKj" = (/obj/structure/closet/secure_closet/CMO,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/paper/guides/cogstation/letter_cmo,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"cKk" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cKl" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
+"cKm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/medical/medbay/central)
+"cKn" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cKo" = (/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 9},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cKp" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cKq" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
+"cKr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cKs" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cKt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cKu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cKv" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cKw" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/science/xenobiology)
+"cKx" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating/airless,/area/science/xenobiology)
+"cKy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/xenobiology)
+"cKz" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cKA" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cKB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cKC" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chief_medical_officer,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"cKD" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cKE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
+"cKF" = (/obj/effect/turf_decal/delivery,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cKG" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/wardrobe/yellow,/turf/open/floor/plasteel,/area/hallway/primary/central)
+"cKH" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cKI" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/science/mixing)
+"cKJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/mixing)
+"cKK" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/mixing)
+"cKL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing)
+"cKM" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing)
+"cKN" = (/obj/structure/table/reinforced,/obj/item/assembly/signaler{pixel_x = -4},/obj/item/assembly/signaler,/obj/item/assembly/signaler{pixel_y = 8},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/science/mixing)
+"cKO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cKP" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/sign/departments/custodian{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/aft)
+"cKQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output,/turf/open/floor/engine/vacuum,/area/engine/atmos)
+"cKR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input,/turf/open/floor/engine/n2o,/area/engine/atmos)
+"cKS" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output,/turf/open/floor/engine/n2o,/area/engine/atmos)
+"cKT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input,/turf/open/floor/engine/plasma,/area/engine/atmos)
+"cKU" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output,/turf/open/floor/engine/plasma,/area/engine/atmos)
+"cKV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input,/turf/open/floor/engine/co2,/area/engine/atmos)
+"cKW" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output,/turf/open/floor/engine/co2,/area/engine/atmos)
+"cKX" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
+"cKY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
+"cKZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation)
+"cLa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation)
+"cLb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating,/area/engine/atmos)
+"cLc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/atmos)
+"cLd" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
+"cLe" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos)
+"cLf" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos)
+"cLg" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/open/floor/plasteel,/area/engine/atmos)
+"cLh" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cLi" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
+"cLj" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos)
+"cLk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "CO2 Outlet Pump"},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos)
+"cLl" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cLm" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
+"cLn" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 8},/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/turf/open/floor/plasteel,/area/storage/primary)
+"cLo" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/engine/atmos)
+"cLp" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
+"cLq" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/engine/atmos)
+"cLr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/storage/primary)
+"cLs" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"cLt" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos)
+"cLu" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos)
+"cLv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos)
+"cLw" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos)
+"cLx" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos)
+"cLy" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos)
+"cLz" = (/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/turf/open/floor/plasteel,/area/storage/primary)
+"cLA" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera{c_tag = "Virology - Starboard"; dir = 8; pixel_y = -22},/obj/machinery/power/apc{areastring = "/area/medical/virology"; dir = 4; name = "Virology Lab APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"cLB" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/air)
+"cLC" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/camera{c_tag = "Virology - Port"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cLD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cLE" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel,/area/router/air)
+"cLF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cLG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cLH" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"cLI" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
+"cLJ" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/router/air)
+"cLK" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor{id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
+"cLL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cLM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cLN" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cLO" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
+"cLP" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/syringes,/obj/item/hand_labeler,/obj/item/radio/headset/headset_med,/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
+"cLQ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/obj/machinery/door/poddoor{name = "Airbridge Router"},/turf/open/floor/plating,/area/router/air)
+"cLR" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "workshop_in"; name = "Router Driver"},/turf/open/floor/plating,/area/engine/workshop)
+"cLS" = (/obj/machinery/light,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/medical/virology)
+"cLT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/medical/virology)
+"cLU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/turf/open/floor/plating/airless,/area/medical/virology)
+"cLV" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cLW" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"cLX" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
+"cLY" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"cLZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
+"cMa" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"cMb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
+"cMc" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMd" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "N2 to Airmix"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMe" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer)
+"cMg" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMi" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/atmos)
+"cMj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{dir = 1},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"cMk" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"cMl" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMm" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMn" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "N2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMo" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"cMq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMr" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMs" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"cMt" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"cMu" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
+"cMv" = (/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = -24; pixel_y = 8},/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = -40; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"cMw" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "Waste Release"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMx" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMy" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Nitrogen Outlet"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMz" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Atmospherics - Starboard Aft"; dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMA" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/engine/atmos)
+"cMB" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "O2 to Airmix"},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"cMD" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
+"cME" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
+"cMF" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
+"cMG" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
+"cMH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
+"cMI" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos)
+"cMJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos)
+"cMK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/computer)
+"cML" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
+"cMM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
+"cMN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
+"cMO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
+"cMP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/floor/plating/airless,/area/engine/atmos)
+"cMQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"cMR" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation)
+"cMS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space/basic,/area/space/nearstation)
+"cMT" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
+"cMU" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 8; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
+"cMV" = (/obj/machinery/conveyor{dir = 10; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
+"cMW" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/tool,/turf/open/floor/plasteel,/area/engine/workshop)
+"cMX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/multitool,/obj/item/multitool,/turf/open/floor/plasteel,/area/engine/workshop)
+"cMY" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/machinery/camera{c_tag = "Engineering - Workshop"; dir = 1},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/item/t_scanner,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/engine/workshop)
+"cMZ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/engine/workshop)
+"cNa" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair,/obj/effect/landmark/start/station_engineer,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop)
+"cNb" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop)
+"cNc" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/item/storage/toolbox/electrical,/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
+"cNd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/crate/engineering,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop)
+"cNe" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop)
+"cNf" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/workshop)
+"cNg" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/engine/workshop)
+"cNh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "Airbridge Router"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/air)
+"cNi" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/air)
+"cNj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/air)
+"cNk" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/router/air)
+"cNl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/router/air)
+"cNm" = (/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
+"cNn" = (/obj/machinery/conveyor{dir = 10; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
+"cNo" = (/turf/closed/wall/rust,/area/engine/workshop)
+"cNp" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{name = "Workshop Desk"; req_access_txt = "11"},/obj/item/paper_bin,/obj/item/pen,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop)
+"cNq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Workshop Desk"; req_access_txt = "11"},/obj/item/folder/yellow,/turf/open/floor/plasteel,/area/engine/workshop)
+"cNr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/engine/workshop)
+"cNs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall,/area/engine/workshop)
+"cNt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/engine/workshop)
+"cNu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/engineering{name = "Engineering Workshop"; req_access_txt = "11"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/workshop)
+"cNv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/closed/wall,/area/engine/workshop)
+"cNw" = (/turf/closed/wall/r_wall,/area/router/air)
+"cNx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft)
+"cNy" = (/turf/closed/wall/r_wall,/area/quartermaster/miningdock/airless)
+"cNz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningdock/airless)
+"cNA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office)
+"cNB" = (/turf/open/floor/plating,/area/quartermaster/miningdock/airless)
+"cNC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
+"cND" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
+"cNE" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNF" = (/obj/item/shovel,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNH" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNI" = (/turf/open/floor/plating/airless,/area/router/aux)
+"cNJ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/machinery/camera{c_tag = "Medbay - Starboard"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cNK" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/engine/teg_hot)
+"cNL" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/engine/teg_cold)
+"cNM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNN" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNO" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/frame/computer{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningdock/airless)
+"cNQ" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/router/aux)
+"cNR" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNS" = (/obj/machinery/power/apc{name = "Mining Dock APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNT" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNU" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/plasteel/fifty,/turf/open/floor/plating,/area/quartermaster/miningdock/airless)
+"cNV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cNW" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Supply - Mining Exterior"; dir = 4},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
+"cNX" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
+"cNY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Refinery"; req_access_txt = "48"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cNZ" = (/obj/machinery/door/airlock/external/glass{name = "Refinery"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
+"cOa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cOb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
+"cOc" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Supply - Refinery Exterior"; pixel_x = 22},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
+"cOd" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
+"cOe" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
+"cOg" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
+"cOh" = (/obj/structure/lattice,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
+"cOi" = (/obj/machinery/conveyor_switch{id = "MiningConveyer"},/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOj" = (/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOk" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOl" = (/turf/closed/wall/r_wall,/area/quartermaster/miningdock/airless/no_grav)
+"cOm" = (/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
+"cOn" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOo" = (/obj/structure/table,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOp" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOq" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cOr" = (/obj/machinery/light/small,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOs" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOt" = (/obj/structure/closet/crate,/obj/item/stack/rods/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOu" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOv" = (/obj/item/storage/toolbox/emergency,/obj/structure/table,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
+"cOw" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
+"cOx" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router/medsci"; dir = 1; name = "MedSci Router APC"; pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/router/medsci)
+"cOy" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/router/medsci)
+"cOz" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/router/medsci)
+"cOA" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/router/medsci)
+"cOB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/medsci)
+"cOC" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light_switch{pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/medsci)
+"cOD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft)
+"cOE" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/router/medsci)
+"cOF" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/router/medsci)
+"cOG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/router/medsci)
+"cOH" = (/obj/machinery/computer/cargo/request{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/router/medsci)
+"cOI" = (/turf/closed/wall/r_wall,/area/router/medsci)
+"cOJ" = (/obj/machinery/conveyor{id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci)
+"cOK" = (/obj/structure/table/reinforced,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/machinery/light,/obj/machinery/button/massdriver{id = "medsci_out"; pixel_x = -8; pixel_y = 8},/obj/machinery/requests_console{department = "MedSci Router"; name = "MedSci Router RC"; pixel_y = -32},/turf/open/floor/plating,/area/router/medsci)
+"cOL" = (/obj/machinery/conveyor{dir = 1; id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci)
+"cOM" = (/turf/closed/wall/r_wall,/area/janitor/aux)
+"cON" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Auxiliary Custodial Closet"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/janitor/aux)
+"cOO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/janitor/aux)
+"cOP" = (/obj/machinery/mass_driver{id = "medsci_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/medsci)
+"cOQ" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/janitor/aux"; dir = 1; name = "Auxiliary Custodial Closet APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/janitor/aux)
+"cOR" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/janitor/aux)
+"cOS" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/storage/box/lights/mixed,/obj/item/light/tube,/obj/item/radio/off,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/janitor/aux)
+"cOT" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "MedSci Router"},/turf/open/floor/plating,/area/router/medsci)
+"cOU" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "MedSci Router"},/obj/machinery/conveyor{dir = 1; id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci)
+"cOV" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/storage/box/mousetraps,/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/janitor/aux)
+"cOW" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/janitor/aux)
+"cOX" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/janitor/aux)
+"cOY" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/janitor/aux)
+"cOZ" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Custodial Closet - Auxiliary"; dir = 1},/turf/open/floor/plasteel,/area/janitor/aux)
+"cPa" = (/obj/structure/mopbucket,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/janitor/aux)
+"cPb" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/janitor/aux)
+"cPc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/virology)
+"cPd" = (/obj/machinery/conveyor{id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPe" = (/obj/machinery/mass_driver{dir = 1; id = "sq_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPf" = (/obj/machinery/conveyor/auto,/turf/open/floor/plating/airless,/area/router/aux)
+"cPg" = (/obj/machinery/mass_driver{dir = 1; id = "medsci_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPh" = (/obj/machinery/conveyor{dir = 1; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPi" = (/obj/machinery/conveyor{dir = 1; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPj" = (/obj/machinery/conveyor{dir = 9; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPk" = (/obj/machinery/conveyor{dir = 8; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPl" = (/obj/machinery/mass_driver{dir = 8; id = "viro_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPm" = (/obj/machinery/conveyor{dir = 8; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPn" = (/obj/machinery/conveyor{dir = 10; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPo" = (/obj/machinery/conveyor{dir = 4; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPp" = (/obj/machinery/mass_driver{dir = 4; id = "viro_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPq" = (/obj/machinery/conveyor{dir = 4; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
+"cPr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hydroponics/lobby)
+"cPs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge)
+"cPt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
+"cPu" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/break_room)
+"cPv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
+"cPw" = (/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
+"cPx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cPy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/contraband/lusty_xenomorph{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft)
+"cPz" = (/obj/structure/lattice,/obj/structure/transit_tube/curved{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"cPA" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"cPB" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/transit_tube/crossing/horizontal,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"cPC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/transit_tube/horizontal,/turf/open/floor/plasteel,/area/engine/atmos)
+"cPD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos)
+"cPE" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation)
+"cPF" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation)
+"cPG" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Supply - Warehouse Exterior"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation)
+"cPH" = (/obj/machinery/conveyor_switch{id = "EngiCargoConveyer"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/quartermaster/sorting"; dir = 8; name = "Delivery Office APC"; pixel_x = -26},/turf/open/floor/plasteel,/area/quartermaster/sorting)
+"cPI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
+"cPJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
+"cPK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Engineering Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
+"cPL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Engineering Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
+"cPM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/machinery/recharger,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_x = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
+"cPN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cPO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/aft)
+"cPP" = (/obj/effect/landmark/start/paramedic,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
+"cPQ" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/medical/genetics"; dir = 8; name = "Genetics Lab APC"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft)
+"cPR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
+"cPS" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "CMO's Office"; req_access_txt = "40"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
+"cPT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
+"cPU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cPV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cPW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cPX" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/xenobiology)
+"cPY" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/xenobiology)
+"cPZ" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology)
+"cQb" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQc" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQd" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQe" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology)
+"cQg" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
+"cQh" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQi" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQj" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
+"cQk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology)
+"cQl" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQm" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology)
+"cQp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQq" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQr" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/machinery/button/door{id = "xenobio4"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQs" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
+"cQt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQu" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
+"cQv" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQw" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQx" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQy" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
+"cQz" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQB" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
+"cQC" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/button/door{id = "xenobio5"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQD" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQE" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQF" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
+"cQH" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "xenobio7"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQI" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology)
+"cQJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology)
+"cQK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology)
+"cQL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/science/xenobiology)
+"cQM" = (/obj/machinery/door/window/southright{name = "Secure Xenobiological Containment"; req_one_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
+"cQN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology)
+"cQO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology)
+"cQP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/science/xenobiology)
+"cQQ" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
+"cQR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/bridge)
+"cQS" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"cQT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"cQU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
+"cQV" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/bridge)
+"cQW" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/machinery/camera{c_tag = "Bridge - Port Quarter"; dir = 1},/obj/machinery/keycard_auth{pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
+"cQX" = (/obj/machinery/photocopier,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
+"cQY" = (/obj/structure/reagent_dispensers/water_cooler,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
+"cQZ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/bridge)
+"cRa" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/machinery/door/poddoor{id = "MiningConveyorBlastDoor"; name = "Asteroid Mining Load Door"},/turf/open/floor/plating/airless,/area/quartermaster/miningoffice)
+"cRb" = (/obj/machinery/computer/cloning,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/item/paper/guides/jobs/medical/cloning{pixel_x = -4},/obj/item/paper/fluff/cogstation/cloner{pixel_x = 6},/turf/open/floor/plasteel,/area/medical/medbay/central)
+"cRc" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/door/airlock/research{name = "Aft Observatory"; req_access_txt = "47"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cRd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/research{name = "Aft Observatory"; req_access_txt = "47"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
+"cRe" = (/obj/machinery/computer/upload/ai{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
+"cRf" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/flasher{id = "ID"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
+"cRg" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
+"cRh" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/turretid{control_area = "/area/science/server"; icon_state = "control_stun"; name = "Computer Core turret control"; pixel_x = -3; pixel_y = -23; req_access_txt = "65"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
+"cRi" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab)
+"cRj" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/dark/side{dir = 6},/area/science/robotics/lab)
+"cRk" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_y = 3; pixel_x = 4},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_x = -6; pixel_y = 6},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/button/door{id = "robotics3"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"cRl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"cRm" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/stripes/red/full,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/poster/official/cleanliness{pixel_y = -32},/obj/machinery/disposal/bin{name = "Corpse Disposal Unit"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
+"cRn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"cRo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"cRp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
+"cRq" = (/obj/machinery/rnd/production/circuit_imprinter/department/science,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"cRr" = (/obj/machinery/droneDispenser,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/effect/turf_decal/stripes/line{dir = 5; layer = 2.03},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"cVq" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
+"cVO" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"dpO" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"dVR" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
+"dYm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/science/storage)
+"eCy" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/engine/atmos)
+"eIh" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "N2O Outlet Pump"},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos)
+"eKM" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"eTZ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"eUF" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/space/basic,/area/space/nearstation)
+"fgS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Plasma Outlet Pump"},/turf/open/floor/plasteel,/area/engine/atmos)
+"fkx" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"frb" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
+"fti" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"fui" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/turf/open/space/basic,/area/space)
+"fuE" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation)
+"fuR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 30},/turf/open/floor/plasteel,/area/science/mixing)
+"fIw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
+"guK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space)
+"gDY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Fuel Pipe to Incinerator"},/obj/machinery/light,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"gGG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"gVV" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine,/area/science/storage)
+"hcR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/closed/wall/r_wall,/area/bridge)
+"hiV" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
+"hlo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
+"hlV" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
+"hDz" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"hFa" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage)
+"hKC" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
+"hMZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Pure to Port"},/turf/open/floor/plasteel,/area/engine/atmos)
+"hXk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
+"ifC" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/orange/visible,/turf/open/space/basic,/area/space/nearstation)
+"iAW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"iQY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/atmos)
+"jiZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/atmos)
+"jml" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
+"jon" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"jyu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
+"jMO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"jXo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos)
+"kxw" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/open/space/basic,/area/space)
+"kzb" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/bridge)
+"kOG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos)
+"lcD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Air to Port"},/turf/open/floor/plasteel,/area/engine/atmos)
+"lRy" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"mkx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"mqB" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"mxW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation)
+"mBP" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/science/mixing)
+"mEa" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
+"mIm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/engine,/area/science/storage)
+"mIT" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation)
+"mKP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
+"mNN" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"ntC" = (/obj/machinery/atmospherics/components/binary/pump{name = "Port to Fuel Pipe"},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"nvn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
+"nAF" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Port"},/turf/open/floor/plasteel,/area/engine/atmos)
+"nBM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
+"nEX" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos)
+"nLV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
+"ony" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
+"opd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
+"oMB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/atmos)
+"pgu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation)
+"prx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"qeq" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/space/basic,/area/space/nearstation)
+"qgO" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/atmos)
+"qlJ" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation)
+"qvB" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"qHL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plating,/area/engine/atmos)
+"qWY" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste In"},/turf/open/floor/plasteel,/area/engine/atmos)
+"rdF" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos)
+"rTW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 6},/turf/open/space/basic,/area/space/nearstation)
+"rUl" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
+"sdp" = (/obj/structure/reagent_dispensers/foamtank,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"sHB" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"sRD" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos)
+"sVC" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation)
+"tjb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
+"tpQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/open/space/basic,/area/space/nearstation)
+"tuF" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/atmos)
+"tyI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos)
+"tXV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/turf/open/floor/plasteel,/area/engine/atmos)
+"tZj" = (/obj/structure/tank_dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos)
+"tZC" = (/obj/machinery/atmospherics/pipe/manifold4w/orange/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
+"urj" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
+"uwK" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
+"uAY" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/engine/atmos)
+"uVD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos)
+"vcb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
+"vsO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/atmos)
+"vxU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/engine/atmos)
+"wbu" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
+"wPS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation)
+"wWH" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos)
+"xcO" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix Outlet Pump"},/turf/open/floor/plasteel,/area/engine/atmos)
+"xjk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"xkC" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos)
+"xoj" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/plasteel,/area/engine/atmos)
+"xxP" = (/turf/closed/wall,/area/quartermaster/storage)
+"xCy" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
+"xKr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
(1,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(2,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(3,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(4,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(5,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(6,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(7,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(8,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(9,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(10,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(11,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(12,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(13,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(14,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(15,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(16,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(17,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(18,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(19,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(20,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(21,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(22,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(23,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaw
-aaf
-aaw
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(24,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bnj
-aaw
-bHZ
-aaw
-bnj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(25,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaw
-aaw
-acp
-bJM
-acp
-aaw
-aaw
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(26,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaf
-aaf
-acp
-bef
-crG
-crK
-acp
-aaf
-aaf
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(27,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaw
-bgD
-acp
-beh
-bKH
-crL
-acp
-bLB
-aaw
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(28,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaf
-aaf
-acp
-bFr
-crH
-crM
-acp
-aaf
-aaf
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(29,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaw
-aaw
-acp
-acp
-acp
-aaw
-aaw
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(30,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bnj
-aaw
-crG
-aaw
-bnj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(31,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaw
-crH
-aaw
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(32,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(33,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(34,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(35,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(36,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(37,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-cpC
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(38,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(39,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(40,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(41,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(42,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(43,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-crB
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(44,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aye
-aEf
-akI
-akI
-akI
-akI
-akI
-akI
-akI
-akI
-akI
-akI
-akI
-akI
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-crE
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(45,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aye
-aaU
-akI
-adp
-ajt
-chi
-arW
-aHo
-buV
-bxu
-akI
-bxB
-bxQ
-bxZ
-byb
-byi
-byn
-byp
-byB
-byG
-byL
-byB
-clI
-byn
-clP
-byi
-aaa
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(46,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aye
-aaa
-akI
-adZ
-chh
-cMf
-axF
-aIM
-mKP
-crz
-cMf
-bxE
-bxW
-bya
-byb
-byk
-byn
-byq
-byn
-byH
-clD
-byn
-clJ
-byn
-clQ
-byi
-aaU
-aye
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(47,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aye
-aaa
-akI
-ajZ
-anx
-akJ
-aAI
-aMx
-cnn
-bxx
-bxD
-bxI
-bxJ
-byb
-byb
-byb
-byn
-byx
-byn
-byn
-byn
-byn
-clK
-byn
-clR
-byi
-aaa
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(48,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aye
-aaa
-akI
-ahh
-aCf
-akI
-aAJ
-cMp
-aYa
-bxm
-akI
-aNC
-bxv
-byf
-byj
-byl
-byn
-byn
-byn
-byI
-clE
-byn
-byn
-byn
-crD
-byi
-aaa
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(49,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aye
-aaU
-akI
-ajn
-aLH
-akI
-aAK
-aRC
-bxn
-akI
-bxA
-hiV
-cvI
-byb
-byb
-byb
-byn
-byy
-byn
-byn
-byn
-byn
-clL
-byn
-clS
-byi
-aaa
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(50,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aye
-cep
-akI
-akI
-akI
-akI
-aGa
-cMK
-bxo
-akI
-akI
-bbk
-bxX
-byg
-byb
-bym
-byn
-byz
-byn
-byJ
-clF
-byn
-clM
-byn
-clT
-byi
-aaU
-aye
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(51,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aEa
-cMK
-bxq
-bxC
-akI
-bxK
-bxY
-byh
-byb
-byi
-byn
-byA
-byC
-byK
-clG
-byC
-clN
-byn
-clU
-byi
-aaa
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(52,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aEa
-cMK
-bxt
-akI
-akI
-akI
-akI
-akI
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-byi
-crF
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(53,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aEa
-aHE
-bab
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-crC
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(54,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aEb
-aPT
-aaU
-aaU
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(55,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(56,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-agL
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(57,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aiq
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(58,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aiq
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cpC
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(59,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaL
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaL
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(60,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-cpC
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(61,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(62,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEb
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(63,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-cpC
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(64,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-bxT
-bxT
-bFl
-bxT
-bFl
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bAb
-cKw
-cli
-bxT
-bxT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(65,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-cpC
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bxT
-bFj
-bHS
-bSj
-bJr
-bFj
-bxT
-bKE
-caV
-bKM
-bxT
-bKE
-clf
-bKM
-bxT
-bKE
-ctL
-bKM
-bxT
-ctQ
-cKx
-clj
-clk
-clj
-clm
-cln
-cln
-cln
-clp
-clq
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(66,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-cpC
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bxT
-bFk
-bHS
-bIE
-bJr
-bFk
-bxT
-bKF
-bLd
-bKM
-bxT
-bKF
-bLd
-bKM
-bxT
-bKF
-bKM
-bKM
-bxT
-bxT
-cKy
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-clr
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(67,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bxT
-bFl
-bFl
-bZz
-bFl
-bFl
-bxT
-bKF
-bKM
-bKM
-bxT
-bKF
-bKM
-bKM
-bxT
-bKF
-bKM
-bKM
-bxT
-bOs
-cKz
-bOG
-bOP
-bxT
-bOW
-bOZ
-bPc
-bPe
-bxT
-cls
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(68,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaK
-aaM
-abi
-aaa
-aaa
-aaU
-aEa
-aPT
-aaU
-aaU
-aaa
-aaU
-aPV
-bik
-bik
-bik
-bik
-bik
-bik
-cQT
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bbv
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bxT
-bFm
-bHT
-bFt
-bJs
-bJV
-bxT
-cQa
-cQg
-cQk
-bxT
-cQa
-cQs
-cQk
-bxT
-cQa
-cQy
-cQk
-bxT
-cvz
-cKA
-bOH
-cQJ
-bxT
-bKM
-bKM
-bKM
-bKM
-bxT
-cls
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(69,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bOc
-aaU
-aaU
-aaU
-aaU
-bOc
-aaU
-aaU
-aaU
-aaU
-bOc
-aaU
-aaU
-aaU
-aaU
-aEa
-aPT
-aaU
-aaU
-aPV
-bik
-cQS
-aIA
-aJe
-aLE
-aLy
-aMQ
-aNF
-cQU
-bik
-cQT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bxT
-cnb
-bHU
-bOF
-bJt
-bJW
-bxT
-cbo
-bLf
-cQl
-bxT
-cbo
-bLf
-cQv
-bxT
-cbo
-bLf
-cQC
-bxT
-ctT
-cKB
-bOI
-cQK
-bOT
-bKM
-bKM
-bKM
-bPf
-bxT
-cls
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(70,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bOf
-ciA
-ciA
-ciA
-ciA
-cnG
-cnH
-aaL
-cnI
-ciA
-cnJ
-abh
-abh
-abh
-abh
-aEb
-aPT
-aaU
-aaU
-aPW
-aHD
-aIg
-aHF
-aJn
-aHF
-aHF
-aJn
-aHF
-aPp
-cQV
-cQS
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-bxT
-bFo
-bHV
-bYz
-cPU
-cPW
-cPY
-cQb
-cQh
-cQm
-cQh
-cQh
-cQh
-cQh
-cQw
-cQh
-cQz
-cQD
-cjP
-ctR
-cQF
-cQH
-cQL
-bKM
-bKM
-bKM
-bKM
-bPg
-bxT
-cls
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(71,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abx
-aoH
-abx
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aEa
-aPT
-aaU
-aPU
-aTH
-bRD
-aHF
-aHF
-aIE
-aIE
-aIE
-aIE
-csD
-aHF
-cQW
-aGq
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaU
-aaa
-bcy
-cnU
-cnU
-cnU
-bZW
-aaa
-aaU
-aaU
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-bxT
-cdD
-bHW
-bIG
-cPV
-cPX
-cPZ
-cQc
-cQi
-cQn
-cQi
-cQp
-cQt
-cQi
-cQi
-cQp
-cQA
-cQE
-cbF
-cnl
-cla
-bOK
-cQM
-bKM
-bKM
-bPa
-bKM
-cun
-bxT
-cls
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(72,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aju
-aoP
-aqM
-aaU
-aaU
-aaa
-aaa
-aaa
-aGq
-aDn
-aLK
-aGq
-aGq
-aKH
-cQQ
-aHF
-aIE
-aJu
-aKA
-bhB
-aMX
-aIE
-aHF
-cQX
-aQW
-bkC
-bkC
-aQW
-bkC
-aQW
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-bcw
-aUZ
-bcw
-aaa
-bcy
-bdc
-byc
-bdc
-bcy
-aaU
-aaU
-aaa
-cbb
-cbg
-chT
-cpD
-cGH
-cbb
-aaa
-aaa
-aaa
-aaU
-aaa
-bAb
-bxT
-bFq
-bHY
-bIH
-cGA
-bJX
-bKq
-cQd
-bLi
-bLi
-bLF
-cQq
-bMi
-bLi
-bLi
-cQq
-bLi
-bLi
-cvV
-ckS
-cQG
-cQI
-cQN
-bKM
-bKM
-bKM
-bKM
-bPi
-bxT
-cls
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(73,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abx
-aqw
-aoW
-aqw
-aqw
-aaU
-aaa
-aaa
-aaa
-aGq
-aEe
-aUz
-bDP
-aGq
-aGL
-cQQ
-aHF
-aIH
-aJz
-aKE
-aLI
-aMX
-aIE
-aHF
-cQY
-aQW
-bmj
-bBt
-cDB
-bLh
-aQW
-aQW
-bkC
-bVN
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-bcw
-bde
-bcw
-bYg
-bcy
-bfp
-cwY
-bOD
-bcy
-aaU
-aaU
-aaa
-cbb
-hFa
-csR
-csR
-csR
-cbb
-aaU
-aaU
-aaU
-aaU
-aaU
-bAf
-bxT
-crN
-crO
-bII
-cGB
-bFw
-bxT
-cQe
-bLj
-ckN
-bxT
-cQr
-bLj
-ckN
-bxT
-cQx
-bLj
-ckN
-bxT
-bOy
-cla
-bOM
-cQO
-bOU
-bKM
-bKM
-bKM
-bPj
-bxT
-cls
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(74,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abx
-akg
-apS
-arr
-abx
-aaU
-aaa
-aaa
-aaa
-aGq
-aXj
-aZq
-bDQ
-hcR
-aGM
-cQQ
-aHF
-aII
-abO
-aKG
-aRe
-aXS
-bbb
-aHF
-cQQ
-aQW
-baP
-bCd
-cjQ
-bLk
-aVP
-cpt
-bOR
-bXI
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bcw
-bee
-bcw
-crI
-bcy
-bfo
-blG
-bfo
-bcy
-aaa
-aaU
-aaU
-cbb
-csR
-csR
-cGJ
-dYm
-cbb
-cGZ
-cGZ
-cbb
-bxT
-bxT
-bAg
-bBJ
-bFs
-bIa
-bIJ
-cGC
-bXO
-bxT
-cQf
-cQj
-cQo
-bxT
-cQf
-cQu
-cQo
-bxT
-cQf
-cQB
-cQo
-bxT
-ctU
-ckX
-bON
-cQP
-bxT
-bKM
-bKM
-bKM
-bKM
-bxT
-cls
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(75,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aiN
-akj
-anV
-asl
-abx
-aaU
-aaU
-aaU
-aaU
-aGq
-aFE
-bdz
-bDR
-aKF
-aLm
-cQR
-aMi
-aQh
-aQN
-aRa
-aRl
-aXT
-bbc
-bbD
-cQZ
-cDt
-cDw
-bEq
-cps
-bMh
-bRb
-bOQ
-bOS
-cbi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bcy
-bdf
-mBP
-crJ
-blT
-bqJ
-bBN
-bKI
-bOr
-aaa
-aaU
-aaa
-cbb
-cbn
-csR
-gVV
-cGK
-cbb
-cbb
-cbb
-cbb
-bJZ
-cby
-bMx
-bxT
-bFt
-bIb
-csY
-cGD
-bZD
-bxT
-bKM
-bKM
-bKF
-bxT
-bKM
-bKM
-bKF
-bxT
-bKM
-bKM
-bKF
-bxT
-bOA
-clb
-bOG
-bOP
-bxT
-bOX
-bPb
-bPd
-bPk
-bxT
-cls
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(76,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aiN
-akz
-aDO
-asH
-awm
-axc
-awm
-ayJ
-aqw
-aGq
-aJL
-aUR
-bEc
-kzb
-aGW
-aHI
-aIL
-aKv
-aGn
-aKK
-aLQ
-aGn
-bbd
-bbG
-bit
-cDu
-cDx
-bFy
-cDC
-bOJ
-aVR
-bBj
-bRc
-bXI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bcy
-bdt
-ctj
-bUF
-bOv
-bfo
-blI
-bfo
-bWS
-bcw
-bcw
-bcw
-bcy
-cbu
-csR
-cGF
-cGL
-cGP
-cGV
-cHa
-cbb
-bxV
-cOq
-cGv
-cGw
-cGy
-cGy
-cGy
-cGE
-bKb
-bxT
-bKM
-bKM
-bKF
-bxT
-bKM
-bLd
-bKF
-bxT
-bKM
-cnD
-bKF
-bxT
-cue
-cvX
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-clr
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(77,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aiN
-akB
-aDT
-atv
-awo
-atv
-axp
-atv
-azy
-aGq
-aJM
-urj
-cbX
-aGq
-aGX
-aHM
-aHM
-aIP
-aJB
-aHM
-aHM
-aNg
-aSW
-aHM
-biF
-aQW
-buM
-bAX
-bEN
-bOL
-aQW
-aQW
-buO
-cbp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bcy
-bec
-bek
-blH
-bnm
-bwN
-bJY
-bLE
-bOE
-bJY
-cKI
-cbP
-bcy
-cbC
-cnO
-csR
-csR
-cGQ
-cGW
-mIm
-cbb
-bKa
-cGq
-bMy
-bxT
-bzy
-bzy
-bIK
-bJx
-bKc
-bxT
-cta
-caZ
-bLy
-bxT
-bKM
-cmQ
-bLy
-bxT
-bKM
-ctM
-bLy
-bxT
-ctS
-cud
-clj
-cll
-clj
-clm
-clo
-clo
-clo
-clp
-clt
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(78,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bfq
-aaa
-aaa
-aaU
-aiN
-alu
-aDT
-aGy
-awu
-auL
-awu
-auL
-aAc
-aGq
-aJX
-bdE
-cen
-aGq
-cvK
-aHM
-cnp
-aIQ
-aJG
-aKL
-bPt
-aNi
-aSW
-aHM
-bju
-aQW
-buO
-buO
-aQW
-buO
-aQW
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bcy
-bed
-boJ
-fuR
-bzX
-bAl
-boL
-bAG
-cnT
-boQ
-cKJ
-bAP
-bcy
-chR
-cnV
-cGG
-cGM
-cGP
-cGV
-cGV
-cbb
-bxT
-cGr
-bxT
-bxT
-bFl
-bFl
-bFl
-bFl
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-bxT
-cvG
-cvY
-bxT
-bxT
-bxT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(79,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-agW
-ahf
-ain
-aaa
-ain
-alt
-agW
-aaa
-aqw
-abx
-aCd
-aDV
-aEp
-aEs
-aIo
-aEs
-aNZ
-atv
-aGq
-aGq
-bdJ
-ceo
-aGq
-aKY
-aHM
-aHM
-aHM
-aHM
-aHM
-aHM
-aHM
-aSW
-aHM
-bjJ
-aGq
-aaU
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-bcy
-bcy
-bcy
-bcy
-bcy
-bgC
-bdf
-boR
-bDL
-boQ
-cKJ
-bAP
-bcy
-bWl
-bZW
-bcy
-cbb
-cbb
-cbb
-cbb
-cbb
-bRh
-bTO
-bVv
-bTR
-aaU
-aaU
-aaU
-aaU
-cav
-cav
-cav
-cav
-cav
-cav
-cav
-aaU
-aaU
-aaa
-aaa
-aaa
-aaU
-cbB
-ctY
-cvA
-cbB
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(80,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-agW
-ahk
-ain
-aaU
-ain
-ahk
-agW
-aaU
-abx
-aiO
-amq
-avW
-awd
-awK
-axf
-awK
-aOK
-aAi
-ceC
-aAR
-aEm
-aGz
-aGs
-aOp
-aOZ
-aPu
-aOZ
-aOZ
-aOZ
-aSa
-aSa
-bbe
-bnG
-bkA
-aGq
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaa
-aaa
-bcw
-bdf
-bdf
-bpM
-bFp
-bvj
-cKK
-bAU
-bRi
-bSl
-bRi
-bcy
-aEF
-bko
-bko
-bko
-bTr
-aVF
-cGt
-aVF
-bTR
-cav
-cav
-cav
-cav
-cav
-cav
-cbe
-cbl
-cbq
-cav
-cav
-cav
-aaU
-aaa
-aaa
-aaa
-aaU
-cbB
-cKr
-cub
-cbB
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(81,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-agW
-ahl
-ain
-ain
-ain
-alv
-agW
-agW
-agW
-aiP
-anV
-auL
-awr
-awM
-asL
-axu
-aOL
-asL
-asL
-asL
-aFj
-aFj
-aFj
-bmc
-aHP
-aHP
-aIT
-aJK
-aKP
-aSi
-aYh
-csr
-aNR
-blf
-aNR
-buR
-bKp
-bKJ
-aaa
-bdg
-bdg
-bdg
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bdg
-bdg
-bdg
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bim
-aaU
-aaU
-aaa
-bcw
-bhy
-bdf
-bpR
-bJw
-bLc
-cKL
-bAV
-bRj
-bZf
-bZY
-bcy
-aSj
-bko
-csT
-bko
-bTs
-aVF
-cGs
-aVF
-cav
-cav
-cHj
-cqS
-cav
-cav
-ccL
-caX
-caX
-caX
-ctb
-cav
-cav
-cav
-aaa
-aaa
-aaa
-aaU
-cbB
-cKr
-cuf
-cbB
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(82,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-agW
-aho
-ais
-akl
-akO
-aho
-alW
-amX
-agW
-aiO
-aob
-bUA
-awk
-ajU
-asL
-axv
-aOW
-aAn
-aAS
-aCc
-aFj
-aFX
-aGt
-bnW
-cjW
-aFj
-aFj
-aGq
-bdQ
-aSB
-aGq
-aNR
-aNR
-bly
-bjF
-byd
-aUB
-bKK
-aaa
-bdg
-beN
-bgx
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bdg
-bEC
-bgx
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aaU
-bcy
-biK
-bdf
-bpR
-bJT
-bLl
-cKM
-bQX
-bvy
-bZg
-caa
-bcy
-aTE
-aTE
-aTE
-aTE
-bTG
-aVF
-cGs
-aVF
-caw
-caA
-cHk
-caP
-caT
-caX
-caX
-caX
-cbh
-caX
-caX
-cbx
-cav
-cav
-aaa
-aaa
-aaa
-aaU
-cbB
-cKr
-cub
-cbB
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-cpC
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(83,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahg
-ahg
-ahg
-ahg
-ahg
-ahp
-aiE
-akq
-akT
-aAd
-atq
-atH
-anU
-anU
-asL
-asL
-azi
-asL
-anU
-axz
-aPj
-ayM
-cCP
-aCg
-aFm
-aGK
-cCW
-brG
-aGu
-aMh
-aFm
-aOr
-aKS
-aSW
-cDs
-aNR
-biq
-blA
-bqh
-buG
-bIW
-bKK
-aaa
-bdg
-beR
-beJ
-bdg
-bdg
-bdg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bdg
-bdg
-bdg
-beJ
-beR
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-bcw
-biT
-bdf
-bpR
-bwD
-bLx
-cKN
-bWt
-bvy
-bZj
-cac
-bcy
-aTX
-aVF
-aVF
-aVF
-aVF
-aVF
-cHg
-bTP
-caw
-caB
-cHl
-caP
-caT
-caY
-caX
-caX
-caX
-caX
-caX
-ctI
-cav
-cav
-aaa
-aaa
-aaa
-aaU
-cbB
-cKr
-cub
-cbB
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(84,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahg
-akp
-alw
-afH
-ahg
-ahq
-aiG
-akr
-alj
-ari
-amg
-amX
-anU
-aCr
-aKd
-aLJ
-azj
-aph
-asL
-axA
-aPk
-aMp
-aOn
-aCi
-aFj
-aGb
-cCX
-bGn
-aHW
-baK
-aFj
-aSs
-bWe
-cPs
-bdS
-aNR
-aPt
-aYR
-csE
-bvJ
-aUF
-bKK
-aaa
-bdg
-beJ
-beJ
-aXk
-bjg
-aXl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-baZ
-bjg
-bhS
-beJ
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-bgW
-bgW
-bgW
-bgW
-bnk
-bqI
-bHF
-bDM
-bOu
-bWu
-bRk
-bZB
-cad
-bcy
-aVF
-cGR
-cGX
-cHb
-cHc
-cHe
-cHh
-bTQ
-caw
-caC
-cHk
-caP
-caT
-coG
-caX
-cHx
-cHD
-cHJ
-caX
-cbz
-cav
-cav
-aaa
-aaa
-aaa
-aaU
-cbB
-cKs
-cug
-cbB
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(85,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-ahg
-aks
-akY
-alF
-ahg
-aps
-agW
-agW
-agW
-asF
-ain
-ain
-anU
-aEw
-asX
-aNj
-aNJ
-aph
-asL
-axB
-aPn
-aAv
-aOO
-aCl
-aFj
-aZT
-aGv
-bLp
-bEV
-aIr
-aFj
-aOs
-aIP
-aTf
-aYy
-bbf
-bsf
-bnI
-aRo
-bAn
-bKG
-bLe
-aaa
-bdg
-beJ
-beJ
-bdg
-bdg
-bdg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bdg
-bdg
-bdg
-beJ
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-bgW
-bin
-bjs
-bgW
-bgW
-bmb
-bgW
-bgW
-bOv
-bWS
-bcy
-cvH
-bcy
-bcy
-bSJ
-cGS
-cGY
-buC
-cHd
-cHf
-cHi
-buC
-cax
-bWd
-cHm
-cbv
-caU
-cba
-cnC
-cHy
-cHE
-cbt
-cpe
-cav
-cav
-cav
-aaa
-aaa
-aaU
-cbB
-cbE
-cKt
-cuh
-cbE
-cbB
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(86,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-anU
-anU
-acc
-anU
-ahg
-akt
-atI
-amm
-ame
-akL
-akD
-amh
-aBA
-arq
-awJ
-awJ
-anU
-aHb
-asY
-aNG
-aNV
-aBb
-anU
-abS
-aPv
-abS
-aPD
-abS
-aFj
-aFj
-aLa
-cjR
-aFj
-aFj
-aFj
-aGn
-bfA
-aTu
-aGn
-aNR
-aNR
-aNR
-aRw
-bCe
-aNR
-aNR
-aaa
-bdg
-beJ
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bdg
-coQ
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bgW
-cfg
-bjt
-bep
-bVe
-bVp
-csf
-bgW
-jyu
-bXg
-bXS
-bYb
-cae
-bcy
-bfr
-cGT
-bJz
-bTo
-cag
-cbc
-caI
-bTo
-cax
-caE
-cHn
-csk
-cav
-cav
-cav
-cHz
-cHF
-caX
-cav
-cav
-cav
-aaU
-aaU
-aaU
-cbB
-cbB
-cnj
-cKu
-cui
-clh
-cbB
-cbB
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(87,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-anU
-aaN
-aaS
-auE
-ahy
-aku
-aly
-aoq
-aoR
-aoV
-aoY
-apu
-aeD
-arT
-aaS
-aNM
-anU
-aHN
-atj
-ayf
-azn
-aBe
-bzx
-axC
-aPY
-aAz
-aOh
-aCG
-bpX
-aGo
-aAz
-cjS
-anU
-aMY
-aNK
-aNL
-aPo
-aTD
-aNL
-aNK
-aVj
-aNR
-bao
-bDk
-aNR
-aaU
-aaa
-bdg
-beJ
-bbI
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bdg
-cmd
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bgX
-bAw
-biA
-biA
-biA
-bmd
-csI
-bgW
-bOw
-bcy
-bRm
-bYj
-bRq
-bcy
-big
-cce
-bJA
-bTq
-big
-big
-bTN
-big
-cax
-cpg
-cHo
-cbw
-bXd
-cav
-cav
-cHA
-cHG
-cav
-cav
-cbE
-cbE
-cbE
-cbE
-cbE
-cbE
-cle
-csW
-cKv
-cuj
-cuq
-cus
-cbE
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(88,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aah
-aaz
-byX
-byX
-byX
-byX
-byX
-aaz
-acO
-anU
-aeb
-apc
-auI
-ahy
-aky
-amI
-aod
-amB
-ajy
-akF
-awG
-axW
-asj
-awR
-axo
-anU
-aIl
-anU
-anU
-anU
-aBf
-anU
-aTp
-aQb
-aaS
-aQl
-agu
-aSk
-aUg
-blY
-cjT
-aLk
-aNd
-aNL
-aNL
-aPq
-aUC
-aNL
-aNL
-aVj
-aNR
-aNR
-bEm
-aNR
-aaU
-aaa
-bdg
-beJ
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bdg
-beJ
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bgX
-biB
-biA
-cDS
-cDU
-cDW
-cDY
-bgW
-bOx
-bcy
-bcw
-bYs
-bcw
-bcy
-bYr
-cgV
-cGi
-cGl
-cGo
-cGp
-cGu
-cGp
-cGx
-cGz
-cHp
-cHr
-cGz
-cHu
-cHw
-cHB
-cHH
-cHK
-cHM
-ckP
-ckT
-ckT
-ckT
-ckV
-cRc
-clg
-ctc
-cua
-cvW
-cur
-clh
-cbB
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(89,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aan
-aaA
-aaA
-aaA
-aaA
-aaA
-aaA
-aaA
-ada
-anU
-anU
-apQ
-auK
-ahg
-akA
-amQ
-ama
-ahg
-abS
-abS
-awZ
-aEy
-ayS
-abS
-abS
-anU
-aIV
-anU
-ayj
-anU
-aBj
-anU
-axN
-aQb
-aaS
-bpo
-aAX
-aED
-aVw
-aBF
-aKx
-aLL
-aNf
-aNN
-aNL
-aPq
-aUC
-aNL
-aNL
-aVl
-aYT
-baz
-bFH
-aYT
-aaU
-aaa
-bdg
-beJ
-beJ
-bdg
-bdg
-bdg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bdg
-bdg
-bdg
-beJ
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-bdg
-bdg
-bGI
-bGI
-bGI
-bGI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bgX
-csF
-csN
-biA
-biA
-csL
-cDj
-cDy
-bPl
-bXx
-bXT
-bYu
-bYA
-bYA
-bZG
-cmV
-cGj
-cGm
-bYv
-bYv
-cio
-cct
-cct
-bOO
-cHq
-cHs
-cHt
-cHv
-caG
-cHC
-cHI
-cHL
-cHN
-ckQ
-ckQ
-ckU
-ckQ
-ckW
-cRd
-csX
-ctP
-cuk
-cul
-cur
-clh
-cbB
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(90,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaU
-aaU
-aas
-aaA
-aaC
-abn
-abq
-abG
-ack
-aaA
-adb
-anU
-aaR
-aqa
-awY
-adO
-acN
-amZ
-acN
-aqY
-ajz
-alM
-axK
-axX
-azk
-acN
-acN
-azl
-aJw
-anU
-anU
-anU
-aLw
-abS
-axT
-aQb
-aaS
-aAY
-avj
-aSN
-aVI
-aBF
-aKy
-anU
-aNk
-aNL
-aNL
-aPq
-aUC
-aNL
-aTO
-aTP
-aYT
-baA
-bFI
-aYT
-aYT
-bdg
-bdg
-beJ
-beJ
-aXk
-bjg
-aXl
-cut
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-baZ
-bjg
-bhS
-beJ
-beJ
-bGI
-bXP
-aaa
-aaa
-aaa
-aaa
-aaa
-ceE
-bjg
-ceF
-beJ
-beJ
-bGI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bgW
-biG
-cve
-bky
-biA
-biA
-cDj
-cDy
-bWT
-bXh
-bYa
-bYw
-bYL
-bZE
-bZE
-csP
-cGk
-cGn
-cct
-bYo
-ckk
-bYF
-cct
-bFu
-bIc
-btn
-btn
-bsM
-cuY
-bIk
-bIk
-cbB
-cbB
-cbB
-cbB
-cbB
-cbB
-cbB
-cbE
-ctW
-cbD
-ctZ
-ctZ
-cld
-cus
-cbE
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(91,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-cpC
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aas
-aaA
-adB
-aaF
-aaJ
-abm
-acd
-acl
-acD
-aaG
-aeh
-aqf
-auS
-agu
-ajx
-ana
-agu
-agu
-agu
-agu
-aqf
-asV
-aCt
-agE
-atU
-aAV
-auV
-aGP
-bls
-aKO
-aLx
-ayR
-ayC
-aQE
-aMZ
-aAZ
-aCL
-abS
-aVO
-aKh
-anU
-anU
-abS
-abS
-aNL
-aPz
-aUG
-aNL
-aNL
-aVu
-aYT
-baC
-cPt
-bcs
-aYT
-bdj
-beF
-beJ
-beJ
-bdg
-bdg
-bdg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bdg
-bdg
-bdg
-beJ
-beJ
-bGI
-bXV
-aaa
-aaa
-aaa
-aaa
-aaa
-bdg
-bdg
-bGI
-beJ
-cis
-bGI
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-bgW
-biI
-cqB
-czA
-cBt
-csx
-cDv
-bgW
-bWU
-bXl
-bXy
-bWa
-bYc
-bXU
-bXU
-bWa
-bJF
-bKv
-bYv
-bYp
-bYx
-cPw
-caz
-ccd
-bId
-cpw
-cpw
-bKd
-cuZ
-bKN
-bIk
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-cbB
-cbB
-ctN
-clh
-clh
-ctN
-cbB
-cbB
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(92,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aas
-aaA
-aaH
-aic
-aaF
-aaF
-acu
-aaA
-acU
-adK
-aeL
-asO
-auT
-ahE
-akQ
-ahE
-ahE
-ahE
-ahE
-ahE
-aqz
-atV
-aCW
-aEC
-aEL
-aBa
-aGG
-aHH
-aIs
-aJy
-aKt
-aKC
-aLn
-aQH
-aMq
-aQm
-aSh
-aTR
-aWS
-bpS
-anU
-aLW
-aaS
-abS
-aLZ
-aPB
-aUV
-aYB
-bbg
-bcH
-bnZ
-bqi
-bIl
-bcJ
-bOY
-bdr
-beJ
-beJ
-beJ
-bdg
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bdg
-beJ
-ceI
-bGI
-bXV
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bGI
-beJ
-bbI
-bGI
-aaU
-aaU
-aaU
-aaU
-aaU
-aUk
-bgW
-bgW
-csl
-cAQ
-bgW
-bgW
-cEb
-bgW
-bWV
-bXh
-bXA
-bXU
-bpz
-aaa
-aaU
-bXU
-bKs
-bKv
-bYv
-bYq
-cPv
-bYH
-bYv
-bDT
-bIe
-bYB
-bto
-bYB
-cvt
-bSe
-ceb
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cbB
-cbE
-cbB
-cbB
-cbE
-cbB
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(93,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aas
-aaA
-abl
-aaF
-aaQ
-abA
-abA
-acC
-acZ
-adW
-asV
-aeM
-adA
-aed
-afl
-afl
-afl
-aiK
-ajA
-ajA
-aew
-avg
-aew
-axi
-atW
-aCE
-aDW
-anU
-anU
-anU
-aPX
-abS
-ayI
-aQM
-aSx
-aTF
-aUv
-aVz
-aWe
-aTF
-aWC
-aXi
-aXO
-aYS
-aZM
-bbp
-bcN
-aYJ
-aNL
-aVJ
-aYW
-baF
-bIr
-bcx
-cvZ
-bdr
-beJ
-beT
-bbI
-bdg
-aaU
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaU
-bdg
-cmd
-beT
-bGI
-bXV
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bGI
-beJ
-beJ
-bGI
-aaU
-aaU
-aaU
-aaU
-aaU
-aTV
-aUo
-aVW
-cDH
-bbS
-aUk
-bVL
-cEc
-bXr
-bWW
-bXh
-bXB
-bXU
-bpz
-aaa
-aaU
-bXU
-aJV
-brz
-bYv
-cgr
-bYy
-crf
-bYv
-bFx
-bIf
-bto
-csZ
-bto
-cvQ
-caO
-ceb
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(94,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-cpB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aas
-aaA
-abk
-abo
-abw
-abP
-acy
-aaA
-adb
-anU
-aeQ
-aeM
-ani
-aew
-aeJ
-aeJ
-aeJ
-aew
-aeJ
-aeJ
-aeJ
-avF
-aeJ
-aeJ
-aeJ
-aew
-aCH
-aew
-aIn
-aew
-aFG
-aew
-aew
-ayT
-aRO
-aBI
-aDs
-bfw
-aYo
-aKo
-anU
-aaS
-aMP
-abS
-aOv
-aPH
-bcQ
-aUC
-aNL
-aVJ
-aYX
-baD
-bIV
-bKg
-cwa
-bdr
-beJ
-bfd
-beJ
-bdg
-aaU
-aaa
-aWZ
-aWZ
-aWZ
-aWZ
-aWZ
-aWZ
-aWZ
-aaa
-aaU
-bdg
-beJ
-bfd
-bdg
-bXV
-aaa
-aaa
-ceD
-aaa
-aaa
-aaa
-aaU
-bdg
-beJ
-coR
-bdg
-aaa
-aaa
-aaa
-aaa
-aaU
-aUi
-aUp
-aWm
-cDH
-bcB
-aTV
-bVM
-cEd
-bWs
-bWs
-bXh
-bXJ
-bXU
-bpz
-aaa
-aaU
-bXU
-bKs
-bLG
-bYv
-bYv
-cwb
-bYv
-bYv
-csV
-bIe
-bYB
-cqz
-bYB
-bua
-cmS
-ceb
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cpB
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(95,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aan
-aaA
-aaA
-aaA
-aaA
-aaA
-aaA
-aaA
-ada
-anU
-aeQ
-aeM
-adD
-aew
-afn
-agI
-aid
-aew
-ajG
-alU
-aew
-awH
-aew
-axj
-ayQ
-aew
-aDY
-aew
-aew
-aew
-aQf
-aSX
-aew
-ayU
-aSQ
-aAB
-aDt
-asL
-aYr
-asL
-anU
-abS
-abS
-abS
-aNL
-aPq
-bdx
-aYO
-aNL
-aVL
-aYT
-baG
-bbM
-bcz
-aYT
-bdy
-beM
-bfd
-beJ
-bdg
-aaU
-aaU
-aWZ
-aXC
-aYg
-aYz
-aZf
-aZr
-aWZ
-aaU
-aaU
-bdg
-beJ
-bfd
-bdg
-bXV
-aaa
-bdg
-buB
-bdg
-aaa
-aaa
-aaU
-bdg
-beJ
-beJ
-bdg
-aaa
-aaa
-aaa
-aaa
-aaU
-aUi
-aUu
-cnu
-cDI
-cDT
-aTV
-bQZ
-cEd
-csO
-cEu
-bXh
-bXK
-bWa
-bYc
-bXU
-bXU
-bWa
-bKt
-bLU
-bRM
-bRO
-bRR
-bRT
-bRV
-bSd
-bTC
-bYI
-cgf
-bKe
-czH
-bKO
-ceb
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(96,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aay
-aaz
-bPo
-bPo
-bPo
-bPo
-bPo
-aaz
-aeg
-anU
-aeV
-aeM
-adE
-aew
-afG
-agP
-agP
-aiL
-ajT
-anu
-ask
-ayF
-aCX
-aEE
-aEE
-aES
-aGT
-aHT
-aJt
-aJN
-aQg
-akv
-aew
-ayU
-aSQ
-aTg
-aDu
-asL
-aYq
-aXu
-aZU
-aZV
-beb
-aNO
-aNL
-aPq
-bex
-aNL
-aTO
-bhh
-aYT
-aYT
-bbP
-aYT
-aYT
-bdg
-bdg
-bJy
-caW
-bdg
-aaU
-aaa
-aWZ
-aXD
-aYk
-aYk
-aYk
-aZs
-aWZ
-aaa
-aaU
-bdg
-caW
-bJy
-bdg
-bXV
-aaU
-bdg
-bjg
-bdg
-aaU
-aaU
-aaU
-bdg
-beJ
-beJ
-bdg
-aaa
-aaa
-aaa
-aaa
-aaU
-aUi
-aUu
-aWm
-cDH
-bOt
-aTV
-bIg
-cEe
-cEs
-cEv
-cEx
-cEA
-cEJ
-cEM
-cEJ
-cEJ
-cEJ
-bKu
-bQv
-bRN
-cEs
-bRS
-cEN
-cEO
-cEP
-bTD
-bYJ
-cka
-cmR
-cFV
-bKP
-ceb
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(97,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-anU
-agv
-aeN
-abS
-aew
-afJ
-agP
-agP
-ajB
-akv
-anw
-aym
-azN
-aDe
-aDe
-aDe
-aET
-aHg
-aHS
-aLf
-aJO
-aQi
-alU
-aew
-ayW
-aSQ
-aAB
-aDB
-asL
-aYq
-aXu
-aZV
-aZV
-beb
-aNS
-aOw
-aPq
-bcQ
-aNL
-aTY
-aWk
-aXR
-azd
-aTS
-aRW
-bcR
-bdN
-beJ
-bfd
-beJ
-bdg
-bdg
-aaU
-aWZ
-aXE
-aYk
-aYA
-aYk
-beg
-aWZ
-aaU
-bdg
-bdg
-beJ
-bfd
-bGI
-bYd
-bGI
-bGI
-bzb
-bGI
-bdg
-bdg
-bdg
-bGI
-beJ
-bbK
-bGI
-aaU
-aaU
-aaU
-aaU
-aaU
-aTV
-aVh
-biP
-cDH
-bcC
-aTV
-bIn
-bIN
-bIO
-bIQ
-bIR
-bIQ
-bIQ
-bIR
-bIQ
-bIS
-bIQ
-bIQ
-bQP
-cfZ
-bWX
-bWX
-ckf
-bIk
-bFB
-bIh
-ccd
-bJC
-bKf
-cFW
-bKQ
-bIk
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(98,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-akE
-akE
-ans
-apg
-aqE
-aew
-afY
-agP
-agP
-aiL
-akv
-anw
-akv
-akv
-akv
-akv
-aAh
-aew
-aEW
-alU
-akv
-aKa
-aKw
-alU
-aew
-azc
-aSQ
-aAB
-aDL
-asL
-aYq
-aXu
-aZW
-aZV
-beb
-beb
-beb
-aPM
-bcQ
-aNL
-aNL
-aWl
-aXR
-aRI
-aTS
-aRW
-bcR
-bcR
-cmd
-bfd
-bgz
-bgx
-bdg
-bdg
-aWZ
-aZf
-aYk
-aYk
-aYk
-aYg
-aWZ
-bdg
-bdg
-beJ
-beJ
-bfd
-blc
-bYP
-coS
-aXc
-aXc
-aXc
-aXc
-aXc
-aXc
-aXc
-aXc
-aXc
-bGI
-aaU
-aaU
-aaU
-aaU
-aaU
-aTV
-aTV
-aTV
-bAc
-brw
-aTV
-bVM
-cEf
-bWx
-aab
-bXo
-bXQ
-bXZ
-bYi
-bYk
-bWa
-bWa
-bXU
-bXU
-bXU
-bXU
-bXU
-bWa
-bIk
-bFC
-bIj
-ccd
-bJD
-ccm
-coH
-bJH
-bIk
-cOI
-cOI
-cOI
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(99,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aak
-aak
-aak
-aak
-aak
-aaa
-aaa
-aaa
-aaa
-aaa
-aak
-aak
-aak
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-akN
-alq
-alq
-apn
-aqF
-aew
-agD
-ahr
-aiH
-aew
-akw
-aoB
-akw
-aqD
-aew
-ayh
-aew
-aew
-aUy
-alU
-akv
-aym
-aQg
-akv
-aew
-azf
-aCb
-aFT
-bjV
-bpW
-aZO
-aXu
-aZX
-bcr
-beO
-beO
-beb
-cDp
-beL
-aRm
-aNL
-aXw
-aXR
-aRW
-aTS
-aRW
-bcR
-bdU
-beJ
-bfd
-beJ
-bii
-coP
-bdg
-aWZ
-aVG
-bnu
-bnV
-aYl
-aZu
-aWZ
-bdg
-byV
-bzB
-bgA
-bWf
-bXm
-bZQ
-ccN
-ccN
-cei
-ccN
-ccN
-ccN
-ccN
-ccN
-coZ
-blO
-bGI
-aaa
-aaa
-aaa
-aaa
-aaU
-aTV
-aVk
-bfu
-csu
-cAS
-cDV
-cDX
-cEg
-bWx
-bSE
-ckR
-bSE
-bSG
-bTc
-bSE
-bSE
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-bIk
-clv
-bsU
-ccd
-bJE
-ccm
-cOx
-cOA
-cOE
-cOJ
-cOP
-cOT
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cPf
-cPf
-cPf
-cPf
-cPo
-abp
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(100,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aar
-abM
-abR
-abR
-abM
-aZG
-aaU
-aaU
-aaU
-aaU
-aaU
-aTd
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aTx
-akE
-akE
-anC
-app
-aqH
-aew
-aew
-aew
-aew
-aew
-aew
-aew
-aew
-aew
-aew
-axk
-asz
-aew
-aGV
-akv
-aLv
-alU
-aQA
-aSZ
-aew
-aAP
-aEc
-bjB
-asL
-asL
-bfm
-aXA
-aZY
-bct
-beP
-beP
-bjv
-cDq
-bhz
-ccQ
-ccS
-aXB
-aYY
-aSc
-aTT
-aUH
-bcX
-bel
-cpl
-bfi
-bgA
-bLH
-bji
-bli
-aWZ
-aWZ
-aWZ
-boe
-aWZ
-aWZ
-aWZ
-beJ
-bSW
-bUy
-bJG
-aZy
-aZy
-aZy
-aZy
-beJ
-bfd
-bjg
-bUt
-bai
-baV
-cKF
-bbn
-cKG
-bGI
-aaa
-aaa
-aaa
-aaa
-aaU
-aTV
-aVq
-bfx
-cuQ
-cpP
-aTV
-bVR
-cEh
-bWy
-buf
-bJu
-bSQ
-bSY
-bTd
-bTj
-bSE
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bIk
-bZT
-bsU
-ccd
-ckb
-cdW
-cOy
-cOB
-cOF
-cOK
-cOI
-cOI
-aZG
-aaU
-aaU
-aaU
-aTd
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aTx
-abM
-abR
-abM
-abM
-cPo
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(101,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aar
-abM
-aca
-acG
-acG
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aWj
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-akP
-als
-anW
-apr
-aqJ
-arR
-ajC
-agH
-akC
-amb
-amk
-auH
-ape
-civ
-avG
-axl
-aCu
-aew
-aFG
-aIz
-aew
-aPZ
-aQY
-aTa
-aew
-aDi
-bGY
-aDX
-aIq
-atc
-aYq
-aXu
-baa
-bcL
-beS
-bgm
-bjC
-cDr
-bhW
-ccR
-aNL
-aXG
-aXR
-awO
-aUc
-cjq
-bcR
-bcR
-bcR
-bcR
-bgE
-bLJ
-bLV
-bfi
-blE
-bBW
-bgA
-aww
-awL
-aGC
-aON
-aGC
-bTu
-bUC
-bVQ
-aZy
-bTp
-bRe
-baw
-bZA
-cfQ
-bZA
-bZA
-bqB
-bZS
-bZS
-bZS
-bZS
-bZS
-aaa
-aaa
-aaa
-aaa
-aaU
-aUi
-ciC
-bzz
-cvM
-cts
-aTV
-bVM
-cEf
-bWz
-bSE
-bSK
-bSR
-bSL
-bTe
-bTM
-bSE
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-bIk
-cum
-bIj
-ccd
-cvS
-bIk
-cOz
-cOC
-cOG
-cOL
-cOL
-cOU
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cPg
-cPi
-cPj
-abR
-cPo
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(102,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aar
-abM
-ace
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-abp
-aWj
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-akE
-akE
-akE
-akE
-akE
-akE
-ahm
-ako
-alx
-bfa
-aaj
-bNM
-civ
-cix
-avG
-axm
-aCC
-aCK
-aFZ
-aew
-aew
-awQ
-ayO
-aBx
-aoF
-aHR
-ccM
-aDX
-aJU
-atc
-aYq
-aXu
-baj
-bcP
-bfg
-bgy
-bjD
-aNO
-bcQ
-aNL
-aUD
-aXR
-aXR
-cjy
-aTS
-aQL
-aUX
-aZE
-aVS
-bcR
-bgF
-bcR
-bLX
-bLY
-bLY
-aVd
-bLY
-bQg
-bQw
-bLY
-bLY
-bLY
-bTy
-aZy
-bVU
-aZy
-bJm
-bbm
-baw
-aXe
-chU
-cjw
-cjw
-cke
-clu
-cmP
-clw
-bZZ
-bZH
-aaU
-aaU
-aaU
-aaU
-aaU
-aTV
-aYf
-beo
-cuQ
-cwe
-aTV
-bVS
-cEi
-cEt
-cEw
-cEy
-cEB
-cEK
-bSS
-bTl
-bSE
-brU
-brU
-brU
-brU
-cdZ
-brU
-brU
-bIk
-bIk
-bIk
-ccB
-bJH
-bIk
-cGb
-bRI
-cOH
-bRI
-bRI
-bRI
-bCh
-aaU
-aaU
-aaU
-cpz
-cpz
-cpz
-cpz
-cpz
-cpz
-cpz
-aaa
-aaa
-aaa
-aaa
-cPk
-abR
-cPo
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(103,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aar
-abR
-ace
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aWj
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bUo
-aaU
-acL
-afs
-aiT
-aco
-alG
-cjo
-aaj
-aGc
-bNT
-ciy
-cnF
-bGU
-bHl
-aoF
-asW
-atz
-avJ
-awS
-azB
-aBC
-atc
-aIF
-aJv
-aJZ
-aLY
-aNA
-bkF
-aXu
-aXu
-bcU
-aXu
-aXu
-bjD
-aQn
-bcQ
-aNL
-aUE
-aXR
-aQG
-aRW
-bsb
-aUI
-aUY
-bew
-aUY
-aWb
-aRW
-bcR
-cpc
-bjj
-bjj
-bmh
-bnv
-bou
-bQx
-bqj
-bjj
-bjj
-bjj
-aZy
-bVV
-bWg
-aWg
-bbo
-baw
-bZC
-cjv
-aYc
-bZF
-bay
-bZU
-cnW
-bbq
-bcp
-bZH
-aaU
-aaU
-aaU
-aaU
-aaU
-aTV
-bHH
-aWp
-czf
-coI
-aTV
-bVT
-cEj
-bWA
-bSG
-bSL
-bSS
-bUJ
-bSS
-bSL
-bSC
-brZ
-btf
-btU
-cec
-brU
-ced
-cej
-bCh
-bRL
-bIs
-ccC
-bRZ
-cFn
-cGc
-bMj
-bMj
-bMj
-cfb
-cFP
-bCh
-aaa
-aaa
-aaU
-cpz
-bNr
-bQU
-cuv
-cLC
-cCQ
-cwT
-aaa
-aaa
-aaa
-aaa
-cPk
-abM
-cPp
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(104,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aar
-abM
-acf
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bUo
-aaU
-acL
-afF
-aip
-beV
-aco
-amd
-aaj
-cit
-ciw
-ciz
-ciB
-bGV
-bHm
-aLu
-ata
-ata
-ata
-awT
-aAk
-cjN
-atc
-aIG
-aRU
-aDX
-aYI
-atc
-aVQ
-aWa
-aWa
-cCV
-aYt
-aBY
-aOB
-aNO
-bcQ
-aNL
-aUL
-aXR
-aQK
-aRW
-bzT
-cnq
-aVe
-aRH
-aVe
-aWc
-aRW
-bcR
-bcR
-bcR
-bcR
-bmi
-bnx
-bpn
-bQx
-bqA
-aZy
-aZy
-aZy
-aZy
-bav
-bWh
-csG
-bQA
-aZy
-aXf
-bZJ
-bZF
-cpu
-bax
-bZV
-bZX
-ccY
-cab
-bZH
-aaa
-aaa
-aaa
-aaa
-aUk
-aUk
-aUk
-cnm
-czz
-aUk
-aUk
-bWa
-cEk
-bWa
-bSE
-bSM
-bST
-bSZ
-bTf
-bTm
-bSC
-bsa
-buA
-bJK
-ceg
-bqT
-cee
-cef
-coc
-bTz
-bTE
-ccD
-bTE
-bTE
-cGd
-cvT
-cFA
-ckh
-cFK
-cFQ
-bCh
-aaa
-aaa
-aaU
-cpz
-bNv
-cAC
-cCk
-cCv
-cCS
-cpz
-aaa
-aaa
-aaa
-aaa
-aaa
-aRv
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(105,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-acM
-aWj
-aWj
-aaa
-aaa
-aaa
-adj
-adj
-adj
-adj
-adj
-adj
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaj
-aaj
-aaj
-aaj
-aaj
-aaj
-aaj
-aaj
-aaj
-avi
-aal
-aal
-aal
-bGW
-aco
-apH
-aoF
-auP
-bGf
-bHh
-cqd
-cBb
-aFP
-aKi
-aMN
-aQw
-coU
-atc
-aVV
-aSg
-aXM
-aYq
-aYt
-baB
-aOB
-aQo
-bix
-bcS
-aQo
-aXR
-aQL
-cjq
-aQL
-aQL
-cjq
-aQL
-aQL
-aTS
-aRW
-bcR
-bjG
-blk
-blF
-bmn
-bnz
-bpw
-bQx
-bll
-aZz
-cpm
-bad
-bah
-baR
-bWi
-aWh
-cmN
-aZy
-aXg
-bZK
-bZF
-csH
-bay
-bKw
-bZH
-bZH
-bZH
-bZH
-aaa
-aaa
-aaa
-aaa
-aUk
-bnl
-bAz
-aWr
-cDN
-bmG
-aUk
-bWr
-cEl
-bWB
-bSE
-bSN
-bSU
-bTa
-bTg
-bTn
-bSC
-bRH
-bth
-cOd
-ceg
-brl
-cef
-cnZ
-bRI
-bTA
-bVO
-cfN
-ckd
-ckd
-cGe
-bMj
-bLI
-ckj
-cFL
-cnX
-bCh
-aaa
-aaa
-cpz
-cpz
-cpz
-cAD
-cCl
-cCw
-cpz
-cpz
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(106,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-adj
-aeC
-afv
-adF
-agM
-adj
-aaa
-aaU
-aaU
-aaj
-aaj
-aaj
-aaj
-aaj
-aaj
-aau
-ahn
-ajH
-ajY
-alB
-amj
-ape
-aal
-ciu
-aal
-ape
-amj
-aCM
-bHd
-afX
-atc
-auW
-avL
-axw
-cqH
-bhN
-aIC
-aDP
-aPs
-aGh
-csn
-atc
-aVZ
-aXL
-cqN
-aYq
-aYt
-baH
-bcR
-aPr
-biC
-beJ
-bft
-bdg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aQL
-aTS
-aRW
-bcR
-bjX
-cpn
-blJ
-bmZ
-bnA
-bpy
-bQI
-bll
-aZA
-aZI
-bae
-chP
-baS
-bWj
-baS
-bbr
-aZy
-bKR
-bZF
-bZF
-cjx
-bay
-baX
-bZH
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aUk
-bwK
-bAF
-aXm
-cDN
-bmG
-aUk
-bWc
-bWo
-bWC
-bSE
-bYV
-cEC
-cEL
-bTh
-bSC
-bSC
-bRJ
-bth
-bTB
-cek
-csK
-cKk
-cKl
-cKm
-cKn
-cKo
-bRX
-crW
-bIq
-cqZ
-bMj
-bLW
-cFF
-cFM
-cnY
-bCh
-aaa
-aaa
-cpz
-cvU
-ctO
-cAE
-bNs
-cLF
-bNA
-cpz
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(107,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-adj
-aeR
-afx
-aga
-afI
-adj
-aaa
-aaa
-aaU
-aaj
-aaE
-acn
-acn
-acn
-acn
-afw
-acn
-ajN
-amS
-amS
-aoX
-amS
-amS
-aDE
-amS
-amS
-aKR
-apY
-bRa
-cjO
-atc
-aVr
-avM
-avL
-csw
-aBK
-aID
-aLX
-aSJ
-aHZ
-atc
-atc
-ayd
-ayd
-ayd
-chJ
-aOo
-baM
-bcR
-aPr
-biC
-beJ
-bft
-bdg
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aQL
-aTS
-aRW
-bcR
-bku
-bll
-blK
-bmn
-bnD
-bpC
-bQx
-bll
-aZC
-aZN
-bCS
-bak
-bAI
-bWk
-cdE
-bbs
-aZy
-cry
-crA
-bZF
-cCJ
-baE
-bZS
-bZS
-bGI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aUk
-bwM
-bAN
-aXs
-cDN
-bmG
-aUk
-bWb
-cEm
-bWL
-bSE
-bSP
-cED
-bTb
-bTi
-bSC
-brk
-bsp
-bth
-bth
-ceg
-brU
-bSX
-cel
-bCh
-cEQ
-bXn
-bRY
-bSa
-bSc
-bSg
-bMj
-cFB
-cFG
-cFN
-cvw
-bRI
-aaU
-aaU
-cpz
-bMN
-bMJ
-cAG
-bMJ
-cLG
-bNB
-cpz
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(108,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-add
-adC
-adC
-adC
-aeS
-adj
-adj
-agN
-ahL
-ahL
-ahL
-ahL
-afD
-afQ
-age
-age
-agy
-age
-age
-afC
-akK
-akG
-alC
-aal
-ape
-aal
-aDU
-aal
-bGH
-aal
-aOH
-aal
-arb
-atc
-atc
-atc
-atc
-csA
-aCa
-aCa
-aId
-aIx
-aJx
-aVc
-ayd
-cfR
-aLl
-ayd
-cDk
-ayd
-ayd
-bGI
-aPw
-bmC
-aYP
-bft
-bcR
-bdg
-bdg
-bdg
-bdg
-bdg
-bdg
-bcR
-bgN
-bgF
-bcR
-bcR
-bcR
-bcR
-bna
-bnP
-bpF
-bQY
-bqK
-aZy
-aZy
-aZy
-bak
-baw
-bWw
-aZy
-aZy
-aZy
-bZH
-bZH
-bZA
-cCK
-bZH
-bZS
-bSB
-bTT
-bTW
-bTW
-bTW
-bTW
-bTW
-bTW
-bmE
-bUu
-aUk
-aXt
-cDK
-aXt
-bwm
-bWa
-cEn
-bWR
-bSH
-bSG
-cij
-bSG
-bSC
-bSC
-bhx
-bqv
-bti
-btY
-cod
-cdZ
-bss
-cem
-bRI
-cER
-cEU
-bCh
-bCh
-bCh
-bSh
-bMj
-cFC
-cFH
-bCh
-bCh
-cpz
-bMl
-bMl
-cpz
-bMO
-bMJ
-cAH
-cvy
-cLH
-bNC
-ctD
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(109,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-adf
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-adM
-aaj
-aaI
-ami
-akX
-akX
-akX
-akX
-aqV
-arS
-akX
-akX
-akX
-akX
-avN
-awy
-avN
-avN
-avN
-aBk
-avN
-aDa
-aDS
-aDS
-aDS
-aBy
-cwf
-cBc
-cBu
-cBE
-cKD
-cBo
-cBZ
-cCb
-cCe
-cCe
-cCe
-cDl
-cCn
-cCp
-cCq
-aRb
-bjU
-aYQ
-bgc
-bgd
-bgd
-bgG
-bgd
-bgd
-bgd
-bgd
-boo
-bTw
-bgE
-coO
-bkx
-blo
-blo
-bnc
-bnR
-bpG
-bQx
-bqY
-brM
-bwr
-bkx
-brI
-blo
-bWE
-blo
-bGr
-bIZ
-bVI
-blo
-aYH
-cCL
-aYH
-bGI
-bTt
-bGI
-but
-but
-but
-but
-but
-but
-bUq
-bUv
-bUq
-baL
-cDO
-bbl
-bbA
-bbW
-cEo
-bbl
-coB
-bbl
-cEF
-buD
-bCX
-bqc
-brm
-bst
-bst
-bst
-csj
-bst
-bst
-coV
-bCh
-cES
-cEV
-cFj
-cFj
-cFo
-cFr
-cFt
-cFD
-cFI
-cFO
-cFR
-ctD
-bMo
-cob
-cpz
-bMP
-bMJ
-cAK
-bMJ
-cLI
-bND
-cDe
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(110,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-adf
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aiM
-aaj
-aaI
-aco
-akX
-alA
-aoe
-apA
-aqX
-arU
-apA
-atN
-auv
-akX
-avO
-awz
-ayp
-azb
-avN
-aBl
-aBP
-aDc
-aBQ
-aEJ
-aFM
-azP
-aFf
-aIu
-aKJ
-aKJ
-cKE
-aKJ
-aKJ
-aKJ
-aKJ
-aKJ
-aKJ
-aXK
-aYw
-aYV
-baJ
-bcf
-bke
-bmq
-bmL
-bgu
-beJ
-beJ
-beJ
-beJ
-beJ
-beJ
-beJ
-biS
-bjR
-cCG
-bUw
-cCG
-cCG
-bpx
-cCG
-cCH
-bRf
-cCG
-cCH
-cCG
-bUw
-bVJ
-cCG
-bWF
-cCG
-cfz
-cCG
-cCG
-cCH
-cCG
-cCM
-cCG
-cCN
-coM
-cpr
-cpx
-cpx
-cpx
-cpx
-cpx
-cpx
-crV
-crY
-crZ
-csJ
-cDP
-bUI
-bUI
-bVB
-cEp
-bUI
-cqe
-cqg
-cEG
-bdv
-bDd
-bqe
-brq
-bst
-bst
-bVP
-cKh
-btj
-btj
-bAo
-cuW
-cET
-cEW
-bQk
-bQk
-bQk
-bQu
-cFu
-cFE
-cFJ
-bQL
-cFS
-cFT
-cFU
-bNg
-bNh
-bNj
-bNw
-cPc
-cCm
-cCx
-cDb
-cDf
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(111,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-adf
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aiM
-aam
-aaI
-acw
-akX
-alE
-aoi
-apD
-arf
-arZ
-atp
-atT
-aux
-akX
-avR
-awC
-ayq
-azp
-avN
-aBo
-aBQ
-aDd
-aBQ
-aEK
-aFM
-azQ
-aFi
-cBe
-aEv
-aEv
-aEv
-aEv
-aEv
-aEv
-aEv
-aEv
-aEv
-aMH
-aMS
-aNI
-aOS
-aQD
-bkP
-aZJ
-beJ
-beJ
-beJ
-beJ
-beJ
-btG
-beJ
-beJ
-beJ
-biW
-bqd
-bcf
-bwU
-bcf
-bcf
-bCi
-bcf
-bCp
-bcf
-bcf
-bCs
-bcf
-bwU
-bCD
-bcf
-bcf
-bcf
-bGt
-bJB
-blB
-cCI
-blB
-blB
-bRg
-bWH
-bWM
-bZr
-cde
-cmF
-crk
-cmF
-cmF
-cwU
-cAT
-cBA
-cCT
-cCU
-cCY
-cCU
-cCU
-cCZ
-cDQ
-cEq
-cID
-bZm
-cEH
-bdv
-bDd
-cyy
-cyA
-bst
-cyE
-cyK
-buJ
-bst
-bst
-bAq
-cuX
-bFJ
-cEX
-cqW
-bWD
-cqb
-bKy
-cFv
-bJI
-bJI
-bLL
-bMa
-ctF
-coJ
-cpb
-cpz
-bMR
-bNx
-cBD
-cLA
-cCy
-cLP
-cLT
-cLU
-aaa
-aaa
-aaa
-aaa
-aTd
-aaa
-abp
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(112,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-adf
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aiM
-aap
-abd
-abT
-akX
-alO
-aok
-akX
-arh
-asb
-akX
-atY
-auB
-akX
-avS
-awC
-ayr
-azA
-aAf
-aBr
-aBR
-aDf
-aDZ
-aEN
-aFM
-aAe
-aFC
-cAW
-aHk
-aIi
-aHQ
-aHQ
-aHQ
-aJT
-aHQ
-aHQ
-aHQ
-aHQ
-aOz
-aHt
-bGI
-bGI
-bkU
-aZJ
-bGI
-bGI
-bGI
-crr
-bjj
-bjj
-bjj
-bjj
-bIP
-bje
-bqn
-bjj
-bkx
-blC
-blO
-bnr
-blO
-blO
-blO
-baf
-bRs
-bxk
-bkx
-bjj
-bFA
-bjj
-bIP
-bGA
-bGE
-bLg
-bMG
-bPR
-bGE
-bRy
-bSA
-bTw
-cwW
-bTY
-bTY
-bTY
-bTY
-bTY
-bTY
-cwX
-cqY
-bUE
-baO
-cDR
-bFc
-bFc
-cDa
-cEr
-bPQ
-cIE
-cEz
-cEI
-bXi
-bXq
-caQ
-bXC
-bvK
-bHI
-bYK
-buK
-bst
-bst
-bKi
-bPP
-bQa
-cEY
-bvn
-bJg
-bQl
-bYG
-cFw
-bpa
-bQn
-bQC
-cmZ
-cpz
-cvs
-cwg
-cpz
-bMl
-bNy
-cBG
-cpz
-cCz
-cpz
-cpz
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(113,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-adf
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-adM
-aaq
-aaI
-acF
-akX
-akX
-akX
-akX
-arj
-ase
-akX
-akX
-akX
-akX
-avX
-awF
-ayt
-azC
-avN
-aBt
-aBZ
-aDd
-aEd
-aEO
-aFM
-aAj
-aIk
-cBf
-cBv
-aIj
-aHs
-aHs
-aHs
-aHs
-aHs
-aHs
-aHs
-aHt
-aNp
-aHt
-aPb
-bGI
-blm
-baq
-bGI
-aPb
-bGI
-bgL
-bGI
-bdg
-bdg
-bdg
-bGI
-bjh
-bqF
-bGI
-aWB
-bsl
-cjJ
-aXH
-cbA
-cbH
-ckZ
-aZv
-bRP
-aWB
-aWB
-bDN
-cpv
-bDN
-bGI
-bdg
-bdg
-bGI
-bGI
-bGI
-bGI
-bRB
-bGI
-bTt
-bGI
-but
-but
-but
-but
-but
-but
-bUq
-bUv
-bUq
-baQ
-cuR
-cvl
-cvl
-cKe
-cNh
-cNw
-cIF
-ccp
-bqo
-buF
-bDm
-bqe
-ceY
-bwf
-bHJ
-cbr
-cDE
-cDG
-cEa
-buS
-buS
-bFX
-cEZ
-bAs
-ayY
-baT
-baT
-cFx
-bpb
-bqO
-bru
-coY
-cpz
-bMr
-cwh
-cwl
-bNm
-bNz
-cBT
-cpz
-cCD
-cDc
-cpz
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(114,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-adh
-adC
-adC
-adC
-afb
-adj
-adj
-agO
-adj
-adj
-adj
-adM
-aat
-abf
-acF
-acI
-aem
-aex
-aht
-aRz
-brB
-ank
-arJ
-amo
-acF
-avN
-avN
-avN
-avN
-avN
-aBw
-aBZ
-aDo
-aDo
-aEP
-aFM
-aAj
-aFC
-cBg
-aIj
-aHs
-aHs
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aHY
-aHY
-aHY
-aHY
-aHY
-bln
-bmy
-aNT
-aNT
-aNT
-aNT
-aNT
-aaa
-aaa
-aaU
-aSt
-bjk
-bqG
-aWB
-aWB
-aWK
-aXo
-aXI
-aYn
-cda
-aZj
-aZw
-bRQ
-aZQ
-aWB
-aWB
-bGI
-bGI
-bGI
-aaU
-aaU
-aaU
-bGI
-aSV
-bGI
-bRW
-bgY
-cgC
-bTT
-bTZ
-bTZ
-bTZ
-bTZ
-bTZ
-bTZ
-bUr
-bUz
-bUq
-bbh
-cuR
-cvm
-cDn
-cKf
-cNi
-cvl
-cIF
-ccp
-bqr
-bbh
-bbh
-bqm
-bqm
-byw
-bst
-cbr
-cDF
-cDJ
-cKC
-cDh
-cPR
-bFJ
-cFa
-cFk
-cFl
-cFp
-cFp
-cFy
-bbt
-bqP
-brO
-bQB
-ctD
-bMs
-bMA
-cwm
-bMT
-bNG
-cCa
-cCo
-cLL
-cDd
-cwg
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(115,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-adj
-adY
-afc
-afy
-agb
-adF
-ahM
-ahM
-aie
-adM
-bHX
-abY
-acF
-acV
-adi
-aeT
-afq
-aij
-cdI
-adi
-adi
-anl
-acF
-aVD
-axP
-aCA
-bGM
-avN
-avN
-aCh
-aDp
-aDp
-avN
-aDS
-aAU
-aFC
-cBh
-aHs
-aHs
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aHY
-aTL
-aVA
-aWi
-aWo
-blr
-aXq
-bbj
-bda
-bol
-aSl
-aNT
-aaa
-aaa
-aaU
-aSt
-bjk
-bqG
-aWB
-aWG
-aWM
-aXr
-aXJ
-aXr
-cjG
-aXr
-aXr
-bRU
-aZR
-aWI
-aWB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bGI
-bGI
-aRy
-bSk
-aRy
-bGI
-bGI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bUq
-bUq
-bUq
-aaa
-cuR
-cvn
-cDo
-cLB
-cNj
-cvl
-cIF
-ccp
-cpH
-bbh
-bpA
-bXz
-bqm
-byD
-bHJ
-cbs
-buS
-cDZ
-czg
-czt
-cPS
-czD
-cFb
-bEl
-bJn
-bQm
-cbf
-bop
-bpe
-bQz
-bXD
-cna
-cvo
-cvO
-cwi
-cwn
-cwu
-cAB
-cCc
-cCr
-cLD
-cuv
-cCr
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(116,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aar
-aaU
-aWj
-aaU
-aaU
-aaU
-adj
-adY
-aeR
-adF
-adF
-adF
-adF
-adF
-aig
-adM
-aiZ
-ajL
-acF
-adg
-adi
-aeU
-aeU
-agr
-alD
-anj
-ajJ
-ajJ
-auM
-ayD
-ayD
-ayD
-aIe
-aLg
-aEo
-bnJ
-bHo
-bHq
-bHf
-arw
-aBg
-aGg
-cBh
-aHs
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aHY
-aVg
-aQF
-bba
-bcK
-bmg
-bmD
-bmR
-bnK
-bnL
-aSm
-aNT
-aaa
-aaa
-aaU
-aSt
-bjk
-bqG
-aWB
-aWI
-aWO
-bPz
-bQf
-aYs
-cjZ
-aYs
-aYs
-bSV
-aZS
-aWG
-aWB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bqX
-bSr
-bqX
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-cuR
-cvp
-cFY
-cLE
-cNk
-cuR
-cIF
-ccp
-cJe
-bbh
-bpB
-btv
-bqm
-bzJ
-bst
-cbK
-buS
-bAJ
-czh
-czu
-cPT
-czE
-cFc
-bEl
-aJD
-bbx
-bbZ
-boq
-bpg
-bpg
-bAy
-bQJ
-cpz
-bMu
-bMC
-cwo
-bMU
-bNc
-cCg
-cCr
-cLD
-cuv
-cCr
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(117,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-abp
-aar
-aTd
-aWj
-abp
-aaa
-aaU
-adj
-adY
-afc
-afz
-agk
-agR
-afz
-ahR
-afz
-aiW
-ajp
-ajR
-agj
-agq
-agq
-agq
-acH
-ags
-alK
-agq
-anR
-apf
-auQ
-azz
-azz
-azz
-azz
-azz
-aUA
-boH
-bDZ
-bEF
-bHx
-bHk
-aBh
-aGx
-cBh
-aHs
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aHY
-aIv
-aIv
-aJW
-aHY
-aRQ
-aYe
-aNT
-aUO
-aQU
-aSn
-aNT
-aaa
-aaa
-aaU
-aSt
-bjk
-bqG
-aWB
-aWI
-aWP
-aXy
-aXN
-aXy
-ckg
-aXy
-aXy
-aXy
-aZZ
-bag
-aWB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bqX
-bSs
-bqX
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-cuR
-cuR
-cFZ
-cLJ
-cNl
-cuR
-cIG
-ccw
-csM
-cyo
-cyt
-blU
-bqz
-bAD
-bIi
-bBP
-buS
-caR
-czi
-cKj
-buS
-bFY
-cEX
-bIU
-aJE
-bbz
-bjx
-bot
-bot
-bjx
-bAH
-bQQ
-cpz
-cvs
-cwj
-cwp
-cwT
-cpz
-cCi
-cCr
-cLM
-cvf
-cCr
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(118,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aar
-aaU
-aWj
-aaU
-aaU
-aaU
-adj
-adY
-aeR
-afB
-agp
-agS
-agp
-agp
-agp
-aiX
-ajr
-ajW
-agn
-agw
-ajJ
-ahw
-anQ
-aUS
-ckG
-cwk
-aBm
-aoh
-acF
-arl
-ayX
-aDj
-bGN
-bGR
-bHb
-bvd
-bHq
-bHf
-bHf
-arw
-aBi
-aGx
-cBh
-aHs
-aaU
-aaa
-aaa
-aEQ
-aEQ
-aEQ
-aEQ
-aEQ
-aHY
-aHY
-aHY
-aHY
-aHY
-aTb
-aWv
-aNT
-aNT
-aNT
-aNT
-aNT
-aSt
-aSt
-aSt
-aSt
-bjk
-bqG
-aWB
-aWB
-aWQ
-aXz
-aXU
-aYu
-ckY
-aZn
-aZx
-bEs
-bac
-aWB
-aWB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bqX
-bSs
-bqX
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-cuR
-cGa
-cuR
-cNm
-cuR
-cIH
-cgv
-coE
-bxM
-bau
-bXt
-brH
-bAE
-bIt
-cdX
-buS
-buS
-buS
-buS
-buS
-cnz
-cEZ
-bJa
-aKZ
-bbB
-blv
-czK
-bph
-bqR
-bAM
-cvx
-bMk
-bMw
-bMD
-bMv
-bMv
-cvs
-cCj
-cCu
-cLN
-cLS
-cCr
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(119,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-adj
-adY
-aeR
-afI
-agt
-agV
-adF
-adF
-aih
-adM
-adm
-aeH
-acF
-adJ
-adi
-afq
-agY
-aij
-brB
-adi
-amf
-aoc
-asJ
-asJ
-asJ
-asJ
-asJ
-asJ
-asJ
-bvt
-aDv
-bHu
-bHy
-bHB
-aAj
-aGx
-cBh
-aHs
-aaU
-aaa
-aaa
-aEQ
-aFw
-aDR
-aDM
-aLV
-aDN
-aDN
-aDN
-aDN
-aDg
-aUM
-bfl
-aOa
-aPI
-aPI
-aPI
-aPI
-aPI
-aTn
-aPI
-aPI
-bjp
-bqW
-aUh
-aWB
-aWB
-aWB
-aXV
-aYv
-aYN
-aWB
-aWB
-aWB
-aWB
-aWB
-aye
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bqX
-bSs
-bqX
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-cuR
-cGf
-cLK
-cNn
-cuR
-cIF
-cgB
-bqr
-bbh
-bga
-bqs
-brJ
-bBs
-bIL
-ciQ
-cmK
-cws
-czv
-cmU
-crg
-cvR
-cFd
-bEl
-aMm
-bbC
-blw
-blw
-blw
-blw
-bAT
-cez
-bMl
-bMv
-bMv
-bMw
-bMv
-cpz
-cuc
-cpz
-cvs
-cCl
-cCu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(120,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaU
-aaa
-adj
-adM
-adM
-afe
-afL
-adM
-adM
-ahQ
-ahV
-aiI
-adM
-adt
-aeO
-acF
-aek
-aes
-afr
-ahi
-ail
-ckH
-alr
-avn
-apb
-asJ
-atB
-aBU
-aDk
-bGO
-bGS
-asJ
-aDz
-ark
-bHv
-aPF
-aPF
-aJA
-aGx
-cBh
-aHs
-aaU
-aaa
-aaa
-aEV
-aFy
-aGd
-aDM
-aMg
-aIa
-aGE
-aGE
-aGE
-aLi
-aUT
-baI
-aOb
-aPK
-aPK
-aPK
-aPK
-aPK
-aVm
-btR
-aPK
-bjH
-brc
-bkV
-aVv
-bkR
-aWB
-aXW
-aWB
-aZd
-aWB
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-bqX
-bSs
-bqX
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-cuR
-cGg
-cLO
-cuR
-cuR
-cIF
-cgB
-bqx
-bbh
-bPw
-bqz
-bqz
-bzA
-bFE
-bFG
-col
-cxh
-czB
-cnk
-bqz
-cKH
-cFe
-cFk
-cFm
-cFq
-cFs
-cFz
-bqt
-blx
-bBn
-ceA
-bMl
-bMw
-bMv
-bNi
-bMv
-coK
-bMv
-bNu
-bMl
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(121,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaU
-adj
-adj
-adP
-aep
-aeR
-afI
-agF
-adM
-adM
-adM
-adM
-adM
-adt
-aeO
-acF
-ale
-ale
-ale
-ale
-aru
-asf
-ale
-ale
-ale
-ale
-azL
-aCj
-aDl
-aIh
-aLB
-aVE
-byR
-bHr
-bHv
-aPF
-bGp
-aAj
-aGS
-cBh
-aHs
-aaU
-aaa
-aaa
-aEV
-aFz
-aGe
-aDM
-aUK
-aGe
-alZ
-alZ
-alZ
-alZ
-aHU
-aHU
-alZ
-alZ
-alZ
-aSt
-aSt
-aSt
-bjA
-aVv
-cho
-aWq
-bro
-bwa
-bwY
-bwY
-bwY
-bCl
-bCn
-aWd
-aSt
-aaU
-bun
-bxl
-awq
-awq
-awq
-awq
-awq
-awq
-awq
-aOe
-aQv
-aaU
-bqX
-bSt
-bqX
-aaU
-cgI
-cgN
-cgN
-cgN
-cgN
-aPg
-aPg
-cgP
-aaU
-aaU
-aaU
-aaU
-cuR
-cGh
-cLO
-cuR
-cvL
-cII
-cgB
-bqr
-bbh
-bPw
-bqz
-bqq
-bzG
-bFZ
-ckp
-com
-cyu
-czF
-cDM
-crn
-cxf
-cFf
-bEl
-aOF
-bbE
-coX
-bbE
-bbE
-bqS
-bQy
-ceB
-bMn
-bMv
-bMv
-bML
-bMv
-bMv
-bMv
-bML
-bMl
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(122,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaU
-adj
-adF
-adF
-aeq
-afj
-afN
-adF
-adF
-adj
-aaU
-aaU
-act
-abQ
-aeX
-abU
-ale
-alQ
-aol
-ale
-arz
-ash
-ale
-aua
-auF
-ale
-aAL
-aCw
-aPi
-aPi
-bGT
-asJ
-bHj
-bHs
-bHw
-aPF
-bGs
-aAj
-aGx
-cBh
-aHs
-aaU
-aaa
-aaa
-aEQ
-aHn
-aWt
-aWz
-aWW
-aIc
-alZ
-alZ
-aog
-aog
-axV
-axV
-aog
-aog
-alZ
-bvv
-aUh
-cjM
-aVv
-aVv
-bue
-bue
-bxf
-bBY
-bue
-bue
-bue
-aXY
-bCo
-aWd
-cho
-aaU
-bup
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-aQa
-ajO
-ajO
-aRy
-bSO
-aRy
-bfh
-cgJ
-bye
-cmI
-bXa
-bfh
-bfh
-bfh
-cgJ
-aaU
-aaa
-aaa
-aaa
-cuR
-cHZ
-cLQ
-cuR
-bdC
-cIJ
-cgB
-bqr
-bbh
-bPw
-bqz
-brK
-bCf
-bJd
-ckD
-cpI
-cyF
-czM
-cGI
-cHW
-cxg
-cFf
-bJb
-bJJ
-bKh
-bKz
-bKS
-bLq
-bKz
-bLM
-bKz
-bKz
-bMw
-bMv
-bMv
-bMv
-bMl
-bMl
-bMl
-bMl
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(123,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaU
-adj
-adF
-adX
-aeu
-afk
-afP
-agK
-adF
-adj
-aaa
-aaU
-act
-adv
-aeO
-afW
-ale
-alT
-aom
-apN
-arA
-asn
-atr
-aud
-auG
-ale
-aAO
-asJ
-asJ
-asJ
-asJ
-asJ
-bHk
-bHk
-bHk
-aPF
-aHt
-aKc
-aGx
-cBi
-aHt
-aDM
-aDM
-aDM
-aEQ
-aDM
-aDM
-aDM
-aXa
-bdb
-alZ
-aog
-apB
-aFc
-bfj
-axV
-axV
-apB
-aog
-alZ
-aUh
-aUP
-bCC
-aZb
-bue
-bvc
-bys
-bCc
-bGZ
-bNN
-bue
-aXZ
-aXX
-aWd
-aZo
-aaU
-avv
-ajO
-aGi
-axI
-axI
-aGi
-ajO
-bFf
-aPE
-baW
-aYZ
-beu
-beK
-bTX
-bWI
-bWN
-cbj
-cdf
-cny
-bXk
-cgL
-cvD
-cvF
-cgJ
-aaU
-aaa
-aaa
-aaa
-aRv
-aaa
-aaa
-bbh
-bdD
-cIK
-cgB
-bqr
-bcT
-bPw
-bqz
-bsL
-bzG
-bFG
-clc
-bqz
-bqz
-bqz
-bqz
-bqz
-cNJ
-cAm
-cAt
-cAv
-cFg
-bKz
-bKT
-bLr
-bKT
-bLN
-bMb
-bKz
-bMv
-bMw
-bMv
-bMV
-bMl
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(124,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaU
-adj
-adF
-adX
-aey
-adM
-adY
-agK
-adF
-adj
-aaa
-aac
-acE
-adU
-aeO
-afW
-ale
-alV
-aon
-apO
-arC
-aso
-apO
-aon
-auJ
-ale
-aBz
-aEU
-aGD
-aJF
-aJF
-aJF
-aJF
-bEr
-bEK
-bEK
-bGu
-bHi
-aHa
-cBj
-cBw
-cBF
-cBF
-cBF
-cBF
-cBF
-cCf
-aHG
-aXb
-aVC
-alZ
-aog
-apG
-aFN
-axV
-aLO
-axV
-aRL
-aog
-alZ
-aUh
-aUQ
-aVM
-aVN
-bue
-bvg
-byE
-bCu
-bHa
-bOB
-bue
-aYd
-aYx
-aWd
-aZo
-aaU
-avv
-ajO
-bCv
-axI
-aNh
-aNz
-bDw
-bFv
-bHp
-bLm
-ajO
-ajO
-aRy
-bUi
-aRy
-bfh
-bfh
-cdh
-bzN
-bYT
-bYS
-cvE
-bYS
-cgJ
-bfh
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-bbh
-bdF
-cIL
-ciF
-aYG
-bdu
-biU
-brF
-bsN
-bCg
-bHC
-cmB
-bqz
-cyG
-czP
-bBQ
-cKi
-cNV
-cFf
-bJc
-bJL
-cHO
-bKz
-bKU
-bKT
-cIg
-cIj
-bMc
-bKz
-bMv
-bME
-bMv
-bMv
-bMl
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(125,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaU
-adj
-adF
-adX
-aez
-afu
-afT
-agK
-adF
-adj
-aaU
-abv
-acP
-aef
-afg
-agf
-ale
-ale
-ale
-ale
-arD
-asq
-ale
-ale
-ale
-ale
-aBH
-bGz
-ayu
-aim
-aim
-aim
-aim
-aim
-aim
-aim
-aEh
-aEq
-aHp
-aIJ
-aLc
-aQS
-aQS
-aQS
-aQS
-aQS
-aWu
-aWA
-aXd
-bre
-alZ
-apB
-axV
-aGp
-axV
-csC
-axV
-axV
-apB
-alZ
-aSt
-aSt
-cho
-aSt
-bue
-bue
-byF
-bCw
-bue
-bOC
-bue
-cho
-aSt
-ckI
-aSt
-brs
-avv
-ajO
-avY
-ajO
-ajO
-aOI
-bDU
-bGg
-bIF
-bLz
-bNe
-ajO
-bQb
-bUj
-aTh
-bfh
-brb
-bzN
-bzN
-bYU
-cgM
-bYY
-bZb
-cgJ
-bfh
-bfh
-bfh
-bfh
-bfh
-brs
-brs
-bcT
-bdD
-cIM
-ciW
-bqC
-bdu
-bXt
-csi
-bsP
-bAC
-bHC
-bIM
-bqz
-cyN
-czW
-cFX
-bRI
-cyB
-cFh
-bJe
-cRb
-cHP
-bKA
-bKV
-bLs
-czL
-cIk
-bMd
-bKz
-bMl
-bMl
-bMl
-bMl
-bMl
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(126,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaU
-adj
-adF
-adF
-aeA
-aeA
-aeA
-adF
-adF
-adj
-aaa
-chH
-acS
-aen
-afi
-agg
-ahj
-ajf
-ajf
-ajf
-aAx
-alN
-ano
-ano
-ano
-auZ
-aBL
-bnH
-axh
-anq
-anq
-anq
-anq
-anq
-anq
-anq
-anq
-bID
-aHu
-aGr
-aOJ
-aOT
-aOT
-aOT
-aOU
-aOU
-aOT
-aXP
-aOT
-aOT
-aOJ
-aog
-axV
-bfj
-axV
-axV
-axV
-axV
-aog
-aSG
-aRh
-aRq
-aRq
-aRq
-aRq
-bvz
-byZ
-bCy
-bvz
-bOV
-aRq
-cjD
-bnU
-btw
-bns
-aya
-avy
-alo
-awn
-aIS
-aNo
-aJp
-bDW
-bGB
-aHq
-bki
-bPp
-bPU
-bQi
-bUU
-bWJ
-bWP
-cbV
-bzR
-cvB
-bOz
-cwd
-bYZ
-bZc
-cgQ
-bZe
-bZe
-bZe
-bZe
-cjr
-brL
-brL
-bVW
-bVW
-cIN
-cjV
-bdu
-bdu
-bXu
-bqz
-bsQ
-bCY
-bHE
-bqz
-bqz
-bMj
-cAc
-cov
-bMj
-cyC
-cFf
-btp
-bJN
-cHO
-bKz
-bKW
-bLt
-cso
-cIl
-bMe
-bKz
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(127,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaU
-adj
-adj
-adF
-adF
-adF
-adF
-adF
-adj
-adj
-aaa
-abz
-acX
-agh
-agB
-aim
-aim
-aim
-aim
-aim
-aqs
-aqu
-aim
-aim
-awc
-axx
-ayN
-aAA
-aBM
-aCq
-aDx
-apy
-arV
-apy
-axg
-ceu
-anq
-bID
-aHu
-aGr
-aOT
-aPS
-aSb
-aTi
-aUd
-aTi
-aWs
-aYb
-ban
-bdd
-aOJ
-aog
-ayK
-bfk
-axV
-axV
-bfj
-axV
-apB
-aSH
-aSt
-aSt
-aTs
-cho
-aSt
-bue
-bzD
-bCE
-bue
-aSt
-aSt
-aSt
-aSt
-cpG
-aSt
-brs
-avv
-ajO
-axZ
-ajO
-ajO
-aPf
-bEZ
-bGD
-bJk
-bLC
-cRf
-bPV
-bQT
-bVq
-cRh
-bfh
-cbY
-cdn
-cpf
-bYU
-cgM
-bYY
-bRx
-cgJ
-bfh
-bfh
-bfh
-bfh
-bfh
-brs
-brs
-bcT
-cIv
-cIO
-cgB
-bTv
-bcT
-bQE
-bqz
-bqz
-bqz
-bJf
-bqz
-caj
-cdY
-cAo
-cdY
-cup
-cyH
-cFi
-bMF
-bNF
-cHQ
-bKz
-bKT
-bLr
-bLt
-cIm
-bMf
-bKz
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(128,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaU
-adj
-adj
-adj
-adj
-adj
-adj
-adj
-aaU
-aaa
-acb
-aft
-agz
-adt
-abB
-afE
-afE
-afE
-afE
-aFu
-aeO
-aeY
-aeY
-aeY
-aeY
-aBN
-awN
-awN
-anq
-anT
-anT
-anT
-anT
-anT
-anT
-cex
-bNp
-aFC
-aFF
-aOU
-aQt
-aSf
-aTj
-aTv
-aTv
-aTv
-aYi
-baU
-bdh
-aOJ
-aog
-aog
-axV
-aHV
-aRr
-axV
-aog
-aog
-aSH
-beG
-aaU
-aaU
-aaU
-aaU
-aRv
-aaU
-aaU
-aRv
-aaU
-aaU
-aaU
-aWj
-aSq
-aWj
-aaU
-avv
-ajO
-aze
-azJ
-aNr
-bCF
-bDw
-bPK
-bKx
-bmv
-ajO
-ajO
-aRy
-bVC
-aRy
-bfh
-bfh
-bBR
-cqf
-bYX
-bYS
-cvE
-bYS
-cgJ
-bfh
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-bbh
-cIw
-bjm
-cgB
-bYW
-bcT
-bQE
-bsV
-bsG
-bHD
-bHD
-bMj
-caH
-chV
-cDL
-cox
-cvu
-cyI
-cyL
-cyM
-bJO
-cKp
-cHS
-cHU
-cIb
-cvv
-cIn
-bMg
-bKz
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(129,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-abz
-acP
-aef
-acS
-abC
-ahY
-ajg
-abI
-acQ
-aHr
-aeO
-aeY
-ahB
-aiY
-aeY
-aCk
-aeY
-aeY
-anq
-aof
-cpq
-asa
-aoL
-anT
-anT
-cey
-bRF
-aFC
-aFF
-aOU
-aQu
-aSf
-aTv
-aTv
-aTv
-aTv
-aYj
-ban
-bdl
-aOJ
-alZ
-apB
-aog
-aog
-aog
-aog
-apB
-alZ
-aSH
-aaa
-aaa
-aaa
-aaa
-aaa
-aWR
-aaa
-aaa
-aWR
-aaa
-aaa
-aaa
-aaU
-aSq
-aaU
-aaa
-avv
-ajO
-aGi
-axI
-aIX
-aGi
-ajO
-cRe
-aZP
-bmH
-aYZ
-bht
-bcY
-bVD
-beC
-cgF
-bfh
-bBS
-cqh
-bXk
-cvC
-cvD
-cvF
-cgJ
-aaU
-aaa
-aaa
-aaa
-aWR
-aaa
-aaa
-bbh
-cIx
-bjm
-cgB
-bbh
-bbh
-bQE
-bsV
-bts
-bHG
-bQp
-bMj
-cbm
-byQ
-bHK
-cGU
-byQ
-bHK
-bIu
-bJh
-byQ
-cHR
-bKC
-bKY
-bKY
-bKY
-cIo
-bKz
-bKz
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(130,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aai
-ade
-aev
-act
-acQ
-aiy
-ajk
-aqR
-ats
-aLb
-aeB
-aeY
-ams
-ahC
-akS
-aCo
-aor
-aeY
-anI
-aoL
-anT
-asa
-bEz
-bES
-bES
-bGv
-ccg
-aFC
-ago
-aOT
-aQz
-aSf
-aTw
-aTv
-aTv
-aTv
-aYM
-bbi
-aOT
-aOT
-aOJ
-aOJ
-aOJ
-bmF
-bnT
-aRJ
-aRJ
-aRJ
-chm
-aaU
-aaU
-aaU
-aaU
-aaa
-btT
-bzE
-btZ
-btT
-aaa
-aaa
-aaa
-aaU
-aSq
-aaU
-aaa
-buv
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-aQa
-ajO
-bmM
-bcZ
-bVF
-bTS
-cgG
-bfh
-bEo
-cqm
-bZa
-bfh
-bfh
-bfh
-cgJ
-aaU
-aaa
-aaa
-aaa
-ctG
-cIh
-ctJ
-ctG
-cIy
-bjm
-cgB
-bbh
-bpm
-bQE
-bsV
-buj
-bpD
-bXL
-bsV
-cyO
-byN
-bzK
-czw
-bDa
-coe
-bIv
-bJi
-bDa
-czw
-byQ
-cPQ
-cIc
-cIc
-cIp
-bxj
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(131,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-acQ
-aiD
-ajq
-arc
-atJ
-bmp
-bGi
-aeY
-ahF
-apx
-akU
-aCp
-aor
-aeY
-anL
-aoU
-anT
-anT
-anT
-anT
-anT
-cex
-bRF
-aFC
-aFF
-aOU
-aQB
-aSf
-aTv
-aTv
-aUU
-aTv
-aYj
-ban
-bdO
-bfv
-bfv
-bfv
-bkW
-bmJ
-bof
-aQJ
-aQJ
-aQJ
-aQJ
-aQJ
-aQJ
-aRZ
-aaU
-aaa
-bvB
-bzF
-bCR
-btT
-btT
-bvB
-btT
-btT
-cjE
-aaU
-aaa
-bux
-bxl
-azq
-aCU
-aCU
-aCU
-aCU
-aCU
-bbu
-aQj
-ajO
-ajO
-bdi
-bWm
-cjI
-cgH
-cgN
-cgO
-cgN
-cgN
-cgN
-aPg
-aPg
-cgK
-aaU
-aTx
-ctG
-ctG
-ctG
-cIi
-cLR
-ctG
-cIy
-bjm
-cmn
-bWZ
-bXj
-bXv
-bsV
-bul
-bpD
-bsV
-bsV
-cyP
-byQ
-bzS
-czw
-bDb
-bBu
-crX
-czI
-bBu
-cKq
-cHT
-cPy
-cId
-bLD
-coA
-bxj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(132,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-ajw
-acQ
-acQ
-acQ
-acQ
-acQ
-ahD
-asr
-aeY
-ahG
-apM
-akV
-aqv
-aor
-aeY
-anP
-aqP
-apz
-asK
-apz
-btk
-cev
-anq
-ccq
-aFC
-aFF
-aOU
-aQI
-aSf
-aTv
-aTv
-aTv
-aTv
-aZa
-bbi
-aOT
-bfy
-bgJ
-bjL
-blD
-bmK
-boi
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aSq
-aaU
-aaa
-btT
-bzM
-bCT
-bHc
-bQt
-bUg
-cch
-ccy
-aSq
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cjH
-aaa
-aaU
-bWv
-aaU
-aaa
-aaU
-aZB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-ctJ
-cuS
-cvq
-cIq
-cMU
-cvr
-cIw
-bjm
-cgB
-bbh
-coC
-bpO
-bpE
-bpE
-bpE
-bpE
-bpE
-cyQ
-byQ
-cCO
-czx
-czC
-czG
-bIw
-czJ
-bBu
-bKm
-byQ
-cHX
-cKP
-cOM
-cOM
-cOM
-cOM
-cOM
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(133,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ajw
-ajw
-aki
-alg
-alY
-aoo
-ajw
-bAt
-aeO
-aeY
-aeY
-apZ
-aeY
-aeY
-aeY
-aeY
-anq
-anq
-anq
-anq
-anq
-anq
-anq
-anq
-ccz
-aHv
-aFF
-aOT
-aQP
-aSf
-aTv
-aTv
-aTv
-aTv
-aZc
-bbH
-bdP
-bdP
-bgR
-bdP
-aOJ
-aPN
-bes
-aaU
-aye
-aye
-bQe
-aye
-aaU
-aSq
-aaU
-btT
-btT
-bzP
-bCZ
-bKl
-bQW
-bUp
-cci
-btZ
-aSq
-bgh
-bIY
-bIY
-bRo
-bIY
-bRo
-bIY
-bIY
-bIY
-bIY
-bIY
-bIY
-bRp
-aaa
-aaU
-bWv
-aaU
-aaa
-aaU
-aZB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-ctK
-cuT
-cuT
-cuT
-cMV
-cNo
-cIz
-bWO
-cIX
-bZh
-bZh
-bZh
-bZh
-bZh
-bsV
-bze
-bpD
-cyR
-byQ
-crq
-csp
-bPS
-bQc
-bQj
-bQo
-bJP
-bKn
-byQ
-cHY
-cyS
-cOM
-cOQ
-cOV
-cOZ
-cOM
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(134,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-cpB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-apv
-apv
-crP
-ajw
-ajX
-akk
-ali
-amn
-aop
-aqb
-bEI
-bGj
-aff
-ahH
-aqG
-akW
-any
-aos
-apk
-atQ
-atL
-atk
-bBd
-bFN
-atM
-bFR
-aff
-cfe
-aIk
-aIU
-aOX
-aQQ
-aSf
-aTv
-aTv
-aUW
-aTv
-aZc
-aVf
-bdP
-bfF
-bha
-bdP
-abp
-aPN
-bes
-aaU
-aye
-aaU
-aaU
-aaU
-aWj
-aSu
-aRZ
-btT
-bwh
-bAe
-bDD
-bKr
-bRl
-bUL
-btT
-btT
-cjE
-bsz
-aaU
-aaU
-cdV
-cdV
-cdV
-cdV
-cdV
-cdV
-cdV
-cdV
-cdV
-cgi
-cgD
-cdV
-chy
-chN
-bWQ
-bWQ
-cdo
-aPg
-aPg
-cet
-bpL
-bBO
-bBO
-bBO
-bBO
-ctG
-ctG
-cvr
-ctG
-ctG
-ctG
-cIy
-bjW
-cKO
-bZh
-bZk
-bZn
-bZq
-bZh
-cEE
-bpD
-cmL
-cyS
-byQ
-byQ
-byQ
-byQ
-byQ
-byQ
-bKk
-byQ
-byQ
-byQ
-cOD
-cIe
-cON
-cOR
-cOW
-cPa
-cOM
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(135,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aYp
-cdc
-crQ
-ajF
-akc
-akm
-alk
-amH
-aoz
-ajw
-agA
-alP
-anA
-aot
-aqK
-avo
-aCs
-aFo
-aot
-aot
-aot
-aot
-bCO
-ahJ
-ahJ
-ahJ
-ahz
-bRF
-aEu
-aJc
-aPa
-aQR
-aSz
-aTz
-aTz
-aVb
-aTz
-aZg
-aVf
-bdW
-bfJ
-bhc
-bdP
-abp
-aPN
-bes
-aaU
-aye
-aaU
-aWj
-aWj
-aWj
-aSv
-aSu
-buk
-bwz
-bAi
-bEe
-bKL
-bRE
-bUY
-ccj
-aSw
-aaW
-bsz
-aaa
-aaa
-aaa
-aye
-aaU
-ceR
-cfa
-cfo
-cfp
-cfC
-cdV
-cgl
-cgR
-chr
-chz
-chX
-cdV
-cdV
-ckJ
-cdV
-cdV
-cdV
-bpN
-bCa
-bSo
-bSv
-cfl
-ctX
-cuU
-cwr
-cIr
-cMW
-ctG
-cIA
-cIP
-cIY
-cJf
-cJg
-cNC
-bZo
-bZs
-bXN
-bJp
-bJp
-cyT
-bPs
-bYC
-bPN
-bPN
-bPN
-bPN
-cAu
-cCh
-cCh
-cCh
-cIa
-cIf
-cOO
-cOS
-cOX
-cPb
-cOY
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(136,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-agd
-cdc
-crR
-ajF
-akf
-akh
-ali
-amR
-ajw
-ajw
-bGc
-aeO
-aff
-ahS
-ajQ
-axO
-anX
-aoC
-apl
-ahJ
-cpd
-ahJ
-aqG
-bED
-bET
-bET
-bGw
-chQ
-cAV
-aJc
-aOT
-aQX
-aSE
-aTC
-aUe
-aVf
-aVf
-aSE
-bcd
-bdY
-bfM
-bhg
-bdP
-abp
-aPN
-bey
-aaU
-aye
-aaU
-aaU
-aaU
-aWj
-aWj
-aWj
-btT
-bwB
-bAm
-bEh
-bLo
-bSz
-bVa
-btT
-aaU
-aby
-bsz
-aaa
-aaa
-aaa
-aye
-aaU
-ceR
-cff
-cfo
-cfA
-cfH
-cfW
-cgo
-cgS
-chr
-chA
-chY
-ciY
-ckt
-clY
-cnx
-cpK
-cdV
-bBE
-bCa
-bSp
-bSw
-cfl
-cuu
-cuV
-cwE
-cuV
-cMX
-ctG
-bdG
-cIM
-coa
-cwH
-cyq
-cyw
-cJh
-bZh
-bsY
-btx
-bum
-cyU
-czd
-czj
-blp
-blp
-bme
-bxj
-bxj
-bxj
-bxj
-bxj
-bxj
-bxj
-cOM
-cOM
-cOY
-cOY
-cOY
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(137,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aYp
-cdc
-crR
-ajF
-akh
-akh
-alp
-amT
-ajw
-awN
-bGc
-ahI
-aff
-ahW
-ajQ
-ayi
-anX
-aoC
-aqh
-ahJ
-ahJ
-ahJ
-aqG
-bEE
-bFQ
-bFS
-ahz
-aAj
-cAW
-aJC
-aOT
-aRc
-aOT
-aOT
-aOT
-aOU
-aOU
-aOT
-aOT
-bdP
-bdP
-bhl
-bdP
-abp
-aPN
-bes
-aaU
-bQe
-aye
-aye
-aye
-aaU
-aWj
-bnS
-buq
-bwC
-bAr
-bEx
-bMz
-bSD
-bVu
-bvB
-aaU
-aby
-bsz
-aaa
-aaa
-aaa
-aye
-aaU
-ceR
-cfa
-cfo
-cfB
-cfH
-cfW
-cgo
-cgU
-chs
-chs
-chZ
-ciZ
-cku
-cmf
-cnK
-cnK
-cdV
-bBO
-bUB
-bSq
-bVf
-cfm
-cuw
-cuV
-cuV
-cuV
-cMY
-ctG
-bdH
-cIM
-coi
-bZh
-bZh
-bZh
-bZh
-bZh
-bsZ
-bsZ
-bsZ
-bxj
-byU
-czk
-blp
-coy
-cdd
-aYp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(138,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aax
-aax
-aax
-aax
-aax
-apv
-crS
-ajw
-ajw
-akx
-ajw
-anc
-ajw
-axe
-bGc
-aeO
-ahz
-aiw
-ajQ
-alL
-anX
-aoC
-aqi
-ahJ
-ahJ
-azK
-bDo
-bFK
-bFK
-bFT
-aff
-aAj
-cAW
-aJQ
-aHO
-aRB
-aIO
-aTG
-aUj
-aVi
-aWD
-aZh
-aTG
-aaU
-aaU
-cuA
-cuy
-bcc
-bcO
-bes
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aTy
-btT
-btT
-bwL
-bwL
-bEY
-bMB
-bSF
-bVA
-btT
-aaU
-aby
-bsz
-aaa
-aaa
-aaa
-aye
-aaU
-ceR
-cff
-cfp
-cfC
-cfI
-cdV
-cgp
-chb
-cht
-cht
-cia
-cjh
-ckw
-cmg
-cof
-cof
-cpY
-cwq
-cwV
-cAU
-cfh
-cos
-cuF
-cva
-cyp
-cuV
-cMZ
-cvr
-bdG
-cIM
-cgB
-coF
-bcT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-bxj
-byU
-czk
-blp
-ctH
-cdd
-csc
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(139,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aar
-aTd
-aWj
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aax
-aaX
-abs
-abs
-abu
-cqV
-csa
-acs
-adu
-adQ
-ajw
-anf
-ajw
-awN
-bGc
-aeO
-ahz
-aiw
-ara
-ays
-anX
-aoC
-arm
-ahJ
-atM
-aAl
-bDO
-bFL
-bFL
-bFU
-ahz
-aAj
-cAW
-aKD
-aLT
-aSo
-aSP
-aTI
-aUl
-aVn
-aWL
-aWL
-bce
-aaa
-aaa
-aaa
-aaU
-brs
-aPR
-cux
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-btZ
-bus
-bwQ
-bBk
-bFa
-bMI
-bSI
-bXp
-btT
-aaU
-abH
-bAA
-bMK
-aZp
-ceq
-cet
-cet
-cet
-cet
-cfr
-cfE
-cfJ
-cdV
-cgu
-chg
-chs
-chB
-cib
-cjs
-cky
-cmE
-cok
-cok
-cdV
-bBO
-bPv
-cBd
-cfi
-cfm
-cuH
-cvb
-cvd
-cvd
-cNa
-cNp
-ber
-cIQ
-cgB
-bqN
-bcT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-bxj
-byU
-czk
-blp
-cqT
-cdd
-aYp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(140,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aax
-aaZ
-abt
-abt
-abK
-cqV
-abN
-abL
-adQ
-adQ
-ajw
-ajw
-ajw
-awN
-bGc
-bGl
-ahA
-aiQ
-ard
-alI
-anX
-aoC
-aqh
-ahJ
-apP
-aAl
-bFL
-cqi
-bEU
-bFV
-bGx
-chW
-cAX
-cBo
-aMw
-aSp
-aTA
-aTK
-aUm
-aVo
-aWN
-aZk
-bcg
-aaa
-aaa
-aaa
-aaU
-brs
-aQp
-cux
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-bud
-buE
-bwS
-bBv
-bFb
-bMS
-bBv
-bXM
-bvB
-bWq
-acY
-adz
-bsz
-aaa
-aaU
-cdt
-ceK
-ceK
-cdV
-cft
-cfF
-cfK
-cgb
-cgw
-chj
-aXF
-chD
-cid
-cju
-ckz
-cmG
-coT
-cpL
-cpZ
-bBO
-cxd
-cBd
-cfj
-cfl
-cuI
-cuV
-cyv
-cuV
-cNb
-cNq
-beW
-cIM
-cgB
-bqV
-bcT
-aaU
-aaa
-aaa
-aaU
-aaU
-aaU
-blp
-btK
-czl
-blp
-cqU
-bBZ
-bme
-bme
-bme
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(141,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aax
-aba
-aax
-aax
-aax
-aax
-aax
-acR
-abL
-adQ
-aQO
-aei
-atZ
-aFv
-bGd
-bGm
-aff
-aiR
-arg
-amu
-amu
-api
-ahJ
-ahJ
-ahJ
-aAl
-bFL
-bFL
-bFO
-bFU
-ahz
-aCm
-aEx
-aGJ
-aNm
-cBK
-aJr
-aTG
-aUn
-aVp
-aWT
-aZl
-aTG
-aaU
-aaU
-aaU
-aaU
-abp
-aQq
-bes
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aTy
-btT
-btT
-bwT
-bBB
-bGb
-bMW
-bTF
-bXM
-btT
-btT
-btT
-cjF
-bMX
-cdt
-cdt
-cdt
-ceL
-ceT
-cdV
-cfu
-cdV
-cdV
-cdV
-cdV
-chk
-chu
-cdV
-cdV
-cdV
-ckA
-cmY
-cdV
-cdV
-cdV
-bBO
-bSm
-cBk
-cfk
-cfl
-cuJ
-cvc
-cyz
-cuV
-cNc
-cNr
-byT
-cIR
-coj
-byT
-bzY
-aaU
-aaa
-aaa
-blp
-bme
-bme
-blp
-btL
-czm
-bzq
-bui
-clZ
-buo
-buo
-bme
-bme
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(142,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aax
-aax
-aea
-adQ
-adQ
-aer
-auc
-apv
-agJ
-amp
-aff
-aiS
-art
-amv
-akR
-apj
-atA
-atK
-aqg
-aCO
-bFM
-bFP
-bFM
-bFW
-aff
-azP
-azP
-aGQ
-aNv
-cBL
-bhR
-aTM
-aTM
-aTG
-aTG
-aTG
-aTG
-aaa
-aaa
-aaa
-aaU
-abp
-aQr
-bes
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-bnS
-buq
-bwZ
-bBC
-bGk
-bNf
-bBv
-bXM
-ccn
-ccA
-ccy
-aTl
-bsz
-cdG
-cer
-cew
-ceM
-ceV
-asU
-arB
-asw
-atb
-avl
-aMa
-crv
-aOE
-aQc
-clz
-aMa
-aQd
-cks
-crv
-crx
-aeI
-bBO
-bSn
-cBl
-bSn
-cfl
-cuK
-cuV
-cyz
-cuV
-cNd
-cNs
-beY
-cIM
-cgB
-btl
-bBl
-aaU
-aaa
-aaa
-bme
-bnY
-bpT
-bqL
-btL
-czn
-czy
-bui
-bui
-bui
-bui
-bui
-bme
-bme
-bme
-bme
-bme
-bme
-bme
-bOn
-bme
-bOo
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(143,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aax
-afO
-ala
-abL
-aet
-aeK
-afU
-ahe
-aiJ
-ahz
-ahz
-arI
-ahz
-ahz
-aff
-aff
-aff
-aff
-aff
-ahz
-ahz
-ahz
-aff
-aff
-aka
-aka
-aCe
-aNB
-aDh
-aka
-aql
-aql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abp
-aQr
-beD
-cuy
-cuy
-cuz
-aaa
-aaa
-aaU
-aWj
-aaU
-btT
-bxa
-bBF
-bGy
-bNk
-bUc
-bXM
-cco
-ccE
-btZ
-aTl
-bsz
-cdU
-ces
-ces
-ceN
-ceW
-cJv
-mkx
-cJw
-cJN
-asR
-awe
-asS
-asS
-asS
-asS
-avC
-aQe
-ckx
-cqP
-crl
-csQ
-cqs
-cqG
-crt
-cdm
-ctl
-cuL
-cvd
-cAp
-cvd
-cNe
-cNt
-beZ
-cIS
-coz
-bty
-bBl
-aaU
-aaU
-aaU
-bme
-bog
-bpT
-bqM
-btL
-czm
-bui
-cOw
-bui
-bui
-bui
-bui
-bui
-bui
-bui
-bNW
-bOa
-bOe
-bOi
-cnd
-bOl
-bOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(144,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adn
-ahZ
-amP
-aea
-adQ
-ayk
-aGZ
-aKn
-bEG
-bEX
-bEX
-asg
-bEX
-bEX
-aXv
-bEM
-bEO
-bEP
-amE
-asp
-auh
-ayG
-aNX
-aEA
-bvi
-bvF
-bvL
-aXn
-cBM
-bDS
-bER
-aql
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aVs
-aVs
-aUq
-bmO
-aUq
-aVs
-aVs
-cuA
-cuz
-aaa
-aaU
-aWj
-aaU
-btT
-btT
-bBH
-btT
-bNl
-bvB
-bXM
-btT
-btT
-btT
-cjF
-bMX
-cdt
-cdt
-cdt
-ceO
-ceX
-aeI
-aQx
-asD
-asR
-asR
-avE
-avQ
-avQ
-avQ
-avQ
-bem
-aQe
-asR
-aSK
-aSr
-aeI
-bxz
-bwP
-cBn
-cBH
-ctE
-cuM
-cvg
-cBa
-cJk
-cNf
-cNu
-bSy
-cIT
-coD
-bub
-bIo
-aaU
-cNK
-aaU
-bme
-bom
-bpT
-bqU
-btL
-czo
-bPO
-bPT
-bQd
-bQd
-bQr
-bJo
-bNQ
-bNQ
-bNQ
-bNX
-bOa
-bOe
-bOg
-bui
-cnf
-bme
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(145,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aae
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adq
-aib
-asy
-aea
-ann
-azG
-aag
-ael
-agQ
-aje
-akM
-anz
-akM
-akM
-apq
-aqZ
-avT
-avT
-aCN
-avT
-avT
-aAb
-avT
-aCN
-avT
-avT
-aHl
-aNY
-cBN
-cbZ
-bEa
-amy
-aaa
-aaa
-aaa
-aaa
-aaa
-aVs
-aVs
-bjO
-bmk
-bmU
-bok
-bpr
-aVs
-aVs
-cuA
-cuy
-cuz
-aWj
-aaU
-aaa
-btT
-bBV
-btT
-bNn
-btT
-bYf
-btT
-aaU
-aVt
-adN
-bsz
-aaa
-aaU
-cdt
-ceP
-ceK
-aeI
-arN
-arF
-asS
-auC
-avH
-axM
-axM
-axM
-axM
-aPh
-aQk
-asS
-aSK
-aTW
-aVB
-cqu
-bwR
-cBx
-cBI
-ctG
-ctG
-cvh
-cBm
-cJy
-cNg
-cNs
-cIB
-cIM
-bXX
-bty
-bBl
-aaU
-bIm
-aaU
-blp
-bme
-bme
-brv
-btL
-czp
-bAW
-bBm
-bui
-bui
-bQs
-bNH
-bme
-bme
-bme
-bme
-bOb
-bme
-bOh
-cne
-bOm
-bOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(146,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adn
-ajh
-amP
-aea
-adQ
-ayk
-aGZ
-aKn
-alR
-bqQ
-aox
-anD
-aox
-aox
-aFp
-aHh
-aJS
-aMy
-axG
-aJS
-aHh
-aHh
-aHh
-aCz
-aHh
-aHh
-cBq
-aRT
-cBO
-cca
-bEa
-amy
-aaU
-aaU
-aaU
-aaU
-aaU
-aVs
-bhq
-bjY
-bka
-bmV
-bka
-bps
-ang
-ang
-ang
-ang
-cuB
-aWj
-aaU
-aaa
-btT
-bBX
-btT
-btZ
-btT
-aaa
-aaU
-aaU
-aTl
-qeq
-bPh
-guK
-hXk
-hXk
-cJp
-hXk
-hXk
-tjb
-asx
-asS
-auD
-awX
-axQ
-beH
-axQ
-aZt
-avI
-beI
-asS
-aSL
-aTZ
-aWV
-cqv
-bwV
-cBy
-cBJ
-cdy
-cuN
-cvi
-cBB
-cvi
-cuN
-cNv
-bhT
-cIM
-bXX
-bty
-bzr
-byT
-cfc
-bcT
-bmf
-bon
-bpU
-brN
-btL
-czq
-bme
-bBm
-bui
-bui
-ctV
-blp
-bme
-aaU
-aaU
-aaU
-aaU
-bme
-bme
-bme
-bme
-bme
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(147,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aax
-ajm
-aoQ
-ach
-adQ
-aFr
-aKg
-ahO
-aml
-abX
-akd
-aoA
-awt
-aDb
-aqL
-anB
-alS
-aMC
-apR
-atP
-aji
-azm
-azm
-aCB
-azm
-aRM
-bar
-aSD
-cBP
-bDV
-bEb
-aUq
-aVs
-aVs
-aVs
-aVs
-aVs
-aUq
-bhv
-bka
-bka
-bnb
-boV
-bpt
-aRF
-cog
-bnt
-ang
-cuC
-cuD
-cuD
-cuy
-cuE
-cuD
-cuy
-cuy
-cuE
-cuy
-cuy
-cuD
-cuG
-eUF
-bsz
-aej
-agc
-agT
-cJq
-apm
-aqS
-arP
-cph
-asS
-auN
-avK
-axR
-aAy
-aOk
-aOR
-aPm
-aPm
-bBo
-aTm
-aUb
-bAR
-bnf
-bwR
-cBx
-cCR
-cdz
-cPI
-cdJ
-cdM
-cdJ
-cdO
-cPK
-bbY
-cIM
-bZl
-cwO
-cyr
-cyx
-cyr
-cyr
-cyD
-cyJ
-cyJ
-cyV
-cze
-czr
-bme
-bBm
-bui
-bui
-bJq
-bme
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(148,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aax
-aax
-aea
-adQ
-adQ
-adQ
-aFt
-apv
-aiF
-amr
-aqL
-aoy
-aoD
-aoj
-aDm
-aqL
-aji
-aKs
-aNl
-apU
-atP
-aji
-aBT
-buP
-aCD
-bvl
-bvZ
-bas
-aSD
-cBQ
-ccb
-cBV
-aUw
-aVx
-aWU
-aZm
-aWU
-aVx
-bfO
-aVx
-aWU
-bms
-bnd
-boX
-bpH
-ang
-coh
-cfy
-clO
-aRu
-aSv
-aSy
-aSw
-aTk
-aQJ
-aQJ
-aQJ
-aQJ
-aQJ
-aQJ
-aRZ
-aVK
-cxa
-bPr
-sVC
-aNH
-bbQ
-cJA
-aqO
-anE
-anE
-anE
-aQT
-ayb
-axt
-aCZ
-aRG
-aOl
-aOV
-avQ
-cmX
-aRp
-bkJ
-aUf
-aeI
-bnp
-cmO
-cfU
-cmm
-cri
-cdH
-cdK
-cPu
-cdr
-bqw
-cdS
-bUs
-cIU
-coL
-cyk
-cys
-baN
-baN
-baN
-coq
-box
-box
-cyW
-cpy
-bPD
-bAY
-bBw
-bCA
-cql
-bJq
-bNI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(149,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aax
-aba
-aax
-aax
-aax
-aax
-aax
-adr
-ach
-adQ
-acT
-afR
-apv
-apv
-ajb
-amt
-anH
-aAQ
-aoG
-bvp
-aDF
-aFk
-aHh
-aKB
-aNu
-aou
-aou
-aji
-aBW
-aBX
-aCF
-buX
-bAh
-bat
-aSD
-cBP
-bDX
-cBW
-aUq
-aVs
-aVs
-aVs
-aVs
-aVs
-aUq
-bhO
-bka
-bka
-bno
-boZ
-bpJ
-apd
-bfI
-clH
-ang
-aRX
-aSw
-aSM
-aaU
-aTl
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aSu
-aYU
-cxb
-bsz
-aej
-agC
-aoJ
-cJB
-apm
-aqT
-arQ
-cpi
-asS
-aTQ
-avU
-ayn
-aFU
-aOq
-aOY
-aPO
-aPO
-bCW
-bvY
-asB
-bAR
-bnq
-bEW
-bQF
-cah
-cdA
-cPJ
-cdL
-cmv
-cdL
-cdQ
-cPL
-bUD
-cIV
-coN
-cyl
-bzI
-bHn
-bzI
-bzI
-cor
-boy
-boy
-cyX
-btO
-bPE
-bme
-bBm
-ccx
-bui
-bJq
-bme
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(150,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aax
-abb
-abs
-abs
-abu
-cqV
-acg
-ach
-adQ
-adQ
-adS
-adS
-adS
-adV
-ajd
-ajj
-aqL
-azr
-bwl
-bEn
-anJ
-aqL
-awh
-amx
-aNU
-aqj
-aji
-aji
-aFV
-aiv
-aMj
-amA
-bDu
-bat
-aSD
-cBR
-cbZ
-cBX
-amy
-aaU
-aaU
-aaU
-aaU
-aaU
-aVs
-bid
-bkv
-bka
-bnw
-bka
-brA
-ang
-ang
-ang
-ang
-aaU
-aaU
-aaU
-aaU
-aTl
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-bgh
-bGQ
-bIT
-bPX
-aaU
-atF
-atF
-cJC
-atF
-atF
-arO
-asC
-asS
-auY
-azE
-ayo
-bCb
-ayo
-bei
-avV
-aQs
-asS
-bwJ
-bfn
-aXh
-cqw
-bSx
-bQG
-cbd
-cdB
-biL
-bkD
-cop
-bkD
-biL
-boa
-bhT
-cIW
-cIZ
-cym
-bzU
-bzV
-cuo
-bcT
-bnO
-boz
-bqp
-cyY
-btL
-bPF
-bme
-bBm
-ccx
-bui
-crj
-blp
-bme
-aaU
-aaU
-aaU
-aaU
-bme
-bme
-bme
-bme
-bme
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(151,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aav
-aTd
-aWj
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aax
-abg
-abt
-abt
-abK
-cqV
-csb
-ads
-ajK
-adQ
-adS
-aeG
-adS
-afd
-ajI
-afK
-aqL
-aqL
-aqL
-aqL
-aqL
-aqL
-afK
-amy
-aOD
-aql
-awB
-boO
-aAp
-aCn
-amA
-bvD
-amy
-bas
-aSD
-cBN
-cca
-cBX
-amy
-aaa
-aaa
-aaa
-aaa
-aaa
-aVs
-aVs
-bkw
-bmt
-bnB
-bmt
-bpZ
-aVs
-aVs
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aTl
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-bsz
-aTl
-cxc
-aaa
-aaa
-aRD
-ciT
-cJD
-cmu
-atF
-arY
-awW
-asS
-avc
-awa
-clA
-aLF
-axM
-axM
-aPP
-crs
-asS
-cpj
-aUr
-bmT
-cqx
-bwP
-bQH
-cdj
-cdC
-biQ
-cjY
-cot
-blt
-cse
-bob
-cjz
-bjm
-cIM
-cym
-bIp
-aaU
-bIx
-aaU
-blp
-bme
-bme
-cyZ
-btL
-bPG
-bBa
-bBm
-ccx
-bui
-bJR
-bNJ
-bme
-bme
-bme
-bme
-bOb
-bme
-bOi
-bOj
-bOl
-bOp
-cnE
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(152,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aax
-aax
-aax
-aax
-aax
-apv
-crS
-adS
-adS
-aeW
-adS
-apo
-adS
-axL
-agZ
-aeZ
-agm
-aqW
-ahX
-aiU
-afZ
-agl
-apW
-amz
-amz
-aqm
-amz
-amz
-aAq
-bGa
-bGG
-bGG
-cAY
-cBq
-aRT
-cBS
-cBU
-cBY
-aqn
-acK
-acK
-acK
-aqn
-aaa
-aaa
-aVs
-aVs
-aVs
-bnB
-aVs
-aVs
-aVs
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aTl
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-bsz
-aTl
-cxc
-aaa
-aaa
-atF
-ciU
-cJE
-cJG
-cJI
-cJK
-cJL
-cJO
-asR
-aOQ
-bev
-cbJ
-aOx
-aPc
-beq
-aQe
-asR
-crw
-aUt
-bpK
-cqy
-bEW
-bQF
-cdk
-bmQ
-biR
-bjy
-cou
-csd
-byr
-bob
-bhY
-bXW
-cJa
-cyn
-bQR
-aaU
-cNL
-aaU
-bme
-bpi
-bpT
-cza
-btL
-bPH
-bBc
-bBM
-ccx
-bui
-bui
-bJR
-bNR
-bNR
-bNR
-bNY
-bOa
-bOe
-bOg
-bui
-cnf
-bme
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(153,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aYp
-cdc
-crR
-adT
-aeo
-afm
-aiA
-apt
-bve
-afS
-ahK
-aix
-ajM
-akH
-akH
-asP
-akH
-akH
-bhj
-bEJ
-cfS
-bEJ
-cml
-amA
-amA
-amA
-aMl
-bcW
-bvH
-bvL
-aXn
-cBM
-bDY
-bEd
-aqn
-cCd
-aRE
-aSY
-acK
-aaa
-aaa
-aaa
-aaU
-anK
-cAL
-anK
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aTl
-aaU
-aaU
-aaa
-aWR
-aaa
-aaU
-bsz
-aTl
-cxc
-atF
-atF
-atF
-cmh
-cmp
-atF
-atF
-asi
-asi
-cJP
-asR
-awe
-clB
-asS
-asS
-aPd
-avC
-aQe
-aRR
-cpj
-aSr
-aeI
-bQq
-cqI
-bQM
-cdl
-cdu
-cdN
-ciK
-ctd
-cwC
-bmw
-bob
-bia
-bXX
-cIM
-bty
-bIp
-aaU
-aaU
-aaU
-bme
-bog
-bpT
-czb
-btL
-bPI
-bUx
-bUx
-ccK
-cOw
-bui
-bui
-bui
-bui
-bui
-bNZ
-bOa
-bOe
-bOh
-cnc
-bOm
-bOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(154,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-agd
-cdc
-crR
-adT
-aeE
-afm
-afm
-apT
-adS
-bEu
-ahN
-afa
-aha
-ahx
-ahx
-asT
-ahx
-ahs
-afK
-aGR
-aAa
-are
-cmo
-avP
-aAW
-aDq
-aNn
-bvh
-aql
-aCe
-aYK
-aDr
-aci
-aqn
-aqn
-aRj
-aND
-aVX
-anK
-anK
-aHA
-aHA
-anK
-anK
-cAM
-bCM
-anK
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aTl
-aWj
-aMI
-cgd
-bwW
-beE
-bwW
-bsz
-aTl
-cxc
-atF
-aus
-aus
-aus
-aus
-cmw
-atF
-asv
-asN
-cJQ
-avA
-azh
-aOd
-aOM
-aOC
-aPe
-clC
-aQC
-aRV
-cJl
-cko
-aeI
-bpv
-cqJ
-cdg
-cds
-cdv
-biQ
-bXf
-bkG
-cwP
-ctn
-bob
-bib
-bXX
-cIM
-bty
-bIp
-aaU
-aaa
-aaa
-bme
-bpj
-bpT
-czc
-cze
-czs
-czy
-bui
-bui
-bui
-bui
-bui
-bme
-bme
-bme
-bme
-bme
-bme
-bme
-bOn
-bme
-bOo
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(155,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aYp
-cdc
-crT
-adT
-aeF
-afp
-aiV
-anv
-aec
-axS
-ahN
-afK
-ahb
-ahx
-aia
-atm
-alX
-ahx
-arx
-amF
-afK
-aka
-cmA
-aka
-aka
-aka
-aka
-aka
-aka
-aLU
-aNE
-aRd
-acK
-aHL
-aIN
-aMK
-aOc
-aSA
-aTo
-aTt
-aTJ
-bsR
-bCG
-bCK
-cAN
-bCN
-anK
-aaa
-aaa
-aaa
-aaa
-arE
-arE
-arE
-arE
-bxP
-arE
-aMI
-cgX
-chC
-cik
-bwW
-bsT
-bGQ
-bHe
-bHA
-aus
-bcM
-cmi
-cmq
-aus
-atF
-aqU
-asG
-cJR
-aws
-aqU
-aqU
-aMz
-chE
-cie
-cjK
-ckm
-cnh
-ckm
-ckm
-ckm
-ckm
-cqK
-cru
-csz
-cdw
-biQ
-biQ
-biQ
-biQ
-biQ
-boc
-bzV
-bYm
-cJb
-bzV
-bUn
-aaU
-aaa
-aaa
-blp
-bme
-bme
-blp
-btL
-bPH
-bBe
-bui
-cma
-bHt
-bHt
-bme
-bme
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(156,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-adq
-adq
-adq
-aec
-afM
-agx
-aja
-aoM
-aec
-agi
-ahN
-afK
-ahc
-ahx
-ahx
-ajs
-atO
-ayl
-bml
-ary
-afK
-atR
-cmC
-aSU
-aka
-aER
-aFO
-aGF
-aKf
-aMb
-aPl
-aRf
-adR
-arX
-aKj
-aVy
-aRx
-aSF
-aTr
-arH
-aVa
-aIK
-aKk
-aTU
-cAO
-cCA
-anK
-aaU
-aaU
-aaU
-aaU
-arE
-bGJ
-bFe
-atf
-bxS
-bzo
-aMI
-cgY
-bwW
-cil
-bwW
-bwW
-bCj
-anr
-bHO
-aOP
-biu
-cmj
-cmr
-cmx
-atF
-cfv
-asI
-cJS
-clx
-awA
-chl
-aNx
-chF
-cir
-cjL
-ckB
-cno
-cpa
-cpR
-cqa
-ckm
-ckm
-csq
-ckm
-bUN
-biV
-cKg
-cLn
-cLz
-bmz
-biV
-cdP
-bXX
-cIM
-bqE
-bcT
-aaU
-aaa
-aaa
-aaU
-aaU
-aaU
-blp
-cmy
-cmz
-blp
-cqU
-blp
-bme
-bme
-bme
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(157,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aav
-aaU
-aWj
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aec
-aec
-bEp
-bEp
-bEp
-bEp
-bEp
-ahN
-afK
-ahd
-ahx
-ahx
-ajD
-atC
-ahx
-bmr
-bPu
-ciN
-cly
-aCv
-cwZ
-aka
-aEX
-aFQ
-aGI
-aKf
-aMb
-aPx
-aLj
-anh
-azo
-aKp
-aND
-aND
-aWH
-aHx
-asc
-aWn
-bvG
-aKl
-bCQ
-cAP
-anK
-anK
-arE
-atf
-aKT
-arE
-arE
-att
-cqr
-arE
-byt
-bzo
-aMI
-cgZ
-cif
-cim
-cmD
-ciS
-bCj
-anr
-bHO
-aus
-blX
-cmk
-cms
-aus
-atF
-ast
-asI
-cJT
-cJZ
-cKa
-cKb
-cKc
-chG
-ciD
-cjU
-ckC
-cnr
-cpk
-cpS
-cqc
-cqA
-cqL
-css
-ckm
-bUO
-cdR
-ciL
-cLr
-cwQ
-bPx
-bod
-beW
-bXX
-cIM
-bqD
-bcT
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-bxw
-bza
-bMQ
-blp
-cnf
-cdd
-aYp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(158,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-abp
-aav
-aTd
-aWj
-abp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aee
-aeP
-aeP
-aqA
-aeP
-agX
-ajS
-aHj
-bvm
-ahP
-ahN
-afK
-afK
-ahT
-ahx
-ahx
-ahx
-ahx
-bvo
-amM
-apW
-ars
-cwN
-azR
-aBG
-aEY
-aFR
-aGU
-aKm
-aMc
-aPx
-aRg
-aGH
-aIf
-aLs
-aRA
-bkT
-aWJ
-aHz
-btb
-aWn
-bvR
-bCI
-bDJ
-cAM
-bCP
-boA
-aYC
-brf
-att
-att
-att
-btP
-bwo
-arE
-byu
-arE
-aMI
-cha
-cig
-cck
-bwW
-ciV
-bCj
-anr
-bHO
-aus
-aus
-aus
-aus
-aus
-atF
-asI
-asI
-cJU
-avw
-bRd
-azg
-aNQ
-chI
-ciH
-cjX
-ckF
-cns
-cpo
-cpT
-cqn
-cqC
-cqM
-cst
-ckm
-bUG
-cfn
-con
-coo
-cwR
-bPy
-bVY
-bWn
-bYO
-cJc
-bXb
-bcT
-bpP
-bpP
-bpP
-bpP
-bpP
-bpP
-cro
-bza
-bMQ
-blp
-ctH
-cdd
-csc
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(159,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aav
-aaU
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-adx
-aaU
-aaU
-aaU
-aaV
-ahP
-ahP
-ahP
-bzp
-ahP
-ahN
-aiB
-afK
-ahU
-ait
-ajE
-amC
-ahx
-bvo
-aIm
-apW
-arv
-aub
-azS
-aBG
-aEZ
-aFS
-aHd
-aKr
-aMf
-aPy
-aRi
-aqc
-aqn
-aci
-aci
-aci
-aXQ
-aHy
-bDc
-aWw
-aWy
-aYm
-aYD
-aYE
-aYF
-beQ
-bjw
-bwu
-bAd
-aMo
-aMG
-bVt
-bwp
-bvb
-byv
-ceQ
-cgT
-chc
-bmY
-ccI
-bmY
-anm
-asu
-anr
-bHO
-atF
-atF
-atF
-atF
-atF
-atF
-aqU
-asM
-cfL
-aqU
-aqU
-aqU
-aqU
-chK
-chK
-ckm
-ckm
-ckm
-cpA
-cpU
-cqo
-cqD
-cqO
-ckm
-ckm
-bjZ
-blq
-bCz
-bCz
-cgc
-cxi
-cAA
-cAI
-cAZ
-cJd
-cBp
-ccV
-cIt
-cIu
-bMq
-bJl
-bLK
-bYe
-bHL
-bYt
-bYD
-blp
-crU
-cdd
-aYp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(160,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-adx
-aaU
-aaa
-aaa
-aaU
-ahP
-akn
-aJR
-bEg
-ahP
-aif
-ass
-afK
-afK
-afK
-afa
-afa
-anF
-bvq
-afK
-aAa
-aka
-atS
-aka
-aql
-aFa
-aFW
-aHm
-aKf
-aMr
-aPA
-aLj
-aPx
-aTN
-avm
-aVH
-aWX
-aZF
-anK
-aHz
-aWx
-aTr
-boA
-cAF
-bCL
-boA
-anK
-bqb
-avm
-brj
-bsO
-avm
-bVz
-bVK
-bGX
-cbR
-ceS
-bmW
-chv
-bwW
-cin
-aMD
-arp
-bCk
-aqk
-bRn
-qlJ
-qlJ
-bcG
-cmt
-auR
-aYL
-cfw
-bap
-cJW
-bcI
-bbF
-bbN
-bbN
-bbO
-bbL
-bcb
-aaU
-ckm
-cpF
-cpV
-cqp
-cqE
-crb
-ckm
-bgl
-bgl
-bjb
-bjb
-bkI
-cic
-cxj
-biV
-bie
-bZl
-cqQ
-bqD
-cBr
-aRY
-bcE
-aRY
-aRY
-btz
-cOe
-btB
-btB
-btA
-blp
-blp
-blp
-blp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(161,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abe
-aaU
-aaa
-aaa
-aaU
-aio
-akZ
-biO
-bEt
-bEA
-aik
-ajl
-ajP
-alh
-aqN
-ato
-aut
-ayw
-bDB
-bSu
-cjm
-asm
-aqo
-aAo
-bDi
-aFb
-aGf
-aHw
-aKu
-aME
-aPC
-aRk
-aSI
-aSI
-aUJ
-aVU
-aVU
-aZH
-bch
-bea
-bfS
-biX
-bkK
-bmA
-bnE
-bch
-aSI
-bqk
-brg
-bry
-btq
-avm
-aMI
-aMI
-bwW
-bwW
-bwW
-aMI
-chw
-bwW
-ciq
-bwW
-ciV
-bwW
-aaU
-bsT
-bRo
-bRp
-anr
-bcI
-bgw
-bgw
-bgw
-bdk
-cJX
-bcI
-bbJ
-bbF
-bbN
-bbN
-bbN
-bbO
-bbV
-ckm
-cie
-ckm
-cqq
-ckm
-crm
-ckm
-bgn
-bhn
-cuO
-bhn
-bhn
-cic
-cDi
-biV
-bdH
-bWO
-cqR
-bqE
-cBr
-aST
-bcF
-ckc
-bnQ
-btA
-bMQ
-bta
-bta
-bta
-bta
-bta
-aaa
-aaa
-aaa
-bNK
-bNS
-bNU
-aaa
-bNK
-bNS
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(162,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaU
-aio
-alb
-aKe
-bEw
-ahP
-bEB
-bGo
-afA
-ahN
-aiC
-alz
-avt
-azx
-bEv
-bZM
-avt
-avd
-bDp
-bDv
-aiC
-aFd
-aGj
-aHB
-aKz
-aMM
-aPG
-aRn
-aSO
-aUa
-aUN
-aWf
-aWY
-aZL
-bcq
-bcq
-bgb
-aSO
-bkQ
-bmB
-bnF
-bpc
-bqa
-bnF
-brh
-brE
-btt
-btJ
-bmS
-bwq
-bwX
-bwX
-bzL
-bwX
-bBp
-bwW
-ciq
-bwW
-ciV
-bwW
-aaU
-aaa
-aaa
-bsz
-cJx
-cJF
-bRA
-cJJ
-bsX
-cJM
-cJY
-bcI
-bbJ
-bbL
-bbN
-bbN
-bbN
-bcb
-ciI
-bjI
-bkB
-bmP
-bKj
-bbV
-bfG
-bge
-bgB
-bho
-bjc
-bjK
-bkI
-csm
-cxk
-biV
-cvN
-bjm
-bXX
-bqD
-cBs
-aTc
-bdL
-biE
-bpV
-bLZ
-bNt
-bta
-btQ
-bxN
-bDh
-bHM
-aaa
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(163,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaU
-ahP
-alf
-afh
-bEy
-ahP
-aiz
-aiz
-aiz
-ahN
-aiC
-ake
-avt
-aDD
-aqp
-aui
-aAm
-bvw
-bDq
-aul
-bDA
-bDA
-bDA
-bDA
-avm
-aMO
-aLr
-aRs
-aSS
-and
-amY
-amY
-amY
-amY
-amY
-amY
-bvu
-aJd
-aKQ
-aJd
-aKQ
-aJd
-aJd
-bql
-bri
-brW
-btu
-bsO
-aMI
-aMI
-aMI
-bAk
-aMI
-aMI
-bzn
-aMD
-ciq
-bwW
-ciV
-bwW
-aaU
-aaa
-aaa
-bsz
-anr
-bcI
-sdp
-bUX
-bgw
-uwK
-bhm
-bcI
-bbL
-bbN
-bbN
-bbN
-bbN
-bbO
-bcl
-bAa
-bkM
-bja
-bKB
-bcl
-bfG
-bge
-bge
-bge
-bge
-bge
-bge
-cwS
-cxl
-biV
-bdI
-cNx
-bXX
-bqD
-cBr
-bcu
-csS
-biH
-bnQ
-btB
-bNV
-bta
-bzd
-ceh
-bzd
-bHM
-aaa
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(164,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaU
-ahP
-ahP
-ahP
-ahP
-ahP
-aaU
-aaU
-aiz
-ahN
-aiC
-alc
-avu
-aDD
-aqx
-awv
-bvr
-bDn
-bDr
-bDx
-bDC
-bDF
-bDE
-bDK
-avm
-aMT
-aLr
-aRt
-aTe
-amY
-aBq
-aCQ
-aFe
-aCJ
-bFn
-bFn
-aJd
-aJi
-aKU
-cCs
-aLD
-aLR
-aJd
-aZD
-bwE
-bIX
-csB
-bwj
-bmW
-bEQ
-bxb
-aNW
-cCF
-bmW
-bzn
-bwW
-ciq
-bwW
-ciV
-bwW
-aaU
-aaa
-aaa
-bsz
-anr
-bcI
-aXp
-bVb
-cfx
-bhs
-bmm
-bcI
-aaU
-aaa
-aaa
-aaa
-bbV
-bbV
-bbV
-bhk
-bwi
-blN
-bKX
-ciI
-bfG
-bbV
-bgH
-bhp
-bjd
-bZi
-boG
-cxe
-cxm
-bgf
-cIC
-bjm
-bXX
-bqD
-cBC
-bcv
-bdL
-bkf
-bWY
-btC
-bPm
-bta
-btV
-cfG
-btV
-bta
-aaa
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(165,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aiz
-amw
-aiC
-ald
-avZ
-aGY
-aqQ
-ayc
-bvA
-bZN
-bDs
-aaB
-aEg
-bDG
-bDI
-bDK
-avm
-aMW
-aLr
-aRK
-amY
-amY
-aBs
-ane
-anp
-aCJ
-bFn
-bFn
-aJd
-bfH
-bdq
-bet
-bmu
-aUs
-buQ
-bvk
-bwF
-bVi
-cvJ
-bwn
-bmW
-bws
-aNW
-bxd
-bBK
-bAS
-bCq
-bwW
-ciq
-bwW
-ciV
-bwW
-aaU
-aaa
-aaa
-bsz
-anr
-bcI
-bcI
-cwy
-bcI
-jMO
-bcI
-bcI
-aaU
-aaa
-aaa
-aaa
-bbV
-bfN
-bhk
-bhk
-bwt
-bja
-bLn
-bbV
-bfG
-bbV
-bgI
-bDl
-cuP
-bjM
-ccW
-cgs
-cxn
-bgf
-bBU
-bnN
-crc
-buw
-aRY
-bcD
-bcF
-bkz
-bnQ
-btD
-bPm
-bxH
-bzc
-bBg
-coW
-bxH
-bxH
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(166,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aiz
-amD
-aiC
-afV
-amK
-aHc
-bEH
-azV
-bvC
-cbQ
-bDs
-bDz
-aNe
-bDH
-bDA
-bDA
-avm
-aNs
-aLr
-aRN
-aSe
-aAC
-aAD
-anp
-ane
-aCJ
-bGe
-bFn
-aJd
-aJl
-aKV
-bfz
-bmx
-aLp
-aML
-aZe
-bhF
-bXc
-bhG
-bhH
-bhL
-bio
-biD
-cAq
-bkE
-bmW
-bBq
-bwW
-ciq
-aMD
-ciV
-bwW
-aaU
-aaa
-aaa
-bsz
-anr
-aaU
-aaa
-cwz
-aaa
-jyu
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-bbV
-bgg
-bgK
-bhk
-bwG
-bja
-bLv
-bbV
-bfG
-bbV
-bjf
-bkh
-blu
-ciI
-ccZ
-cgs
-cxo
-bgf
-bgf
-bez
-cxB
-bhf
-aRY
-aRY
-aRY
-aRY
-aRY
-btz
-bPn
-btE
-bzk
-crp
-bBf
-bDf
-bHM
-aaa
-aaa
-aaU
-cnM
-aaU
-aaa
-aaU
-cnM
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(167,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-adx
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-asd
-ahN
-aiC
-alH
-amK
-aDD
-aqp
-aAg
-bCJ
-cjn
-bDt
-bDA
-bDA
-bDA
-bDA
-aHC
-aKW
-aNt
-aLr
-aRN
-amG
-aAD
-aBs
-awP
-anp
-aCJ
-bFn
-bFn
-aJd
-bDe
-aKX
-bet
-bmX
-aLS
-aML
-baY
-bwO
-bEi
-cwt
-czQ
-czX
-cAd
-cAn
-cAr
-bkL
-bmW
-bBr
-bwW
-ciq
-bwW
-ciV
-bwW
-aMD
-bwW
-aaa
-bsT
-bHe
-bRo
-bRp
-aaa
-cwD
-jyu
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-ciI
-bgv
-bhk
-bhk
-bxe
-bja
-bLA
-bbV
-bfG
-ciJ
-bUk
-bUH
-bVg
-bVn
-cfd
-cgs
-cxp
-ckq
-bgf
-beB
-cxC
-bgq
-cjA
-biy
-bjN
-bkO
-biZ
-bXY
-bPm
-bxH
-bFF
-csU
-bBg
-bDg
-bHM
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(168,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cjj
-cjj
-cjj
-cjj
-cjj
-ahN
-aiC
-aiC
-amL
-aQZ
-aqx
-bvw
-bvw
-bvw
-ant
-aoN
-aJH
-anS
-amc
-aHX
-aLd
-aNE
-aPJ
-aRN
-amG
-ane
-anp
-csy
-aBs
-aCJ
-aCJ
-amY
-bvu
-aJd
-aKQ
-bfB
-brt
-aJd
-bvu
-bAO
-bxc
-bFd
-czN
-czR
-buh
-bwv
-bxh
-byP
-bkN
-bmN
-bng
-bnM
-boh
-bpI
-bqg
-bqu
-bra
-bwW
-bwW
-aaU
-bdR
-cJr
-bTJ
-aaa
-aaa
-cPz
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-bbV
-bbV
-bbV
-bhk
-bwt
-bBi
-bLO
-bbV
-bTV
-bgf
-bTk
-bUR
-cfO
-cja
-cja
-boj
-cxq
-cxv
-bgf
-brQ
-cxC
-bgq
-bhX
-biz
-bjP
-cJi
-biZ
-btz
-bPm
-clW
-bPM
-bzd
-bBg
-bDh
-bHM
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(169,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aao
-aaO
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-aaO
-ado
-aaa
-cjj
-cjk
-anb
-ajo
-ajV
-anG
-aro
-avb
-awb
-awI
-amc
-agU
-air
-aZK
-anN
-awD
-aoO
-azT
-bso
-aIb
-aLe
-aNP
-aPL
-aRP
-aKq
-aLM
-aMu
-aNy
-aSd
-aTq
-aVY
-aJj
-aJd
-btm
-bdo
-bet
-bse
-aMd
-aJd
-bdA
-bxg
-bvs
-aMA
-czS
-buW
-bwx
-aMA
-aMA
-aMA
-aWE
-bzn
-bwW
-ciq
-bwW
-ciV
-bwW
-brr
-bCr
-cwv
-bAQ
-bAQ
-cJs
-bUV
-caf
-bam
-cPA
-bam
-bYl
-bam
-bam
-bam
-bam
-bbX
-bbX
-bcn
-cnv
-bxL
-cpW
-bLP
-buH
-bBz
-bPY
-bUd
-cdx
-cga
-cgq
-cgq
-bzw
-cxr
-cxw
-cxx
-cxz
-cxD
-cxF
-bhX
-biJ
-bjQ
-ccF
-biZ
-btz
-bPm
-bxH
-bSf
-bzd
-bQD
-bxH
-bxH
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(170,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aWj
-aaU
-aaa
-aaa
-aaa
-aao
-aaP
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-aaP
-ado
-aaa
-cjj
-agG
-aiu
-ajv
-akb
-anZ
-arG
-avf
-awf
-awU
-amc
-awV
-aoO
-aqq
-aqq
-avh
-azX
-aCV
-cra
-aIp
-aLh
-aOf
-aPQ
-aRS
-amY
-aAF
-aMv
-aDI
-aBs
-aAD
-aBs
-aGB
-bsS
-bvT
-bdp
-cAJ
-cAR
-buZ
-aJd
-bhe
-bxp
-bvx
-aMA
-czT
-bva
-bwy
-bxi
-cCE
-cAw
-aWF
-bBD
-bmS
-ciM
-bmS
-ciX
-bmY
-brP
-brX
-bsh
-bsu
-bsx
-cJt
-sVC
-cdp
-sVC
-cPB
-sVC
-bZp
-sVC
-sVC
-sVC
-frb
-bvM
-bvW
-bvX
-bwd
-bxU
-bBT
-bLQ
-bLT
-bQh
-bLT
-bLT
-cdF
-bVl
-bZd
-cfX
-ciP
-cjB
-cgt
-bcl
-bfc
-bgs
-cxG
-bif
-cnA
-csg
-btW
-biZ
-bUW
-bRr
-bxH
-bzj
-bzW
-bBx
-bxH
-aaU
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(171,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-ahv
-aWj
-aaU
-aaa
-aaa
-aaa
-aao
-aaP
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-aaP
-ado
-aaU
-cjj
-amO
-afo
-cjl
-cjj
-bGq
-bEf
-avm
-awb
-awI
-amN
-anM
-aoO
-aoO
-aoO
-aoO
-aoO
-aFI
-amc
-aIt
-aLj
-aOg
-and
-aoE
-amY
-aAG
-ane
-aEi
-aAD
-aBs
-aAD
-aMV
-aNq
-aOi
-bdp
-bfK
-bsW
-cCB
-aJd
-bhi
-byM
-blP
-aMA
-czU
-czY
-cAe
-bFz
-cAs
-cAx
-bhU
-biN
-biY
-bne
-cAz
-bqf
-bqH
-brY
-bsi
-bsv
-bsy
-bsy
-bsD
-bsI
-bRv
-bsD
-bww
-bsD
-cPE
-cPF
-cPF
-cPF
-cPG
-bBL
-bBL
-bCm
-bwg
-bzC
-boC
-bLR
-bTx
-bUb
-bUh
-bUm
-bUZ
-bVm
-cbM
-cfY
-cJz
-cjC
-bhr
-ckv
-bdV
-bgt
-cxC
-bhX
-biJ
-bjQ
-ctu
-biZ
-btz
-bPm
-bxH
-bxH
-bxH
-bxH
-bxH
-aaU
-aaa
-aaa
-bNK
-bYQ
-bNU
-aaa
-bNK
-bYQ
-bNU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(172,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aav
-abM
-acj
-aaU
-aaa
-aaa
-aaa
-aao
-aaP
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-aaP
-ado
-aaa
-cjj
-cjj
-cjp
-cjp
-cjp
-aoK
-aoK
-aoK
-awb
-awI
-amN
-aii
-aoO
-aqr
-aSR
-awE
-aoO
-brx
-amc
-aIw
-aLj
-aOj
-amY
-aoZ
-anp
-ane
-anp
-aDI
-aBs
-aAD
-aBs
-aHe
-aJd
-bmI
-aZi
-bfL
-btM
-bvf
-aJd
-bhw
-byO
-bBb
-aMA
-btc
-czZ
-cAf
-bVH
-bwA
-bAj
-aMB
-bzn
-bwW
-cgY
-bwW
-cil
-bmW
-bCt
-aMI
-aMI
-aaa
-aaa
-aaa
-bfW
-bJv
-aaa
-cwI
-aaa
-cbG
-aaU
-aaa
-aaa
-aaa
-aaa
-bbV
-bhu
-bhr
-bbT
-bdZ
-brR
-bbT
-bUf
-bbT
-bbT
-bbT
-bUP
-bbT
-bbT
-cJV
-bbT
-bbT
-bbT
-brQ
-bgt
-cxH
-cxN
-cxP
-cxQ
-cxU
-cxW
-cxX
-cPN
-clX
-bZu
-cmM
-bYn
-bZt
-bHN
-bHN
-bHN
-bNL
-cnM
-aaU
-aaU
-aaU
-cnM
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(173,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aav
-abR
-acj
-aaU
-aaa
-aaa
-aaa
-aao
-aaP
-ado
-aaa
-aaa
-aaU
-adx
-aaU
-aaa
-aaa
-aao
-aaP
-ado
-aaa
-aaa
-aaU
-aoK
-asA
-atu
-aue
-auO
-arM
-awb
-axa
-amc
-anO
-arn
-aqt
-atX
-ayV
-aJJ
-brC
-bsq
-aIy
-aLo
-aOm
-amY
-aqd
-ane
-aBS
-aBV
-aEk
-aBV
-aBS
-aAD
-aHf
-aJd
-aJd
-bco
-aJd
-aJd
-aJd
-bvu
-bdA
-bxp
-bvs
-aMA
-aNc
-bvQ
-cAg
-bxr
-byY
-cvP
-aMB
-bzn
-bjz
-cgZ
-bzH
-bJS
-bmW
-bmW
-aMI
-aaU
-aaU
-aaU
-aaU
-bfW
-opd
-aaU
-cwJ
-aaU
-cbG
-aaU
-aaU
-aaU
-bbT
-bbT
-bbT
-bbT
-bbT
-bbT
-bkm
-brV
-cPH
-bfU
-bFD
-bgO
-cqt
-bUQ
-cvj
-cDg
-cKd
-ben
-bor
-bcV
-bfe
-bgt
-cxI
-ctv
-biM
-bjS
-bkS
-cpJ
-btF
-cxY
-bZt
-bZv
-bYn
-bYn
-bZy
-bHN
-bHz
-ckn
-cnL
-cnN
-bOk
-bOk
-bOk
-cnP
-cnR
-bOk
-bOk
-bOq
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(174,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaD
-abM
-acm
-aaU
-aaU
-aaU
-aaU
-aao
-aaP
-ado
-aaa
-aaa
-aaU
-adx
-aaU
-aaa
-aaa
-aao
-aaP
-ado
-aaU
-aoK
-aoK
-aoK
-asE
-atw
-atw
-atw
-arM
-awg
-axb
-amc
-amc
-amc
-amc
-amc
-azF
-aJY
-brD
-bsr
-aIB
-aLj
-aOy
-amY
-apw
-anp
-aBS
-ayy
-aEj
-ayy
-aBS
-aBs
-aHi
-aJk
-aJd
-bdm
-aLA
-aJd
-aMk
-aMk
-bdA
-bxp
-bvI
-aMB
-aMA
-aMA
-cAh
-aMA
-bzf
-bAp
-aMB
-bzn
-bxG
-bxF
-bxG
-bXs
-cii
-cjg
-cji
-aaa
-aaa
-aaa
-aaa
-bgi
-fui
-aaa
-cwK
-aaa
-cbG
-aaa
-aaa
-aaa
-cmH
-crh
-bVx
-bVw
-bVy
-bVw
-cwc
-buz
-bAu
-bCx
-bPZ
-bUl
-bVc
-cte
-cvk
-cDm
-cvk
-ctp
-ctq
-bkX
-ctr
-bZw
-cxJ
-bez
-biZ
-biZ
-biZ
-biZ
-btz
-cxY
-bZt
-bZt
-bZx
-bZt
-bZt
-bHN
-bHP
-bHN
-bNL
-aaU
-aaU
-aaU
-aaU
-cnQ
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(175,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaY
-abV
-acq
-acJ
-adk
-adG
-aaU
-aaU
-aaT
-aaU
-aaU
-aaU
-aaU
-aaT
-aaU
-aaU
-aaU
-aaU
-aaT
-aaU
-aaU
-aoS
-aqe
-aqe
-asQ
-atx
-auf
-auU
-avp
-awi
-axd
-ayv
-azD
-ayv
-aBD
-aCx
-aDw
-aEl
-aFg
-aGk
-aIW
-aLq
-aOG
-amY
-apa
-ane
-aBS
-ayy
-bvE
-ayy
-aBS
-aAD
-aHJ
-amY
-aJd
-bds
-bfQ
-bug
-buL
-buL
-bhC
-byS
-aMn
-aMD
-bEj
-bvU
-cAi
-aMA
-bzg
-aMA
-aMB
-bzn
-bwW
-bxF
-aMD
-bEL
-bAK
-bjz
-aMI
-aZG
-aaa
-aaa
-aaa
-bgi
-fui
-aaa
-cwI
-aaa
-cbG
-aaa
-aaa
-aTx
-bbT
-bbT
-bbT
-bbU
-bcV
-crd
-bej
-bej
-bfs
-bfY
-bej
-bla
-bVh
-ctf
-bkc
-bcV
-bcV
-bnh
-bnh
-bcV
-bcA
-bgZ
-cxK
-ctw
-bjl
-bGC
-bpQ
-bpQ
-cOa
-cPO
-cya
-cya
-cya
-cya
-cye
-bHN
-bIy
-bHN
-bJQ
-bJQ
-aaa
-aaa
-bNK
-bYR
-bNU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(176,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-cpB
-aaa
-aaa
-aaa
-aaU
-abr
-abM
-abr
-abM
-adl
-abM
-aZG
-aaU
-abc
-aeP
-aeP
-aeP
-aeP
-ajc
-aeP
-aeP
-aeP
-aeP
-avr
-aaU
-aTx
-aoK
-aoK
-arK
-asZ
-aty
-auj
-auX
-avq
-awj
-axn
-ayx
-azH
-aAr
-aAr
-aCI
-aDy
-aEn
-aFs
-aAr
-aIY
-aLr
-amG
-amG
-apL
-anp
-aBS
-aBu
-aEj
-aBu
-aBS
-aBs
-aGB
-aJf
-aJd
-bdw
-bfT
-aJd
-aMk
-aMk
-bdA
-bzQ
-ccl
-czO
-czV
-czV
-cAj
-bxs
-bzl
-bkg
-bPq
-bzn
-bwW
-byW
-bCB
-bIC
-bVj
-cip
-cpE
-aaa
-aaa
-aaa
-aaa
-bgi
-fui
-aaa
-cwK
-aaa
-cbG
-aaa
-aaa
-aaa
-cpp
-cgj
-cgk
-cgj
-bcj
-cgj
-ben
-bej
-cqF
-bfZ
-bej
-bAB
-bVk
-ctg
-cjd
-ctm
-blQ
-bbw
-bci
-bci
-bfP
-cqj
-cxL
-bir
-biZ
-cjt
-bXE
-bLZ
-bLZ
-bYh
-bYn
-bYn
-bYE
-cni
-cyf
-cgy
-bIz
-cmc
-ceJ
-bJQ
-aaa
-aaa
-bNK
-bYR
-bNU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(177,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abD
-abW
-acr
-acW
-adw
-adH
-aaU
-aaU
-abe
-aaU
-aaU
-aaU
-aaU
-abe
-aaU
-aaU
-aaU
-aaU
-abe
-aaU
-aaU
-aoT
-aqy
-arL
-asZ
-atD
-auk
-atD
-avs
-awl
-axq
-ayB
-avb
-aAs
-aBJ
-awp
-awx
-aEr
-aFx
-aGl
-aIZ
-aLr
-amG
-ane
-anp
-ane
-azt
-aBv
-aEj
-aFh
-aKN
-aAD
-aGN
-aJg
-amY
-aOt
-bfV
-amY
-aMs
-aMs
-bhD
-aOA
-bvN
-aMs
-bmo
-cAa
-cAk
-bxy
-bzi
-cAy
-bTU
-bzn
-aMD
-bzh
-bwW
-cih
-aMI
-aMI
-aMI
-bLw
-bMM
-bMM
-bMM
-ifC
-bJv
-aaU
-cwJ
-aaU
-cbG
-aaU
-aaU
-aaU
-bbT
-bbT
-bbT
-bbT
-bbT
-bdT
-beX
-beU
-beU
-beU
-beU
-bLu
-bVr
-cth
-cje
-csv
-bcV
-bby
-bck
-bdM
-bdM
-bhb
-bhM
-bis
-bjn
-bjn
-bXF
-bjn
-bjn
-bjn
-bjn
-bjn
-bjn
-bjn
-cyg
-bGF
-bIA
-bIB
-bNO
-bHN
-aaa
-aaa
-bNK
-bYR
-bNU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abp
-aaa
-aTd
-aaa
-abp
-aaa
-aaa
-aaa
-cpB
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(178,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abE
-abM
-acx
-aaU
-aaU
-aaU
-aaU
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaU
-aoK
-aoK
-aoK
-atd
-atE
-aum
-ava
-avs
-awp
-axD
-ayE
-awp
-awp
-awp
-awp
-aDA
-aEt
-aFA
-aGm
-aIZ
-aLr
-amG
-anp
-aBS
-aBS
-aBS
-ayy
-aEj
-ayy
-aBS
-aBS
-aLG
-aJh
-aLN
-aOu
-cCt
-beA
-aMt
-aNw
-bhE
-btg
-bvO
-bwb
-aMs
-cAb
-cAl
-bhA
-bgP
-bzO
-caD
-bzn
-bjz
-ciG
-bAK
-ciV
-aMI
-aaa
-bJj
-bLS
-kxw
-kxw
-kxw
-bPA
-wPS
-aaa
-cwI
-aaa
-cbI
-mIT
-cJr
-aaa
-aaU
-aaU
-aaU
-aaU
-bbT
-bbT
-bbT
-bfE
-bih
-bkb
-bkj
-bkY
-bVs
-cti
-cje
-cto
-bcV
-bcV
-bcm
-bdV
-bdM
-cqk
-bhP
-biv
-ciR
-bjT
-bXG
-clV
-bjT
-cjf
-btH
-btX
-ckE
-bjn
-cyf
-bHN
-cnS
-bKZ
-bNP
-bHN
-aaa
-aaa
-bNK
-bYR
-bNU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(179,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aav
-abR
-acj
-aaU
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaU
-aaa
-aoK
-ate
-atG
-auq
-atG
-avx
-awp
-axE
-ayH
-azM
-aAt
-awp
-aFl
-aDC
-axU
-aFB
-awx
-aIZ
-aLr
-amG
-ane
-azt
-azu
-aAH
-aBv
-aEk
-ayz
-azu
-azu
-aKN
-aJm
-amY
-aQy
-bgo
-amY
-amY
-amY
-bfX
-btr
-bvP
-bwc
-bmo
-bwk
-bwH
-bxG
-bzm
-bAx
-bBh
-bBG
-bAK
-ciO
-bAK
-ciV
-bAS
-aaa
-bJv
-bMp
-cwA
-cwA
-cwA
-bgM
-cwA
-cwA
-cwL
-cww
-cbL
-cww
-bdR
-mIT
-mIT
-mIT
-mIT
-cJr
-aaa
-aaU
-bbT
-bgk
-bbT
-bkd
-bbT
-cea
-bVG
-cgn
-cje
-blb
-blR
-bni
-bcA
-bdM
-bdM
-cNA
-bhb
-ciE
-cmT
-cnB
-csh
-cHV
-cPM
-bjn
-btI
-buc
-cme
-bjn
-cyf
-bHN
-bHN
-bHN
-bHN
-bHN
-aaa
-aaa
-bNK
-bOd
-bNU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(180,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aav
-abM
-acz
-aaU
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaa
-aoK
-atg
-atG
-aur
-atG
-avz
-awx
-axU
-ayL
-azO
-aAu
-awp
-aCP
-aDG
-cPr
-aFD
-awp
-aJa
-aLr
-amG
-anp
-aBS
-ayy
-ayy
-aBS
-bAZ
-aFn
-aFY
-aFY
-aFn
-aJo
-aLP
-aMJ
-bgp
-buT
-cCC
-buN
-bDj
-bur
-bvS
-bwe
-aMs
-bmW
-bwI
-aMI
-ceG
-bAK
-aMI
-aMI
-aMI
-cjc
-aMI
-cnt
-aMI
-aaa
-bJv
-bMp
-cww
-bMY
-bMY
-bPB
-xoj
-cwx
-cPC
-cww
-cbN
-cww
-aaU
-aaa
-aaa
-aaa
-aaa
-anr
-aaa
-aaU
-bbT
-bEk
-bfD
-bVd
-bkX
-bUT
-bXw
-chd
-cki
-ctt
-blS
-bnn
-bcA
-bdM
-bdM
-bdM
-bhP
-biv
-cDz
-cDA
-cDD
-bnX
-bjn
-bjn
-bjn
-bjn
-bjn
-bjn
-cyh
-boI
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(181,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aRv
-aaa
-aaU
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaa
-aoK
-ath
-atG
-auu
-atG
-avB
-awx
-axU
-ayP
-azU
-aAE
-awp
-aCR
-aDH
-aEz
-aFH
-aGw
-aJb
-aLt
-amY
-anY
-azt
-azu
-azu
-aBv
-aEk
-ayz
-azu
-azu
-aKN
-aAD
-aMe
-bdB
-bgr
-buU
-byo
-apV
-bgj
-buu
-bvV
-aMs
-aMs
-aaU
-bCU
-aMI
-ceG
-bAK
-bAS
-aaa
-aaU
-aaa
-aRv
-aaa
-aaU
-aaa
-bJv
-bMp
-cww
-bMZ
-bMZ
-bPC
-uAY
-cwF
-cwM
-cww
-cge
-cww
-aaU
-cak
-cam
-cak
-aaa
-anr
-aaa
-aaU
-bff
-bgQ
-bff
-bgQ
-bff
-bfC
-bYM
-bjo
-bkk
-ctx
-blV
-bny
-bdK
-bma
-bfR
-bhd
-bhQ
-bpl
-bjn
-bjn
-bjn
-bjn
-bjn
-bRt
-bxO
-bzs
-bzZ
-bBy
-cyi
-boI
-boK
-boK
-boK
-boK
-boK
-boK
-boI
-aaU
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(182,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aaa
-arM
-ati
-arM
-atG
-atG
-avD
-awx
-axY
-ayZ
-azW
-aAT
-aBO
-aCS
-aDJ
-aEB
-aFJ
-awp
-aJs
-aLz
-amY
-anp
-aBS
-aBS
-aBS
-ayy
-aEI
-ayy
-aNa
-aSC
-aSC
-aTB
-aUx
-bdX
-bhV
-buY
-bMm
-amY
-aMs
-buI
-aMs
-aMs
-aaU
-aaU
-bCV
-aMI
-ceH
-aMI
-aMI
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-bJv
-bMp
-cww
-cpM
-bNa
-bPJ
-bRC
-cwG
-cPD
-bVE
-cbT
-cww
-bhI
-bhI
-can
-bhI
-aaa
-anr
-aaa
-aaU
-bfC
-bfb
-cmW
-bic
-cbk
-bfC
-bYN
-bgT
-bgT
-ctA
-bgV
-bgV
-bgT
-bgV
-boM
-boS
-ccv
-boS
-boI
-bqZ
-cxT
-bMH
-btN
-buy
-bRw
-bRz
-cmJ
-bRG
-cyj
-cmb
-bHQ
-bHQ
-bHQ
-bHQ
-bHQ
-bLa
-boK
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(183,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aao
-acv
-ado
-aaa
-aaa
-aao
-abj
-ado
-aaa
-aaa
-aao
-acv
-ado
-aaa
-aaa
-aaa
-arM
-atl
-arM
-arM
-arM
-avs
-awp
-ayg
-aza
-azY
-aBc
-awp
-aCT
-aDK
-aEG
-aFK
-awp
-aJP
-aLC
-amY
-aoa
-ayA
-azv
-aBp
-aCy
-aEM
-aFq
-aNb
-aGA
-aBs
-aAD
-aMF
-bdn
-bdn
-bdn
-bdn
-aCJ
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aVT
-aaa
-bAL
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-bJv
-bMp
-cww
-bNb
-bNb
-bPL
-cwB
-cwB
-cwB
-bVX
-eKM
-cww
-bhI
-bhI
-cao
-bhI
-bhI
-anr
-aaa
-aaU
-bfC
-bgS
-bGL
-bip
-ctz
-bfC
-cbO
-cgE
-bkl
-ctB
-blW
-cxs
-bos
-bgV
-boN
-boT
-bpd
-bpp
-bqy
-cxR
-cxV
-cxV
-cxV
-cjb
-cxV
-cyb
-cyc
-cyd
-bFg
-bHR
-bHR
-bHR
-bJU
-bHR
-bHR
-bLb
-boK
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(184,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaT
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-arM
-atn
-arM
-aaU
-aaU
-aaU
-awp
-awp
-awp
-awp
-awp
-awp
-aCY
-aDQ
-aEH
-aFL
-awp
-aKb
-aKb
-amY
-amY
-amY
-azw
-amY
-aHK
-aMR
-aMU
-aQV
-amY
-aCJ
-aCJ
-aCJ
-aCJ
-aCJ
-aCJ
-aCJ
-aCJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-bJv
-bMp
-cww
-bjE
-bNq
-bQK
-qgO
-chO
-cpN
-bWG
-cRg
-jiZ
-bhI
-cLY
-cap
-cMt
-cau
-anr
-aaa
-aaU
-bfC
-bgU
-cng
-bCH
-bRu
-bUK
-ccu
-che
-ckr
-ctC
-bVo
-cxt
-bVZ
-bgV
-boI
-boU
-cty
-bpf
-bpf
-cxS
-bpY
-btd
-btd
-bDy
-bxR
-cxZ
-boI
-bBA
-bFh
-boI
-boK
-boK
-boK
-bKo
-bKD
-boK
-boI
-aaU
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(185,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-adx
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaU
-apC
-aqC
-axr
-aAM
-aqC
-apC
-aaU
-aaa
-aaa
-aaU
-amY
-azZ
-amY
-aKI
-aKM
-aBS
-aBS
-aCJ
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-bJv
-bMp
-cww
-bkH
-blz
-bNd
-bNE
-cww
-cpO
-bWG
-cJo
-cMH
-bhI
-cLZ
-caq
-cLZ
-bhI
-anr
-aaa
-aaU
-bfC
-bUS
-bAv
-bPW
-cBz
-bUM
-ccX
-chf
-ckO
-ckO
-ckO
-cxu
-chf
-cxy
-cxA
-cxE
-cxM
-cxO
-cND
-bpf
-brS
-bte
-cdT
-ceZ
-bte
-bzu
-boI
-cJj
-bzt
-boK
-aaU
-aaa
-aaa
-aaa
-cgW
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(186,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abe
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaa
-aaa
-aaU
-apC
-aug
-axs
-aAN
-bsc
-apC
-aaU
-aaa
-aaa
-aaU
-amY
-aAw
-amY
-aCJ
-amY
-aCJ
-aCJ
-aCJ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-bJv
-bMp
-cww
-cww
-cww
-cww
-cww
-cww
-cww
-cIs
-tyI
-cMJ
-cLX
-cMa
-cMj
-cMu
-cMG
-anr
-aaU
-aaU
-bff
-bfC
-bff
-bfC
-bff
-bfC
-bij
-bhK
-bkn
-cnw
-bkn
-bhK
-bov
-bgV
-boI
-boW
-bpf
-bpu
-bpf
-cty
-brS
-boI
-btS
-ccT
-boI
-bzu
-boI
-bBI
-bFi
-boK
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(187,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-adx
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-apC
-aun
-axs
-aAN
-bsd
-apC
-aaU
-aaU
-aaU
-aaU
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-rTW
-tpQ
-wPS
-bMt
-pgu
-pgu
-pgu
-gGG
-vsO
-chS
-cpQ
-cfM
-cbU
-jXo
-cLm
-cMb
-cas
-cMb
-cMH
-anr
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-bgT
-bhZ
-bhK
-bkn
-bkn
-bkn
-bhK
-bow
-bgT
-boP
-boY
-bpk
-bpf
-bpY
-brd
-brT
-boI
-btS
-ccU
-boI
-bzv
-boI
-boI
-boI
-boI
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(188,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-ady
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-ahu
-ahu
-ahu
-apC
-apC
-auo
-axy
-aBd
-aJI
-apC
-apC
-ahu
-ahu
-ahu
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-aXx
-aXx
-aXx
-aXx
-bfW
-tuF
-lRy
-fti
-cfP
-mEa
-cLV
-chn
-eCy
-chL
-cMv
-cMI
-anr
-aaa
-aaa
-aaU
-aaa
-aaU
-aaU
-aaU
-bgV
-bhZ
-bhK
-bkp
-bhK
-blZ
-bhK
-boB
-bgV
-boI
-boI
-ckK
-ckL
-ckM
-boI
-boI
-boI
-cre
-cow
-boI
-cRa
-boI
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(189,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-ahu
-amU
-aov
-apE
-aqB
-aup
-axs
-aBn
-bbR
-aqB
-apE
-aov
-amU
-ahu
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bca
-bca
-cat
-cKX
-bQN
-nLV
-cLd
-fti
-cfT
-cgg
-cgx
-chp
-chx
-chM
-gDY
-jiZ
-hlV
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-bgT
-bil
-bjq
-bkq
-bld
-biw
-bld
-boB
-bgV
-aaU
-boI
-boK
-boK
-boK
-boI
-aaU
-cNW
-cNX
-cOf
-cNX
-cOm
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(190,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahu
-ahu
-amV
-amV
-apF
-aqC
-adI
-axH
-aBB
-bsg
-aqC
-bsB
-amV
-amV
-ahu
-ahu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bRK
-bca
-bZI
-bZR
-bfW
-qHL
-eTZ
-vcb
-uVD
-mqB
-dpO
-tZC
-qWY
-rUl
-cMw
-cfs
-cMP
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-bgT
-bgT
-bjr
-bkr
-ble
-xxP
-bnC
-boD
-bgT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cNX
-cOf
-cNX
-cOm
-aaU
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-blj
-aaU
-aaU
-aaU
-aaU
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(191,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahu
-all
-amV
-amV
-apI
-bsw
-auw
-axJ
-aBE
-auy
-bsw
-bsm
-amV
-amV
-bsJ
-ahu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bca
-bca
-cKQ
-cKY
-bQO
-ony
-xcO
-hKC
-cVO
-sRD
-cMe
-cai
-rdF
-cMk
-ceU
-cMJ
-cxc
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-bgT
-bks
-blg
-bgT
-cgm
-boE
-bgT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(192,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahu
-alm
-amV
-amV
-apI
-bsA
-auy
-azs
-aBE
-auy
-bsA
-bsm
-amV
-amV
-bsK
-ahu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaU
-aXx
-aXx
-aXx
-aXx
-aXx
-bfW
-cww
-bUa
-cMr
-sRD
-cMo
-cgz
-cai
-fkx
-cMl
-cMx
-cMJ
-cxc
-aXx
-aXx
-aXx
-aXx
-aXx
-aaa
-aaU
-aaa
-aaa
-bgT
-bkt
-blh
-bgT
-blh
-boF
-bgT
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(193,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahu
-aln
-amV
-amV
-apJ
-aqC
-auz
-azs
-aBE
-bsj
-aqC
-bsC
-amV
-amV
-aln
-ahu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bSb
-bSb
-cKR
-cKX
-bQN
-cLb
-cLe
-cMo
-hMZ
-nAF
-lcD
-cai
-fkx
-mNN
-cLo
-nBM
-cfD
-cKX
-cLt
-bkZ
-bkZ
-aXx
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-cqX
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(194,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahu
-aln
-amV
-amV
-apK
-aqB
-aqB
-azI
-brn
-aqB
-aqB
-bsE
-amV
-amV
-aln
-ahu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bSi
-bWp
-bZL
-bZR
-bfW
-cwA
-cLf
-cMo
-iAW
-fIw
-wWH
-ntC
-nEX
-hDz
-cLp
-oMB
-mxW
-bZR
-cay
-caK
-caM
-aXx
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(195,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahu
-alm
-amV
-amV
-amV
-aqI
-aqB
-aGO
-auy
-aqB
-aqI
-amV
-amV
-amV
-bsK
-ahu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bSb
-bSb
-cKS
-cKY
-bQO
-cLc
-eIh
-car
-tXV
-tZj
-jml
-cVq
-cMc
-cMm
-cMy
-cML
-cLa
-cKY
-cLu
-bkZ
-bkZ
-aXx
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(196,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahu
-alJ
-amV
-aow
-amV
-amV
-auA
-auy
-auy
-bsk
-amV
-amV
-amV
-amV
-alJ
-ahu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaU
-aXx
-aXx
-aXx
-aXx
-aXx
-bfW
-cww
-bhJ
-cMo
-iAW
-cJu
-iAW
-cJH
-cMd
-cMn
-cMz
-cMJ
-aaU
-aXx
-aXx
-aXx
-aXx
-aXx
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(197,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahu
-ahu
-amV
-amV
-amV
-aqI
-ave
-auy
-bXH
-bsm
-aqI
-amV
-amV
-amV
-ahu
-ahu
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bTH
-bTH
-cKT
-cKX
-bQN
-cLb
-cLh
-cMo
-iAW
-cJu
-hlo
-cJH
-cMe
-cMo
-cLq
-nBM
-cKZ
-cKX
-cLv
-blL
-blL
-aXx
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(198,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-ahu
-amW
-aoI
-amV
-amV
-ave
-aIR
-auy
-bsm
-amV
-amV
-aoI
-bsH
-ahu
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bTI
-bXe
-bZO
-bZR
-fuE
-bWK
-cLi
-xKr
-nvn
-cJu
-iAW
-cJH
-cMe
-cMo
-cMA
-cMN
-aaU
-bZR
-caF
-caL
-caN
-aXx
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(199,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-ahu
-ahu
-ahu
-apX
-aqI
-avk
-aJq
-brp
-bsn
-aqI
-bsF
-ahu
-ahu
-ahu
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bTH
-bTH
-cKU
-cKY
-cLa
-cLc
-fgS
-car
-iAW
-jon
-xjk
-cai
-cMg
-cMq
-cMB
-cML
-cMQ
-cKY
-cLw
-blL
-blL
-aXx
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(200,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-ahu
-ahu
-apC
-apC
-ahu
-ahu
-apC
-apC
-ahu
-ahu
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaU
-aXx
-aXx
-aXx
-aXx
-aXx
-rTW
-wbu
-cLg
-kOG
-dVR
-xCy
-sHB
-xkC
-cMe
-cMr
-cMC
-cML
-cMR
-aXx
-aXx
-aXx
-aXx
-aXx
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-blj
-abp
-blj
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(201,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-amJ
-aaU
-aaU
-aaU
-aaU
-amJ
-aaU
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bTK
-bTK
-cKV
-cKX
-bQS
-cLb
-cLj
-cMo
-qvB
-cgh
-cgA
-chq
-cMh
-cMq
-cMD
-cMM
-cMS
-cMT
-cLx
-cpX
-blM
-aXx
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaU
-aaU
-aaa
-aaa
-aaU
-cNX
-cOf
-cOh
-cOm
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(202,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bTL
-bXR
-bZP
-bZR
-opd
-cwA
-cal
-cLl
-cLs
-cLs
-cLs
-cLs
-cLs
-cMs
-cME
-cMN
-aaU
-bZR
-caJ
-bpq
-caS
-aXx
-aaa
-aaU
-aaa
-bal
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-cNy
-cNy
-cNz
-cNz
-cNy
-cNX
-cOf
-cOi
-cOm
-cOr
-cOl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(203,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaa
-aXx
-bTK
-bTK
-cKW
-cKY
-bQV
-cLc
-cLk
-ctk
-prx
-vxU
-cLW
-ccG
-cMi
-iQY
-cMF
-cMO
-cMS
-cMT
-cLy
-blM
-blM
-aXx
-aaa
-aaU
-aaU
-bal
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cNy
-cNz
-cNz
-cNy
-cNE
-cNM
-cNO
-cNy
-cNX
-cOf
-cOj
-cOn
-cOj
-cOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(204,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-opd
-aaU
-aXx
-aXx
-aXx
-aXx
-aXx
-opd
-cww
-cww
-cww
-cfV
-cww
-cww
-cww
-cww
-cww
-cww
-cww
-aaU
-aXx
-aXx
-aXx
-aXx
-aXx
-aaa
-bal
-aaa
-bal
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cNz
-cNB
-cNB
-cNB
-cNF
-cNN
-cNR
-cNY
-cOb
-cOg
-cOj
-cOj
-cOj
-cOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(205,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-bGh
-bHg
-bHg
-bHg
-tpQ
-bHg
-bHg
-wPS
-aaU
-aWj
-cww
-cJm
-cww
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-bal
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cNz
-cNB
-cNB
-cNB
-cNG
-cNN
-cNS
-cNy
-cNX
-cNX
-cOj
-cOj
-cOs
-cOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(206,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aWR
-aaa
-aaU
-aaa
-bal
-bal
-aaU
-bal
-bal
-bal
-aaU
-aWj
-cww
-cJn
-cww
-aaU
-bal
-bal
-bal
-bal
-aaU
-bal
-bal
-bal
-aaU
-aaU
-bal
-bal
-bal
-aaa
-bal
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cNz
-cNB
-cNB
-cNB
-cNG
-cNN
-cNT
-cNy
-cNX
-cNX
-cOj
-cOj
-cOt
-cOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(207,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aWR
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cbS
-abM
-ccH
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aWj
-aWj
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-bal
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cNz
-cNB
-cNB
-cNB
-cNG
-cNO
-cNO
-cNZ
-cNX
-cNX
-cOj
-cOj
-cOu
-cOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aWR
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(208,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abF
-abM
-acA
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cbS
-abR
-ccJ
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-bal
-bal
-bal
-aaU
-bal
-bal
-bal
-aaU
-bal
-bal
-bal
-aaU
-bal
-bal
-bal
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cNy
-cNz
-cNz
-cNy
-cNH
-cNP
-cNU
-cNy
-cOc
-cNX
-cOk
-cOo
-cOv
-cOp
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-cPl
-abM
-cPq
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(209,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abJ
-abR
-acA
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-abp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-cbW
-abM
-aaD
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaU
-abp
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cNy
-cNy
-cNz
-cNz
-cNy
-cNX
-cNX
-cOl
-cOp
-cOp
-cOl
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-cPm
-abR
-cPq
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(210,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abJ
-abR
-acB
-adc
-adc
-adL
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-bGK
-bGK
-bUe
-ccc
-abR
-aaY
-cdb
-bGK
-cdq
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaU
-aWj
-aWj
-aaU
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cPd
-cPd
-cPd
-cPn
-abM
-cPq
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(211,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-abJ
-abM
-abR
-abM
-abR
-abM
-aZG
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aTd
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aTd
-aaU
-aaU
-aaU
-aTx
-abM
-abR
-abM
-adl
-ccr
-ccO
-abM
-abR
-abM
-aZG
-aaU
-aaU
-aaU
-aTd
-aaU
-aaU
-aTd
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-cNQ
-cNI
-aWj
-aWj
-aWj
-aWj
-aaU
-aTd
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aTd
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aTx
-abM
-abR
-abM
-abR
-abM
-cPq
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(212,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-abp
-abJ
-abZ
-abZ
-abZ
-abZ
-abZ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-bGP
-bNo
-bNo
-ccf
-ccs
-ccP
-cdi
-bNo
-bNo
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cNI
-cNI
-cNI
-aWj
-aWj
-aWj
-aWj
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cPe
-cPh
-cPh
-cPh
-cPh
-cPh
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(213,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-abp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abM
-abM
-abM
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaU
-abp
-aaU
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaU
-abM
-cNI
-aWj
-abp
-abp
-aWj
-aaU
-abp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abp
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(214,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaU
-aaa
-aWj
-brs
-brs
-aWj
-aaa
-aaU
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(215,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-cfq
-cfq
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(216,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(217,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-cpB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cpB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cpB
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(218,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cpB
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(219,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(220,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(221,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-cpC
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-cpC
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(222,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(223,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(224,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(225,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(226,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(227,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(228,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(229,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aWj
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(230,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(231,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(232,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(233,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(234,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(235,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(236,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(237,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(238,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(239,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(240,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(241,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(242,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(243,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(244,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(245,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(246,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(247,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(248,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(249,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(250,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(251,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(252,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(253,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(254,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-"}
-(255,1,1) = {"
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
-ckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaabpaakaaraaraaraaraaraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaraaraaraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaavaavaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaavaaDaaYabrabDabEaavaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFabJabJabJabJaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabMabMabMabRabMacMaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUahvabMabRabMabVabMabWabMabRabMaRvaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabRabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabRacaaceaceacfaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjacjacjacmacqabracracxacjaczaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacBabRabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabRacGaWjaWjaWjaWjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaUabpaWjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUacJabMacWaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUadcabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaUaakabMacGaWjaaaaaaaaaaaaaaaaddadfadfadfadfadfadhaaaaaUaaaaaUaaaaaaadjadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadkadladwaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadcabRabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaZGaaaaWjaaaaaaaaaaaaaaaadCaadaadaadaadaadadCaaaaaUaaUaaUaaaadjadjadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadGabMadHaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadLabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaadCaadaadaadaadaadadCadjadjadjadjadjadMadPadFadXadXadXadFadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjadjadjadCaadaadaadaadaadadCadYadYadYadYadYadMaepaeqaeuaeyaezaeAadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaUaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjaeCaeRaeSaadaadaadaadaadafbafcaeRafcaeRaeRafeaeRafjafkadMafuaeAadFadjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTabcabeabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjafvafxadjaadaadaadaadaadadjafyadFafzafBafIafLafIafNafPadYafTaeAadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaadoadoadoadoadoadoaaUaePaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaUaaUaakaaUaWjaWjaWjaaUadjadFagaadjaadaadaadaadaadadjagbadFagkagpagtadMagFadFagKagKagKadFadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaXaaZabaaaaaaaaaaaaaaaaaaaaaaabaabbabgaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaahaanaasaasaasaasaasaanaayaaaabpaakaTdaWjabpaWjaaUadjagMafIagNaadaadaadaadaadagOadFadFagRagSagVadMadMadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaazaaAaaAaaAaaAaaAaaAaaAaazaaUaaUaakaaUaWjaWjaWjaaUadjadjadjahLaadaadaadaadaadadjahMadFafzagpadFahQadMadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaUaaUaaUaWjaaUaaUaaoaaoaaoaaoaaoaaUaaoaaoaaoaaoaaoaaUaaUaaUaePaaUaaoaaoaaoaaoaaoaaoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAaaCadBaaHablabkaaAbPoaaaaaUaaaaaUaaaaaUaaaaaUaaUaaaaaaahLaadaadaadaadaadadjahMadFahRagpadFahVadMaaUaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaapvaYpagdaYpaaxabuabKaaxaaaaaaaaaaaaaaaaaaaaaaaxabuabKaaxaYpagdaYpadqaaUaeeadxadxabeabjabjabjabjabjadxabjabjabjabjabjadxadxaaTajcabeabjabjabjabjabjabjaaTadxabeadxadyaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAabnaaFaicaaFaboaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaUaaUaaaahLaadaadaadaadaadadjaieaigafzagpaihaiIadMaaUaaUaacabvchHabzacbabzaaiaaaaaaaaaapvcdccdccdcapvcqVcqVaaxaaUaaaaaaaaaaaaaaaaaUaaxcqVcqVapvcdccdccdcadqaaUaePaaUaaUaaUadoadoadoadoadoaaUadoadoadoadoadoaaUaaUaaUaePaaUadoadoadoadoadoadoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabqaaJaaFaaQabwaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaUahLadMaiMaiMaiMadMadMadMadMaiWaiXadMadMadMactactacEacPacSacXaftacPadeaaaaaaaaacrPcrQcrRcrRcrScsaabNaaxaaxaaaaaaaaaaaaaaaaaxaaxacgcsbcrScrRcrRcrTadqaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabGabmaaFabAabPaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaajafDaajaajaamaapaaqaatbHXaiZajpajradmadtadtabQadvadUaefaenaghagzaefaevaaUaaUajwajwajFajFajFajwacsabLacRaaxaaxadnadqadnaaxaaxadrachadsadSadTadTadTaecaecaqAaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAackacdacuabAacyaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaaEafQaaIaaIaaIabdaaIabfabYajLajRajWaeHaeOaeOaeXaeOaeOafgafiagBadtacSactaaUajwajwajXakcakfakhajwaduadQabLaeaafOahZaibajhajmaeaachadQajKadSaeoaeEaeFafMaecaePaaVaaUaaUaaUaaUaaUaaUaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaePaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazaaAaaAaclaaAacCaaAaaAaazaaaaaUaaaaTxaaaaaUaaaaaaaaaaajacnageamiacoacwabTacFacFacFacFagjagnacFacFacFabUafWafWagfaggaimabBabCacQacQacQakiakkakmakhakhakxadQadQadQadQalaamPasyamPaoQadQadQadQadQaeWafmafmafpagxbEpagXahPahPaioaioahPahPaaUaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTavrabeabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOadaadbacDacUacZadbadaaegaaaakEakNakEakPakEaaaaaaaaaaajacnageakXakXakXakXakXacIacVadgagqagwadJaekalealealealealeahjaimafEahYaiyaiDacQalgalialkalialpajwajwajwaQOadQabLaeaaeaaeaachadQacTadSadSadSaiAafmaiVajabEpajSahPaknakZalbalfahPaaUaaaaaaaaaadoadoadoadoadoadoaaUaaUaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUanUanUanUanUanUaaGadKadWanUanUanUanUakEalqakEalsakEaaaaaaaaaaajacnagyakXalAalEalOakXaemadiadiagqajJadiaesalealQalTalValeajfaimafEajgajkajqacQalYamnamHamRamTancanfajwaeiaeraetadQannadQadQadQafRadSaeGapoaptapTanvaoMbEpaHjahPaJRbiOaKeafhahPaaUaaaaaaaaaaaaaaaaaUaaaaaaaaUaaUaTxaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUaaNaebanUaaRaehaeLasVaeQaeQaeVagvansalqanCanWakEbUobUoaajaajacnageakXaoeaoiaokakXaexaeTaeUagqahwafqafraleaolaomaonaleajfaimafEabIaqRarcacQaooaopaozajwajwajwajwajwatZaucaeKaykazGaykaFraFtapvadSadSadSbveadSaecaecbEpbvmbzpbEgbEtbEwbEyahPaaUaaUaaUcjjcjjcjjcjjcjjaaaaoKaoSaoKaoTaoKaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaccaaSapcapQaqaaqfasOaeMaeMaeMaeMaeNapgapnappaprakEaaUaaUaajaauafwageakXapAapDakXakXahtafqaeUacHanQagYahialealeapNapOaleajfaimafEacQatsatJacQajwaqbajwajwawNaxeawNawNaFvapvafUaGZaagaGZaKgapvapvadVafdaxLafSbEuaxSagibEpahPahPahPbEAahPahPahPaaUaaaaaacjjcjkagGamOcjjaaUaoKaqeaoKaqyaoKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUauEauIauKawYauSauTadAaniadDadEabSaqEaqFaqHaqJakEacLacLaajahnacnafCaqVaqXarfarharjaRzaijagragsaUSaijailaruarzarAarCarDaAxaqsaFuaHraLbbmpahDbAtbEIagAbGcbGcbGcbGcbGcbGdagJaheaKnaelaKnahOaiFajbajdajIagZahKahNahNahNahNahNahNaifaikbEBaizaaUaaUaaaaaacjjanbaiuafocjpaoKaoKaqearKarLaoKaoKaoKaoKarMarMarMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUahgahgahgahgahyahyahgadOaguahEaedaewaewaewaewaewaewaewarRakEafsafFaajajHajNakKarSarUarZasbasebrBcdIalDalKckGbrBckHasfashasnasoasqalNaquaeOaeOaeBbGiasraeObGjalPaeOahIaeOaeObGlbGmampaiJbEGagQalRamlamramtajjafKaeZaixafaafKafKafKafKaiBassajlbGoaizaaUaaUaaUaaUcjjajoajvcjlcjpasAasEasQasZasZatdateatgathatiatlatnaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahgakpaksaktakuakyakAacNajxakQaflaeJafnafGafJafYagDaewajCahmaiTaipaajajYamSakGakXapAatpakXakXankadianjagqcwkadialralealeatrapOaleanoaimaeYaeYaeYaeYaeYaeYaffanAaffaffahzahzahAaffaffahzbEXajebqQabXaqLanHaqLaqLagmajMahaahbahcahdafKafKafKajPafAaizaizaizaizasdcjjajVakbcjjcjpatuatwatxatyatDatEatGatGatGarMarMarMaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUahgalwakYatIalyamIamQamZanaahEaflaeJagIagPagPagPahraewagHakoacobeVaajalBamSalCakXatNatTatYakXarJadiajJanRaBmamfavnaleauaaudaonaleanoaimaeYahBamsahFahGaeYahHaotahSahWaiwaiwaiQaiRaiSahzbEXakMaoxakdaoyaAQazraqLaqWakHahxahxahxahxahTahUafKalhahNahNahNamwamDahNahNanGanZbGqaoKaueatwaufaujaukaumauqaurauuatGarMaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaahgafHalFammaoqaodamaacNaguahEaflaeJaidagPagPagPaiHaewakCalxalGacoaajamjaoXaalakXauvauxauBakXamoanlajJapfaohaocapbaleauFauGauJaleanoawcaeYaiYahCapxapMapZaqGaqKajQajQajQaraardargartarIasganzanDaoAaoDaoGbwlaqLahXakHahxaiaahxahxahxaitafKaqNaiCaiCaiCaiCaiCaiCaiCaroarGbEfaoKauOatwauUauXatDavaatGatGatGatGarMaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWagWahgahgahgameaoRamBahgaqYaguahEaiKaewaewaiLajBaiLaewaewambbfacjoamdaajapeamSapeakXakXakXakXakXacFacFauMauQacFasJasJalealealealealeauZaxxaeYaeYakSakUakVaeYakWavoaxOayialLaysalIamuamvahzbEXakMaoxawtaojbvpbEnaqLaiUasPasTatmajsajDahxajEafaatoalzakealcaldafValHaiCavbavfavmaoKarMarMavpavqavsavsavxavzavBavDavsaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaahfahkahlahoahpahqapsakLaoVajyabSajzaguahEajAaeJajGajTakvakvakwaewamkaajaajaajaajaalamSaalavNavOavRavSavXavNaVDayDazzarlasJatBazLaALaAOaBzaBHaBLayNaBNaCkaCoaCpaqvaeYanyaCsanXanXanXanXanXamuakRahzbEXakMaoxaDbaDmaDFanJaqLafZakHahxalXatOatCahxamCafaautavtavtavuavZamKamKamLawbawfawbawbawbawgawiawjawlawpawpawxawxawxawpawpaaUaaUaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaainainainaisaiEaiGagWakDaoYakFabSalMaguahEajAaeJalUanuanwanwaoBaewauHbNMaGccitaviciuaDEaDUawyawzawCawCawFavNaxPayDazzayXasJaBUaCjaCwasJaEUbGzbnHaAAawNaeYaoraoraoraeYaosaFoaoCaoCaoCaoCaoCapiapjaffaXvapqaFpaqLaqLaFkaqLaqLaglakHahsahxaylahxahxahxanFaywazxaDDaDDaGYaHcaDDaQZawIawUawIawIaxaaxbaxdaxnaxqaxDaxEaxUaxUaxYaygawpaaUaaUaaUahuahuahuallalmalnalnalmalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUainaklakqakragWamhapuawGawZaxKaqfaqzaewaeJaewaskaymakvakwaewapecivbNTciwaalaalamSaalavNaypayqayraytavNaCAayDazzaDjasJaDkaDlaPiasJaGDayuaxhaBMawNaeYaeYaeYaeYaeYapkaotaplaqhaqiarmaqhahJatAaffbEMaqZaHhanBajiaHhawhafKapWbhjafKarxbmlbmrbvobvobvqbDBbEvaqpaqxaqQbEHaqpaqxamcamcamNamNamcamcayvayxayBayEayHayLayPayZazaawpaaaaaaaaUahuamUamVamVamVamVamVamVamVamVamWahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMbOcbOfaaUaaaaaaaaaaaaaaaaaaaaaainainainakOakTaljagWaBAaeDaxWaEyaxXasVatVavgavFawHayFazNakvaqDaewcivcixciycizaalapeamSbGHavNazbazpazAazCavNbGMaIeazzbGNasJbGOaIhaPiasJaJFaimanqaCqanqanqanIanLanPanqatQaotahJahJahJahJahJahJatKaffbEOavTaJSalSaKsaKBamxamyamzbEJaGRamFarybPuamMaImafKbSubZMauiawvaycazVaAgbvwagUawVanMaiianOamcazDazHavbawpazMazOazUazWazYawpaaaaaaaaUahuaovamVamVamVamVamVamVaowamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUciAaaUaaaaaaaaaaaaaaaaaabfqaltahkalvahoaAdariasFarqarTasjaySazkaCtaCWaewaeJaewaCXaDeakvaewaewavGavGcnFciBaalamjaKRaalavNavNavNaAfavNavNavNaLgazzbGRasJbGSaLBbGTasJaJFaimanqaDxanTaofaoLaoUaqPanqatLaotcpdahJahJatMapPahJaqgaffbEPavTaMyaMCaNlaNuaNUaODamzcfSaAaafKafKciNapWapWaAacjmavtaAmbvrbvAbvCbCJbvwairaoOaoOaoOarnamcayvaAraAsawpaAtaAuaAEaATaBcawpaaUaaUaaUapCapEapFapIapIapJapKamVamVamVamVapXahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUciAaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWalWatqamgainawJaaSawRabSacNagEaECaxiaeJaxjaEEaDeakvayhaxkaxlaxmbGUbGVbGWaCMapYaOHaBkaBlaBoaBraBtaBwavNaEoaUAbHbasJasJaVEasJasJaJFaimanqapyanTcpqanTanTapzanqatkaotahJahJazKaAlaAlaAlaCOaffamEaCNaxGapRapUaouaqjaqlaqmbEJareakaatRclyarsarvakaasmavdbvwbDnbZNcbQcjnbvwaZKaqqaoOaqraqtamcaBDaAraBJawpawpawpawpaBOawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUciAaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUagWamXatHamXainawJaNMaxoabSacNatUaELatWaeJayQaEEaDeaAhaewaszaCuaCCbHlbHmacobHdbRaaalavNaBPaBQaBRaBZaBZaChbnJboHbvdbvtaDzbyRbHjbHkaJFaimanqarVanTasaasaanTasKanqbBdbCOaqGaqGbDobDObFLbFLbFMahzaspavTaJSatPatPaouajiawBamzcmlcmocmAcmCaCvcwNaubatSaqobDpbDqbDrbDsbDsbDtantanNaqqaoOaSRatXamcaCxaCIawpawpaFlaCPaCRaCSaCTaCYaqCaugaunauoaupadIauwauyauzaqBaqBauAaveaveavkapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUciAaaUaaUaaUaaUaaUaaUaaUaaUaqwabxagWagWanUanUanUanUanUanUanUazlaAVaBaaCEaewaewaESaETaewaewaewaewaCKaoFaLuapHafXcjOarbaDaaDcaDdaDfaDdaDoaDpbHobDZbHqaDvarkbHrbHsbHkbEraimanqapyanTaoLbEzanTapzanqbFNahJbEDbEEbFKbFLcqibFLbFPahzauhavTaHhajiajiajiajiboOamzamAavPakaaSUcwZazRazSakaaAobDvaulbDxaaBbDzbDAaoNawDavhaoOawEayVazFaDwaDyawxaDAaDCaDGaDHaDJaDKaDQaxraxsaxsaxyaxsaxHaxJazsazsazIaGOauyauyaIRaJqahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUagLaiqaiqaaMaaMaaMaaMaaMaaMaaMaaMaaMaaMbOccnGaaUaaUabxabxaiNaiNaiNaiNabxaiOaiPaiOanUaCraEwaHbaHNaIlaIVaJwauVaGGaCHaDWaDYaGTaHgaEWaUyaGVaFGaFZasWataaoFatcatcatcaDSaBQaBQaDZaEdaDoaDpbHqbEFbHfbHubHvbHvbHwbHkbEKaimanqaxganTanTbESanTbtkanqatMahJbETbFQbFKbFLbEUbFObFMahzayGaAbaHhazmaBTaBWaFVaApaAqamAaAWakaakaakaaBGaBGaqlbDiaiCbDAbDCaEgaNebDAaJHaoOazXaoOaoOaJJaJYaElaEnaEraEtaxUcPraEzaEBaEGaEHaAMaANaANaBdaBnaBBaBEaBEaBEbrnauyauybXHauybrpahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUabiabiabiabiabiabiabiabiabiabiaaUcnHabxajuaqwakgakjakzakBaluaCdamqanVaobasLaKdasXasYatjanUanUanUaGPaHHanUaewaewaHTaHSalUalUakvaIzaewatzataauPauWaVratcaDSaEJaEKaENaEOaEPavNbHfbHxbHfbHyaPFaPFaPFaPFbEKaimanqceuanTanTbESanTcevanqbFRahJbETbFSbFTbFUbFVbFUbFWaffaNXavTaHhazmbuPaBXaivaCnbGaamAaDqakaaERaEXaEYaEZaFaaFbaFdbDAbDFbDGbDHbDAanSazTaCVaFIbrxbrCbrDaFgaFsaFxaFAaFBaFDaFHaFJaFKaFLaqCbscbsdaJIbbRbsgauyauybsjaqBaqBbskbsmbsmbsnapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaLaoHaoPaoWapSanVaDOaDTaDTaDVavWauLbUAasLaLJaNjaNGayfanUayjanUblsaIsanUaInaewaJtaLfakvakvaLvaewaewavJatabGfavLavMatcaDSaFMaFMaFMaFMaFMaDSarwbHkarwbHBaPFbGpbGsaHtbGuaEhanqanqcexceybGvcexanqanqaffahzbGwahzaffahzbGxahzaffaffaEAaCNaCzaCBaCDaCFaMjamAbGGaMlaNnakaaFOaFQaFRaFSaFWaGfaGjbDAbDEbDIbDAbDAamcbsocraamcamcbsqbsraGkaAraGlaGmawxawpaGwawpawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnIabxaqMaqwarraslasHatvaGyaEpawdawrawkaziazjaNJaNVaznanUanUanUaKOaJyanUaewaewaJNaJOaKaaymalUaPZawQawSawTbHhaxwavLatcaByazPazQaAeaAjaAjaAUaBgaBhaBiaAjaJAaAjaAjaKcbHiaEqbIDbIDbNpbRFccgbRFccqcczcfebRFchQaAjaAjaAjchWaCmazPakabviavTaHhazmbvlbuXamAbvDbGGbcWbvhakaaGFaGIaGUaHdaHmaHwaHBbDAbDKbDKbDAaHCaHXaIbaIpaItaIwaIyaIBaIWaIYaIZaIZaIZaJaaJbaJsaJPaKbaaUaaUaaUapCapEbsBbsmbsmbsCbsEamVamVamVamVbsFahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUciAaaUaaUaqwabxabxawmawoawuaEsawKawMajUasLaphaphaBbaBeaBfaBjaLwaLxaKtaPXaFGaQfaQgaQiaKwaQgaQAaQYayOazBaAkcqdcqHcswcsAcwfaFfaFiaFCaIkaFCaFCaGgaGxaGxaGxaGxaGSaGxaGxaHaaHpaHuaHuaFCaFCaFCaFCaFCaHvaIkaEucAVcAWcAWcAWcAXaExazPakabvFavTaHhaRMbvZbAhbDuamycAYbvHaqlakaaKfaKfaKmaKraKfaKuaKzavmavmavmavmaKWaLdaLeaLhaLjaLjaLoaLjaLqaLraLraLraLraLraLtaLzaLCaKbaaaaaaaaUahuaovamVamVamVamVamVamVamVamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaEfaaUaaaaaaaaaaaUcepaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMbOccnJaaUaaUaaUaaUaaUaxcatvauLaIoaxfasLasLanUasLasLanUbzxanUanUabSayRaKCabSaewaSXakvalUalUakvaSZaTaaBxaBCcjNcBbbhNaBKaCacBcaIucBecAWcBfcBgcBhcBhcBhcBhcBhcBhcBhcBhcBicBjaIJaGraGraFFaFFagoaFFaFFaFFaIUaJcaJcaJCaJQaKDcBoaGJaGQaCebvLaHlcBqbarbasbatbatbascBqbvLaCeaLUaMbaMbaMcaMfaMraMEaMMaMOaMTaMWaNsaNtaNEaNPaOfaOgaOjaOmaOyaOGamGamGamGamGamGamYamYamYamYaaaaaaaaUahuamUamVamVamVamVamVamVamVamVbsHahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIakIakIakIakIakIaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaUawmaxpawuaEsawKaxuaxvaxzaxAaxBabSaxCaTpaxNaxTayCaLnayIaewaewaewaewaewaewaewaewaoFatcatcaFPaICaIDaCacBuaKJaEvaHkcBvaIjaHsaHsaHsaHsaHsaHsaHsaHsaHtcBwaLcaOJaOTaOUaOUaOTaOUaOUaOTaOXaPaaOTaOTaHOaLTaMwaNmaNvaNBaXnaNYaRTaSDaSDaSDaSDaSDaRTaXnaYKaNEaPlaPxaPxaPyaPAaPCaPGaLraLraLraLraLraPJaPLaPQandamYamYamYamYamGaneanpaneanpanYanpaoaamYaaUaaUaaUahuahuahubsJbsKalnalnbsKalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIadpadZajZahhajnakIaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUayJatvauLaNZaOKaOLaOWaPjaPkaPnaPvaPYaQbaQbaQbaQEaQHaQMayTayUayUayWazcazfaAPaDiaHRaIFaIGaKiaDPaLXaIdcBEaKJaEvaIiaIjaHsaHsaaUaaUaaUaaUaaUaaUaaUaDMcBFaQSaOTaPSaQtaQuaQzaQBaQIaQPaQQaQRaQXaRcaRBaSoaSpcBKcBLaDhcBMcBNcBOcBPcBQcBPcBRcBNcBScBMaDraRdaRfaLjaRgaRiaLjaRkaRnaRsaRtaRKaRNaRNaRNaRPaRSaoEaoZaqdapwapaapLanpaBSaztaBSaztaBSayAamYamYamYaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIajtchhanxaCfaLHakIaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUaqwazyaAcatvaAiasLaAnayMaMpaAvabSaAzaaSaaSaaSaMZaMqaSxaROaSQaSQaSQaSQaCbaEcbGYccMaJvaRUaMNaPsaSJaIxcKDcKEaEvaHQaHsaHsaaUaaUaaaaaaaaaaaaaaaaaaaDMcBFaQSaOTaSbaSfaSfaSfaSfaSfaSfaSfaSzaSEaOTaIOaSPaTAaJrbhRakabDScbZccabDVccbbDXcbZccacBUbDYaciacKadRanhaGHaqcaPxaSIaSOaSSaTeamYaSeamGamGaKqamYamYanpaneanpaneanpaneaBSazuayyazuaBSazvazwazZaAwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIchicMfakJakIakIakIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabhaaUaGqaGqaGqaGqaGqaGqaGqaGqceCasLaAScCPaOnaOOaPDaOhaQlbpoaAYaAZaQmaTFaBIaABaTgaABaABaFTbjBaDXaDXaJZaDXaQwaGhaHZaJxcBoaKJaEvaHQaHsaaUaaUaaaaaaaaaaaaaaaaaaaaaaDMcBFaQSaOTaTiaTjaTvaTwaTvaTvaTvaTvaTzaTCaOTaTGaTIaTKaTGaTMaqlbERbEabEabEbcBVcBWcBXcBXcBYbEdaqnaHLarXazoaIfaqnaTNaSIaUaandamYamYaACaADaneaLMaAFaAGaneaBSaBSaBSaBSaztaBSaAHayyazuaBSaBpamYamYamYaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIarWaxFaAIaAJaAKaGaaEaaEaaEaaEbaEaaEaaEaaEaaEaaEaaEaaEbaEaaEaaEaaEaaEaaEaaEaaEbaEaaDnaEeaXjaFEaJLaJMaJXaGqaARasLaCcaCgaCiaClabSaCGaguaAXavjaCLaShaUvaDsaDtaDuaDBaDLbjVasLaIqaJUaLYaYIcoUcsnatcaVccBZaKJaEvaHQaHsaaUaaaaaaaaaaEQaEQaEVaEVaEQaEQcBFaQSaOUaUdaTvaTvaTvaTvaTvaTvaTvaTzaUeaOTaUjaUlaUmaUnaTMaqlaqlamyamyaUqaUwaUqamyamyaqnaqnaqnaINaKjaKpaLsaciavmaUJaUNamYaBqaBsaADaBsanpaMuaMvaneanpaBVayyayyaBuaBvayyaBvaBSaBvayyaCyaHKaKIaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIaHoaIMaMxcMpaRCcMKcMKcMKaHEaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaLKaUzaZqbdzaURurjbdEbdJaEmaFjaFjaFmaFjaFjaFjbpXaSkaEDaSNabSaTRaVzbfwasLasLasLasLbpWasLatcatcaNAatcatcatcatcaydcCbaKJaEvaJTaHsaaUaaaaaaaaaaEQaFwaFyaFzaHnaDMcBFaQSaOUaTiaTvaTvaTvaUUaTvaTvaUWaVbaVfaOUaViaVnaVoaVpaTGaaaaaaaaaaaUaVsaVxaVsaaUaaaacKcCdaRjaMKaVyaNDaRAaciaVHaVUaWfamYaCQaneanpawPcsyaNyaDIaEiaDIaEkaEjbvEaEjaEjaEjaEkbAZaEkaEIaEMaMRaKMamYaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbuVmKPcnnaYabxnbxobxqbxtbabaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaGqbDPbDQbDRbEccbXcenceoaGzaFjaFXaGKaGbaZTaFjaGoaUgaVwaVIaVOaWSaWeaYoaYraYqaYqaYqaZObfmaYqaYqbkFaVQaVVaVZaydcfRcCeaKJaEvaHQaHsaaUaaaaaaaaaaEQaDRaGdaGeaWtaDMcCfaWuaOTaWsaTvaTvaTvaTvaTvaTvaTvaTzaVfaOUaWDaWLaWNaWTaTGaaaaaaaaaaaUaVsaWUaVsaaUaaaacKaREaNDaOcaRxaNDbkTaciaWXaVUaWYamYaFeanpaneanpaBsaSdaBsaADaBsaBVayyayyaBuaFhayyayzaFnayzayyaFqaMUaBSaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxucrzbxxbxmakIakIbxCakIaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaPUaGqaGqhcRaKFkzbaGqaGqaGqaGsaFjaGtcCWcCXaGvaLaaAzblYaBFaBFaKhbpSaTFaKoasLaXuaXuaXuaXuaXAaXuaXuaXuaWaaSgaXLaydaLlcCeaKJaEvaHQaHsaaUaaaaaaaaaaEQaDMaDMaDMaWzaDMaHGaWAaXPaYbaYiaYjaYMaYjaZaaZcaZcaZgaSEaOTaZhaWLaZkaZlaTGaaaaaaaaaaaUaVsaZmaVsaaUaaaacKaSYaVXaSAaSFaWHaWJaXQaZFaZHaZLamYaCJaCJaCJaCJaCJaTqaADaBsaADaBSaBSaBSaBSaKNaBSazuaFYazuaNaaNbaQVaBSaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIcMfbxDakIbxAakIakIakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaPVaPWaTHaKHaGLaGMaLmaGWaGXcvKaKYaOpbmcbnWbrGbGnbLpcjRcjScjTaKxaKyanUanUaWCanUanUaZUaZVaZWaZXaZYbaabajaXuaWaaXMcqNaydaydcCeaKJaEvaHQaHsaaUaaUaaUaaUaEQaLVaMgaUKaWWaXaaXbaXdaOTbanbaUbanbbibanbbibbHaVfaVfbcdaOTaTGbcebcgaTGaTGaaaaaaaaaaaUaVsaWUaVsaaUaaaaqnacKanKaToaTraHxaHzaHyanKbchbcqamYbFnbFnbGebFnaCJaVYaBsaADaBsaADaBsaADaBsaADaBSazuaFYazuaSCaGAamYaCJaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIbxBbxEbxIaNChiVbbkbxKakIaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbikaHDbRDcQQcQQcQQcQRaHIaHMaHMaHMaOZaHPcjWaGuaHWbEVaFjanUaLkaLLanUanUaLWaXiaaSabSaZVaZVaZVbcrbctbcLbcPbcUcCVaYqaYqchJcDkcDlaXKaMHaHQaHtaHYaHYaHYaHYaHYaDNaIaaGeaIcbdbaVCbreaOTbddbdhbdlaOTbdOaOTbdPbdPbdWbdYbdPaaUaaaaaaaaUaaaaaaaaaaaaaaUaVsaVxaVsaaUaaaaaaaaaanKaTtarHascbtbbDcaHzbeabcqamYbFnbFnbFnbFnamYaJjaGBaMVaHeaHfaHiaHJaGBaGNaLGaKNaFnaKNaSCaBsaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxQbxWbxJbxvcvIbxXbxYakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaPVcQSaIgaHFaHFaHFaHFaMiaILaHMcnpaHMaPuaHPaFjaMhbaKaIraFjaMYaNdaNfaNkabSaaSaXOaMPabSbebbebbebbeObePbeSbfgaXuaYtaYtaYtaOoaydcCnaYwaMSaOzaNpaHYaTLaVgaIvaHYaDNaGEalZalZalZalZalZaOJaOJaOJaOJaOTbfvbfybdPbfFbfJbfMbdPaaUaaaaaaaaUaaaaaaaaaaVsaVsaUqbfOaUqaVsaVsaaaaaaaHAaTJaVaaWnaWnaWwaWxbfSbgbbvuaJdaJdaJdaJdbvuaJdbsSaNqaJdaJdaJkamYaJfaJgaJhaJmaJoaADaTBaADaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxZbyabybbyfbybbygbyhakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaIAaHFaHFaIEaIHaIIaQhaKvaIPaIQaHMaOZaITaFjaFmaFjaFjaFjaNKaNLaNNaNLabSabSaYSabSabSaNOaNSbebbeObePbgmbgyaXuaBYbaBbaHbaMaydcCpaYVaNIaHtaHtaHYaVAaQFaIvaHYaDNaGEalZalZaogaogapBaogaogaogalZaOJbfvbgJbgRbhabhcbhgbhlcuAaaaaaaaaUaaaaaaaVsaVsbhqbhvaVxbhObidaVsaVsaaaaHAbsRaIKbvGbvRaWyaTrbiXaSOaJdaJibfHaJlbDeaJdbtmbvTaOibmIaJdaJdaJdaJdamYaLNamYaLPaMeaUxaMFaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibybbybbybbyjbybbybbybbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaJeaJnaIEaJuaJzabOaQNaGnaJBaJGaHMaOZaJKaGqaOraSsaOsaGnaNLaNLaNLaNLaNLaLZaZMaOvaNLaNLaOwbebbebbjvbjCbjDbjDaOBaOBbcRbcRbGIcCqbaJaOSbGIaPbaHYaWibbaaJWaHYaDNaGEalZaogapBapGaxVaxVayKaogapBaOJbfvbjLbdPbdPbdPbdPbdPcuyaaUaaUaaUaaUaaUaVsbjObjYbkaaWUbkabkvbkwaVsaaUanKbCGaKkaKlbCIaYmboAbkKbkQaKQaKUbdqaKVaKXaKQbdobdpbdpaZibcobdmbdsbdwaOtaOuaQyaMJbdBbdXbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayecrBbyibyibykbybbylbybbymbyibyicrCayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaLEaHFaIEaKAaKEaKGaRaaKKaHMaKLaHMaOZaKPbdQaKSbWeaIPbfAaPoaPqaPqaPqaPzaPBbbpaPHaPqaPqaPqaPMcDpcDqcDraNOaQnaNOaQoaPraPraPwaRbbcfaQDbGIbGIaHYaWobcKaHYaHYaDgaLialZaogaFcaFNaGpbfjbfkaxVaogaOJbkWblDaOJabpabpabpabpbccbrsbrsabpabpabpaUqbmkbkabkabmsbkabkabmtaVsanKanKbCKaTUbCQbDJaYDcAFbmAbmBaJdcCsbetbfzbetbfBbetcAJbfKbfLaJdaLAbfQbfTbfVcCtbgobgpbgrbhVbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibynbynbynbynbynbynbynbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaLyaHFaIEbhBaLIaReaRlaLQaHMbPtaHMaSaaSiaSBaSWcPsaTfaTuaTDaUCaUCaUCaUGaUVbcNbcQbdxbexbcQbcQbeLbhzbhWbcQbcQbcQbixbiCbiCbmCbjUbkebkPbkUblmblnblrbmgaRQaTbaUMaUTaHUaxVbfjaxVaxVaxVaxVaHVaogbmFbmJbmKaPNaPNaPNaPNaPNbcOaPRaQpaQqaQraQrbmObmUbmVbnbbndbnobnwbnBbnBcALcAMcANcAOcAPcAMaYEbCLbnEbnFaKQaLDbmubmxbmXbrtbsecARbsWbtMaJdaJdbugaJdamYbeAamYbuTbuUbuYbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibypbyqbyxbynbyybyzbyAbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaMQaJnaIEaMXaMXaXSaXTaGnaNgaNiaHMaSaaYhaGqcDsbdSaYyaGnaNLaNLaNLaNLaNLaYBaYJaUCaYOaNLaNLaNLaRmccQccRaNLaNLaNLbcSbeJbeJaYPaYQbmqaZJaZJbaqbmyaXqbmDaYeaWvbflbaIaHUaxVaxVaLOcsCaxVaxVaRraogbnTbofboibesbesbesbeybesbescuxcuxbesbesbeDaUqbokbkaboVboXboZbkabmtaVsanKbCMbCNcCAanKbCPaYFboAbchbpcaJdaLRaUsaLpaLSaJdaMdbuZcCBbvfaJdaMkbuLaMkaMsaMtamYcCCbyobMmbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyBbynbynbynbynbynbyCbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaNFaHFcsDaIEaIEbbbbbcbbdaSWaSWaSWbbecsraNRaNRaNRbbfaNRaNKaNLaNLaTOaNLbbgaNLaNLaNLaTOaTYaNLaNLccSaNLaUDaUEaULaQobftbftbftbgcbmLbeJbGIbGIaNTbbjbmRaNTaNTaOaaObalZaogaxVaxVaxVaxVbfjaxVaogaRJaQJaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcuyaVsbprbpsbptbpHbpJbrAbpZaVsaaUanKanKanKanKboAbeQanKaSIbqaaJdaJdbuQaMLaMLbvuaJdaJdaJdaJdbvuaMkbuLaMkaMsaNwamYbuNapVamYaCJaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUbyibyGbyHbynbyIbynbyJbyKbyiaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQTcQUaPpaHFaHFaHFaHFbbDbbGaHMaHMaHMbnGaNRaNRbiqaPtbsfaNRaVjaVjaVlaTPaVubcHaVJaVJaVLbhhaWkaWlaXwaXBaXGaXRaXRaXRaXRbdgbdgbcRbgdbgubeJbGIaPbaNTbdabnKaUOaNTaPIaPKalZaogapBaRLaxVaxVaxVaogapBaRJaQJaaUayeayeayeayebQeaaaaaaaaaaaaaaacuyaVsaVsangaRFangapdangaVsaVsaaaaaaaaaaaUarEaYCbjwbqbbqkbnFbqlaZDbvkaZebaYbAObdAbhebhibhwbdAbdAbhCbdAbhDbhEbfXbDjbgjaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyLclDbynclEbynclFclGbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbikcQVcQWcQXcQYcQQcQZbitbiFbjubjJbkAblfblyblAaYRbnIaNRaNRaNRaYTaYTaYTbnZaYWaYXaYTaYTaXRaXRaXRaYYaXRaXRaQGaQKaQLaaaaaUbdgbgdbeJbeJbGIbGIaNTbolbnLaQUaNTaPIaPKalZalZaogaogapBaogapBaogalZaRJaQJaaUayeaaUaaUaaUayeaaaaaaaaaaaaaaacuzcuAaVsangcogcohbfIangaVsaaaaaaaaaaaaaaUatfbrfbwuavmbrgbrhbribwEbwFbhFbwObxcbxgbxpbyMbyObxpbxpbySbzQaOAbtgbtrburbuubuIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyBbynbynbynbynbynbyCbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQTcQSaGqaQWaQWaQWcDtcDuaQWaQWaGqaGqaNRbjFbqhcsEaRoaRwbaoaNRbazbaAbaCbqibaFbaDbaGaYTazdaRIaRWaScawOcjyaRWaRWcjqaaaaaUbdgbgGbeJbeJcrrbgLaNTaSlaSmaSnaNTaPIaPKaStbvvalZalZalZaSGaSHaSHaSHchmaQJaaUbQeaaUaWjaaUayeaaUaaaaaaaaaaaaaaacuzcuAangbntcfyclHangaaaaaaaaaaaaaaaaaUaKTattbAdbrjbrybrEbrWbIXbVibXcbEibFdbvsbvxblPbBbbvsbvIaMncclbvNbvObvPbvSbvVaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyiclIclJclKbynclLclMclNbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbkCbmjbaPcDwcDxbuMbuOaaUaaUbuRbydbuGbvJbAnbCebDkbEmbFHbFIcPtbIlbIrbIVbbMbbPaTSaTSaTSaTTaUcaTSbsbbzTaQLaaaaaUbdgbgdbeJbeJbjjbGIaNTaNTaNTaNTaNTaPIaPKaStaUhaUhaUhaStaRhaStbeGaaaaaUaQJaaUayeaaUaWjaaUayeaaaaaaaaaaaaaaaaaaaaacuyangangclOangangaaaaaaaaaaaaaaaaaUarEattaMobsObtqbttbtucsBcvJbhGcwtczNaMAaMAaMAaMAaMAaMBaMDczOaMsbwbbwcbweaMsaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUbyibynbynbynbynbynbynbynbyiaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbBtbCdbEqbFybAXbuOaaaaaabKpaUBbIWaUFbKGaNRaNRaNRaYTaYTbcsbcJbcxbKgbczaYTaRWaRWaRWaUHcjqaQLaUIcnqaQLaaaaaUbdgbgdbeJbtGbjjbdgaaaaaaaaaaaaaStaPIaPKaStcjMaUPaUQaStaRqaStaaUaaaaaUaQJaaUaaUaWjaWjaWjaaUaaUaaUaaUaaUaaUaaUaaUcuzcuBcuCaRuaRXaaUaaaaaaaaaaaaarEarEarEattaMGavmavmbtJbsObwjbwnbhHczQczRczSczTczUbtcaNcaMAbEjczVbmoaMsbmoaMsaMsaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyiclPclQclRcrDclSclTclUbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaQWcDBcjQcpscDCbENaQWaaUaaabKJbKKbKKbKKbLeaNRaaUaaUaaUaYTaYTbOYcvZcwaaYTaYTbcRbcRbcRbcXbcRaUXaUYaVecjqaaaaaUbdgbgdbeJbeJbjjbdgaaaaaaaaaaaaaStaTnaVmbjAaVvbCCaVMchoaRqaTsaaUaaaaaUaRZaSqaSqaSuaSvaWjaWjaTyaWjaWjaTyaWjaWjaWjaWjaWjcuDaSvaSwaaUaaaaaaaaaaaaarEbGJattbtPbVtbVzaMIbmSaMIbmWbmWbhLczXbuhbuWbvaczYczZbvQaMAbvUczVcAacAbbwkbmWaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyibyibyibyibyibyibyibyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbLhbLkbMhbOJbOLbuOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdjbdrbdrbdrbdybdgbdNbcRbdUbelbcRaZEbewaRHaQLaaaaaUbdgbgdbeJbeJbjjbdgaaUaaUaaUaaUaStaPIbtRaVvaVvaZbaVNaStaRqchoaaUaaaaaUaaUaaUaaUaRZaSuaWjbnSbtTbtZbudbtTbnSaaUaaUaaUaaUcuDaSyaSMaaUaaaaaaaaUaaUarEbFecqrbwobwpbVKaMIbwqaMIbEQbwsbiocAdbwvbwxbwycAecAfcAgcAhcAicAjcAkcAlbwHbwIbCUbCVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaacrEaaaaaUaaaaaaaaaaaUaaacrFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQWaQWaVPbRbaVRaQWaQWaaaaaabdgbdgbdgbdgbdgbdgbdgbdgbdgbdgbeFbeJbeJbeJbeMbdgbeJcmdbeJcplbcRaVSaUYaVeaQLaQLaQLbcRboobeJbeJbIPbGIaStaStaStaStaStaPIaPKchobuebuebuebueaRqaStaaUaaaaaaaaaaaabtTbtTbukbtTbuqbtTbusbuEbtTbuqbtTbtTaaaaaacuyaSwaaUaaUaaUaaUaaUaWjarEatfarEarEbvbbGXbwWbwXaMIbxbaNWbiDcAnbxhaMAbxibFzbVHbxraMAaMAbxsbxybhAbxGaMIaMIaMIaVTaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaQWcptbOQbBjaQWaaUaaUaaUbdgbeNbeRbeJbeJbeJbeJbeJbeJbeJbeJbeJbeTbfdbfdbJybfdbfdbfdbfibcRbcRaWbaWcaTSaTSaTSbgNbTwbiSbiWbjebjhbjkbjkbjkbjkbjkbjpbjHaWqbuebvcbvgbuebvzbueaRvaWRbtTbvBbtTbtTbwhbwzbwBbwCbwLbwQbwSbwTbwZbxabtTbtTbtTcuEaTkaTlaTlaTlaTlaTlaTlbxPbxSbytbyubyvcbRbwWbwXbAkaNWbxdcAqcArbyPaMAcCEcAsbwAbyYbzfbzgbzlbzibgPbzmceGceGceHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbORbOSbRcbuOaaaaaaaaabdgbgxbeJbeJbeJbeJbbIbeJbeJbeJbeJbeJbbIbeJbeJcaWbeJbgzbeJbgAbgEbgFaRWaRWaRWaRWaRWbgFbgEbjRbqdbqnbqFbqGbqGbqGbqGbqGbqWbrcbrobxfbysbyEbyFbyZbzDaaUaaabzEbzFbzMbzPbAebAibAmbArbwLbBkbBvbBBbBCbBFbBHbBVbBXcuDaQJaaUaaUaaUaaUaaUaWjarEbzobzoarEceQceSbwWbzLaMIcCFbBKbkEbkLbkNaMAcAwcAxbAjcvPbApaMAbkgcAybzObAxbAKbAKaMIbALaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaTxaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabVNbXIcbibXIcbpaaaaaaaaabdgbdgbdgaXkbdgbdgbdgbdgbdgaXkbdgbdgbdgbdgbdgbdgbdgbgxbiibLHbLJbcRbcRbcRbcRbcRbcRbcRcoOcCGbcfbjjbGIaWBaWBaWBaWBaWBaUhbkVbwabBYbCcbCubCwbCybCEaaUaaabtZbCRbCTbCZbDDbEebEhbExbEYbFabFbbGbbGkbGybtTbtTbtTcuyaQJaaUaaaaaaaaaaaUaMIaMIaMIaMIaMIcgTbmWaMIbwXaMIbmWbASbmWbmWbmNaWEaWFbhUaMBaMBaMBaMBbPqbTUcaDbBhaMIbASaMIaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGKabMbGPaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUbdgbjgbdgaaUaaUaaUbdgbjgbdgaaUaaUaaUaaUaaUbdgbdgcoPbjibLVbLXcpcbcRbjGbjXbkubcRbkxbUwbwUbkxaWBaWBaWGaWIaWIaWBaWBaVvbwYbuebGZbHabuebvzbueaRvaWRbtTbtTbHcbKlbKrbKLbLobMzbMBbMIbMSbMWbNfbNkbNlbNnbtZcuyaQJaaUaaaaaaaaaaaacgdcgXcgYcgZchachcchvchwbBpbznbznbCqbBqbBrbngbznbBDbiNbznbznbznbznbznbznbznbBGaMIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGKabRbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpCcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgaXlbdgaaaaaaaaabdgaXlbdgaaaaaaaaaaaUaaaaaUbdgbdgblibfibLYbjjbcRblkcpnbllbcRblocCGbcfblCbslaWKaWMaWOaWPaWQaWBbkRbwYbuebNNbOBbOCbOVaStaaUaaaaaabtTbQtbQWbRlbREbSzbSDbSFbSIbBvbTFbBvbUcbvBbtTbtTcuEaQJaaUaaaaaaaaaaWRbwWchCbwWcifcigbmYbwWbwWbwWaMDbwWbwWbwWbwWbnMbwWbmSbiYbwWbjzbxGbwWbwWaMDbjzbAKaMIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbUeabMbNoaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacutaaaaaaaaUaWZaWZaWZaWZaWZaWZaWZblEbLYbjjbcRblFblJblKbcRblocCGbcfblOcjJaXoaXrbPzaXyaXzaWBaWBbwYbuebuebuebueaRqaStaaUaaaaaabvBbUgbUpbULbUYbVabVubVAbXpbXMbXMbXMbXMbXMbYfaaacuyaQJaaUaaaaaaaaaaaabeEcikcilcimcckccIcinciqciqciqciqciqciqciqbohciqciMbnecgYcgZbxFbxFbyWbzhciGciOcjcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbScbScbWcccadlccfabMaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaXCaXDaXEaZfaVGaWZbBWaVdbmhbmibmnbmZbmnbnabncbpxbCibnraXHaXIaXJbQfaXNaXUaXVaXWbClaXYaXZaYdchocjDaStaaUaaaaaabtTcchccibtTccjbtTbvBbtTbtTbvBbtTccnccobtTbtTaaUcuyaQJaaUaaaaaaaaaaaUbwWbwWbwWcmDbwWbmYaMDbwWbwWbwWbwWbwWaMDbwWbpIbwWbmScAzbwWbzHbxGaMDbCBbwWbAKbAKaMIaRvaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabMabRccrccsabMaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaYgaYkaYkaYkbnuaWZbgAbLYbnvbnxbnzbnAbnDbnPbnRcCGbcfblOcbAaYnaXraYsaXyaYuaYvaWBbCnbCoaXXaYxaStbnUaStaWjaaUaaUbtTccybtZbtTaSwaaUaaUaaUaaUbWqbtTccAccEbtTaaUaaUcuDaRZaSubghbszbszbszbszbsTbwWciSciVanmarpciVciVciVciVciVciVciVbqgciVciXbqfcilbJSbXsbELbICcihciVciVcntaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccHccJaaDaaYccOccPabMaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaYzaYkaYAaYkbnVboeawwbQgboubpnbpwbpybpCbpFbpGcCHbCpblOcbHcdacjGcjZckgckYaYNaZdaWdaWdaWdaWdckIbtwcpGaSqaSqaSqcjEaSqaSqcjEaaWabyabyabyabHacYbtTccybtZbtTaVtaTlcuGaVKaYUbGQaTlaTlaTlaTlbGQbCjbCjbCjasubCkbwWbwWbwWbwWbwWbwWbwWbqubwWbmYbqHbmWbmWciibAKbVjaMIaMIbASaMIaaUaaUaaUaaUaaUaaUrTWopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdbGhaaUaaUaaUaaUcdbabMcdiaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaZfaYkaYkaYkaYlaWZawLbQwbQxbQxbQxbQIbQxbQYbQxbRfbcfblOckZaZjaXraYsaXyaZnaWBaWBaStchoaZoaZoaStbnsaStaWjaaUaaUaaUaaUbghbszbszbszbszbszbAAadzcjFaTlaTlcjFadNqeqeUFcxacxbbITcxccxccxccxcbHeanranranranraqkaaUaaUaaUaaUaaUaaUaMDbrabrrbrPbrYbCtbmWcjgbjzcipaMIaaaaaaaaaaaaaaaaaaaaaaaaaaatpQaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUbHgaaaaaaaaaaaUbGKabRbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaZraZsbegaYgaZuaWZaGCbLYbqjbqAbllbllbllbqKbqYcCGbcfbafaZvaZwaXraYsaXyaZxaWBaaUaaUaaUaaUaaUbrsayabrsaaUaaaaaaaaaaaabIYaaUaaaaaaaaaaaabMKbszbMXbszbszbMXbszbPhbszbPrbszbPXaaaaaaatFatFbHAbHObHObHObHObRnbsTaaaaaaaaaaaaaaabwWbwWbCrbrXbsiaMIaMIcjiaMIcpEaMIbJjbJvbJvbJvbJvbJvbJvbJvbJvwPSaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxbHgbalaaaaaaaaUcdqabMbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaWZaWZaWZaWZaWZaWZaONbLYbjjaZyaZzaZAaZCaZybrMcCHbCsbRsbRPbRQbRUbSVaXybEsaWBaaabunbupavvavvavvavyavvavvavvbuvbuxaaabIYaaUaaaaaaaaaaaaaZpaaacdtcdGcdUcdtaaaguKaejsVCaejaaUaaaaaaatFausausaOPausausatFqlJbRoaaaaaaaaaaaaaaaaaabwWcwvbshbsvaMIaaUaaaaZGaaabLwbLSbMpbMpbMpbMpbMpbMpbMpbMpbMtaXxbcabRKbcaaXxbSbbSibSbaXxbTHbTIbTHaXxbTKbTLbTKaXxbHgbalaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaabdgbaZbdgaaaaaaaaabdgbaZbdgaaaaaaaaaaaUaaaaaUbdgbdgbeJaGCbLYbjjaZycpmaZIaZNaZybwrcCGbcfbxkaWBaZQaZRaZSaZZbacaWBaaUbxlajOajOajOajOaloajOajOajOajObxlaaUbRocdVaaaaaaaaaaaaceqaaUcdtcercescdtaaUhXkagcaNHagCatFaRDatFatFausbcMbiublXausatFqlJbRpbszbszbszbszbszbsTaaUbAQbsubsyaaaaaUaaaaaaaaabMMkxwcwAcwwcwwcwwcwwcwwcwwcwwpguaXxbcabcabcaaXxbSbbWpbSbaXxbTHbXebTHaXxbTKbXRbTKaXxtpQaaUaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaUaaUaaUbdgbjgbdgaaUaaUaaUbdgbjgbdgaaUaaUaaUaaUaaUbdgbdgbyVbSWbTubTybjjaZybadbaebCSaZybkxbUwbwUbkxaWBaWBaWIaWGbagaWBaWBaaaawqajOaGibCvavYawnaxZazeaGiajOazqaaabIYcdVayeayeayeayecetcdtcdtcewcescdtcdthXkagTbbQaoJatFciTciUcmhauscmicmjcmkausatFbcGanrcJxanranranranrbHebdRbAQbsxbsyaaaaaUaaaaaaaaabMMkxwcwAbMYbMZcpMbNbbjEbkHcwwpguaXxcatbZIcKQaXxcKRbZLcKSaXxcKTbZOcKUaXxcKVbZPcKWaXxbHgbalaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbdgbdgbhSbdgbdgbdgbdgbdgbhSbdgbdgbdgbdgbdgbdgbdgbeJbzBbUybUCaZyaZyaZybahchPbakbakbrIbVJbCDbjjbDNaWBaWBaWBaWBaWBayeaaUawqajOaxIaxIajOaISajOazJaxIajOaCUaaUbRocdVaaUaaUaaUaaUcetceKceLceMceNceOcePcJpcJqcJAcJBcJCcJDcJEcmpauscmqcmrcmsausatFcmtbcIcJFbcIbcIbcIaaUbRocJrcJscJtbsDaaaaaUaaaaaaaaabMMkxwcwAbMYbMZbNabNbbNqblzcwwpguaXxcKXbZRcKYaXxcKXbZRcKYaXxcKXbZRcKYaXxcKXbZRcKYaXxbHgbalaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbECbeJbeJbeJcoQcmdbeJbeJbeJbeJbeJcmdbeJbeJcaWbeJbeJbgAbJGbVQbVUbVVbavbaRbaSbAIbawblocCGbcfbFAcpvbGIaaaaaaaaaaaaaaaaaaawqajOaxIaNhajOaNoajOaNraIXajOaCUaaabIYcdVceRceRceRceRcetceKceTceVceWceXceKhXkapmaqOapmatFcmucJGatFcmwauscmxausausatFauRbgwbRAsdpaXpbcIaaabRpbTJbUVsVCbsIbfWbfWbgibgibgiifCbPAbgMbPBbPCbPJbPLbQKbNdcwwgGGbfWbQNbfWbQObfWbQNbfWbQObfWbQNfuEcLarTWbQSopdbQVopdwPSbalaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbgxbeRbeJbeJbeJbeJbeJbeJbeJbeJceIbeTbfdbfdbJybfdbfdbWfaZyaZyaZybWgbWhbWibWjbWkbWwbWEbWFbcfbjjbDNbGIaaaaaaaaaaaaaaaaaaawqajOaGiaNzaOIaJpaPfbCFaGiajOaCUaaabIYcdVcfacffcfacffcetcdVcdVasUcJvaeIaeIhXkaqSanEaqTatFatFcJIatFatFatFatFatFatFatFaYLbgwcJJbUXbVbcwycwzaaaaaacafcdpbRvbJvopdfuifuifuibJvwPScwAxojuAYbRCcwBqgObNEcwwvsOtuFnLVqHLonycwwcLbcwAcLccwwcLbbWKcLcwbucLbcwAcLccwwaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbdgbdgbdgbdgbdgbdgbdgbdgbGIbGIbGIbGIbdgbdgbdgbGIblcbXmaZybTpbJmaWgcsGaWhbaScdEaZyblocCGbcfbIPbGIbGIaaaaaaaaaaaaaaaaaaawqajOajObDwbDUbDWbEZbDwajOajOaCUaaabIYcdVcfocfocfocfpcfrcftcfuarBmkxaQxarNtjbarPanEarQarOarYcJKasiasvaqUcfvastasIaqUcfwbgwbsXbgwcfxbcIaaacwDaaabamsVCbsDaaaaaUaaaaaaaaaaaUaaacwAcwxcwFcwGcwBchOcwwcwwchSlRycLdeTZxcObUacLecLfeIhbhJcLhcLifgScLgcLjcalcLkcwwaWjaWjaWjaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbXPbXVbXVbXVbXVbXVbXVbYdbYPbZQaZybRebbmbbobQAcmNbbrbbsaZybGrcfzbGtbGAbdgaaUaaaaaaaaaaaaaaaaaaawqajObFfbFvbGgbGBbGDbPKcReajOaCUaaabIYcdVcfpcfAcfBcfCcfEcfFcdVaswcJwasDarFasxcphanEcpiasCawWcJLasiasNasGasIasIasIasMbapbdkcJMuwKbhsjMOjyujyucPzcPAcPBbwwcwIcwJcwKcwIcwKcwJcwIcwLcPCcwMcPDcwBcpNcpOcwwcpQftiftivcbhKCcMrcMocMocarcMocMoxKrcarkOGcMocLlctkcwwcwwcwwaWjaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGIcoSccNaZybawbawbawaZyaZyaZyaZyaZybIZcCGbJBbGEbdgaaUaaaaaaaaaaaaaaaaaaawqajOaPEbHpbIFaHqbJkbKxaZPajObbuaaabIYcdVcfCcfHcfHcfIcfJcfKcdVatbcJNasRasSasSasSaQTasSasSasScJOcJPcJQcJRcJScJTcJUcfLcJWcJXcJYbhmbmmbcIaaaaaaaaabamsVCbsDaaaaaUaaaaaaaaaaaUaaacwwcwwcwwbVEbVXbWGbWGcIscfMcfPcfTuVDcVOsRDhMZiAWtXViAWiAWnvniAWdVRqvBcLsprxcfVcJmcJnaWjaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdgbGIaXcccNbeJbZAaXebZCaXfaXgbJCbKRbZHbVIcCGblBbLgbGIaaUaaaaaaaaaaaaaaaaaaaOeaQabaWbLmbLzbkibLCbmvbmHaQaaQjaaabIYcdVcdVcfWcfWcdVcdVcgbcdVavlasRasRauCauDauNaybaTQauYavcasRasRavAawsclxcJZavwaqUbcIbcIbcIbcIbcIbcIaaaaaaaaabYlbZpcPEcbGcbGcbGcbGcbGcbGcbIcbLcbNcgecbTeKMcRgcJotyIcbUmEacggmqBsRDcMonAFfIwtZjcJucJucJujonxCycghcLsvxUcwwcwwcwwaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaceDbuBbjgbzbaXcceibfdcfQchUcjvbZJbZKbZFbRZbZHblocCHcCIbMGbGIbGIbGIaaaaaaaaaaaaaaaaQvajOaYZajObNebPpcRfajOaYZajOajOcjHbRpcgicglcgocgocgpcgucgwcdVaMaaweavEavHawXavKaxtavUazEawaaOQaweazhaqUawAcKabRdaqUbbFbbJbbJbbLaaUaaUaaUaaUaaUbamsVCcPFaaUaaUaaaaaaaaaaaUmITcwwcwwcwwcwwcwwjiZcMHcMJjXocLVcgxdpOcMecgzlcDwWHjmliAWhloiAWxjksHBcgAcLscLWcwwaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdgbGIaXcccNbjgbZAcjwaYcbZFbZFbZFbZFbZAaYHcCGblBbPRbGIaSVbGIaaUaaUaaUaaUaaUaaUajObeuajOajObPUbPVajObhtbmMajOaaaaaacgDcgRcgScgUchbchgchjchkcrvasSavQaxMaxQaxRaCZaynayoclAbevclBaOdaqUchlcKbazgaqUbbNbbFbbLbbNaaaaaaaaaaaaaaabamsVCcPFaaaaaUaaaaaaaaaaaUcJrbdRaaUaaUbhIbhIbhIbhIcLXcLmchnchptZCcaicaicaintCcVqcJHcJHcJHcaixkCchqcLsccGcwwaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbdgaXcccNbUtbZAcjwbZFcpucsHcjxcCJcCKcCLcCMblBbGEbGIbGIaRybqXbqXbqXbqXbqXbqXaRybeKaRybQbbQibQTaRybcYbcZbdiaaUaaUcdVchrchrchschtchsaXFchuaOEasSavQaxMbeHaAyaRGaFUbCbaLFcbJasSaOMaMzaNxcKcaNQaqUbbNbbNbbNbbNaaaaaaaaaaaaaaabamsVCcPFaaaaaUaaaaTxaaaaaUaaamITaaacakbhIbhIcLYcLZcMacMbeCychxqWYrdFfkxfkxnEXcMccMdcMecMecMgcMecMhcLscMicwwaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaabdgceEbdgaaaaaaaaaaaaaaUbdgaXcccNbaibqBckebaybaxbaybaybaEbZHaYHcCGbRgbRybRBbRWbSkbSrbSsbSsbSsbSsbStbSObTXbUibUjbUUbVqbVCbVDbVFbWmbWvbWvchychzchAchschtchBchDcdVaQcasSavQaxMaxQaOkaOlaOqayoaxMaOxasSaOCchEchFchGchIchKbbObbNbbNbbNaaaaaaaaaaaaaaabamfrbcPGaaabbTcmHbbTcppbbTaaUmITaaacamcancaocapcaqcMjcaschLchMrUlcMkcMlmNNhDzcMmcMncMocMocMqcMrcMqcMsiQYcwwaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbjgbdgaaUaaUaaUaaUaaUbdgaXcccNbaVbZSclubZUbZVbKwbaXbZSbZSbGIcCNbWHbSAbGIbgYaRybqXbqXbqXbqXbqXbqXaRybWIaRyaThbWJcRhaRybeCbTScjIaaUaaUchNchXchYchZciacibcidcdVclzasSavQaxMaZtaORaOVaOYbeiaxMaPcaPdaPeciecirciDciHchKbbLbbNbbNbbNbbVbbVbbVciIbbVbbXbvMbBLaaabbTcrhbbTcgjbbTaaUmITaaacakbhIbhIcMtcLZcMucMbcMvgDYcMwceUcMxcLocLpcMycMzcLqcMAcMBcMCcMDcMEcMFcwwaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbGIceFbGIbGIbGIbdgbdgbdgbGIaXcccNcKFbZScmPcnWbZXbZHbZHbZSbSBbTtcoMbWMbTwbTtcgCbGIaaUaaUaaUaaUaaUaaUbfhbWNbfhbfhbWPbfhbfhcgFcgGcgHaaaaaabWQcdVciYciZcjhcjscjucdVaMaavCbemaPhavIaPmavQaPOavVaPPbeqavCclCcjKcjLcjUcjXckmbcbbbObcbbbObbVbfNbggbgvbbVbbXbvWbBLbbVbbTbVxbbTcgkbbTaaUmITaaaaaaaaabhIcaubhIcMGcMHcMIjiZcfscMJcMJnBMoMBcMLcMJnBMcMNcMLcMLcMMcMNcMOcwwaaUaaUaaUbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbeJbeJbeJbeJbeJbeJbeJbeJaXccoZbbnbZSclwbbqccYbZHaaUbGIbTTbGIcprbZrcwWbGIbTTbGIaaaaaaaaaaaaaaacgIcgJcbjbfhbrbcbVcbYbfhbfhbfhcgNaaUaaUbWQcdVcktckuckwckyckzckAaQdaQeaQeaQkbeIaPmcmXaPOaQscrsaQeaQeaQCckmckBckCckFckmaaUbbVciIbclbbVbhkbgKbhkbbVbcnbvXbCmbhubbTbVwbbUcgjbbTaaUcJranranranranranranranranranrhlVcMPcxccxccfDmxWcLaaaUcKZaaUcMQcMRcMSaaUcMSaaUaaUbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbeJcisbbIbeJcoRbeJbeJbbKaXcblOcKGbZSbZZbcpcabbZHaaaaaabTWbutcpxcdebTYbutbTZaaaaaaaaaaaaaaaaaacgNbyecdfcdhbzNbzRcdnbBRbBSbEocgOaZBaZBcdockJclYcmfcmgcmEcmGcmYcksckxasRasSasSbBoaRpbCWasSasSasRaRRaRVcnhcnocnrcnsckmckmckmbjIbAabhkbhkbhkbhkbhkcnvbwdbwgbhrbbTbVybcVbcjbbTbbTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaXxcKXbZRcKYaXxcKXbZRcKYaXxcMTbZRcMTaXxaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbGIbGIbGIbGIbdgbdgbdgbGIbGIbGIbGIbZSbZHbZHbZHbZHaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaacgNcmIcnybzNbzNcvBcpfcqfcqhcqmcgNaaaaaaaPgcdVcnxcnKcofcokcoTcdVcrvcqPaSKaSKaSLaTmbkJbvYbwJcpjcrwcpjcJlckmcpacpkcpocpAcpFciebkBbkMbwibwtbwGbxebwtbxLbxUbzCbbTbbTbVwcrdcgjbdTbbTaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaXxcLtcaycLuaXxcLvcaFcLwaXxcLxcaJcLyaXxaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcrkbTYbutbTZaaaaaaaaaaaaaaaaaacgNbXabXkbYTbYUbOzbYUbYXbXkbZacgNaaaaaaaPgcdVcpKcnKcofcokcpLcdVcrxcrlaSraTWaTZaUbaUfasBbfnaUraUtaSrckockmcpRcpScpTcpUcpVckmbmPbjablNbjabjabjabBicpWbBTboCbdZbkmcwcbejbenbeXbbTbbTbbTbffbfCbfCbfCbfCbffaaUaaUaaUaaUaaUaXxbkZcaKbkZaXxblLcaLblLaXxcpXbpqblMaXxaaUaaUaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaacgNbfhcgLbYScgMcwdcgMbYScvCbfhcgNaaaaaacetcdVcdVcdVcpYcdVcpZcdVaeIcsQaeIaVBaWVbARaeIbARaXhbmTbpKaeIaeIckmcqacqccqncqocqpcqqbKjbKBbKXbLnbLvbLAbLObLPbLQbLRbrRbrVbuzbejbejbeUbfEbgkbEkbgQbfbbgSbgUbUSbfCaaaaaaaaaaaaaaaaXxbkZcaMbkZaXxblLcaNblLaXxblMcaSblMaXxaaaaaUaaUbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaaaPgbfhcvDcvEbYYbYZbYYcvEcvDbfhaPgaaaaaabpLbpNbBEbBOcwqbBObBObBObBOcqsbxzcqucqvbnfbnpbnqcqwcqxcqybQqbpvckmckmcqAcqCcqDcqEckmbbVbclciIbbVbbVbbVbbVbuHbLTbTxbbTcPHbAubfscqFbeUbihbbTbfDbffcmWbGLcngbAvbffaaUaaUaaUaaUaaUaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaafaawaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcwUbTYbutbTZaaaaaaaaaaaaaaaaaaaPgbfhcvFbYSbZbbZcbRxbYScvFbfhaPgaaaaaabBObCabCabUBcwVbPvcxdbSmbSncqGbwPbwRbwVbwRcmObEWbSxbwPbEWcqIcqJcqKckmcqLcqMcqOcrbcrmbfGbfGbfGbfGbfGbfGbTVbBzbQhbUbbUfbfUbCxbfYbfZbeUbkbbkdbVdbgQbicbipbCHbPWbfCaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaawaafbgDaafaawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcwbcwbcwbcybcybcybcybcyaaUbimaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaUkaUkaUkaUkbmEbUqcrVcATcwXbUqbUrbUqaaaaaaaaaaaaaaacgPcgJcgJcgJcgJcgQcgJcgJcgJcgJcgKaaUaaUbBObSobSpbSqcAUcBdcBdcBkcBlcrtcBncBxcBycBxcfUbQFbQGbQHbQFbQMcdgcrucsqcsscstckmckmckmbgebgebbVbbVbbVciJbgfbPYbLTbUhbbTbFDbPZbejbejbeUbkjbbTbkXbffcbkctzbRucBzbffaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbalbalbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaabnjaawacpacpacpaawbnjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaUZbdebeebdfbdtbecbedbcyaaUaaUaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaUkaTVaUiaUiaUiaTVaTVaTVaTVaUiaTVaTVaUkbnlbwKbwMbUubUvcrYcBAcqYbUvbUzbUqaaUaaUaaUaaUaaUaaUaaUaaUbfhbfhbZebfhbfhaaUaaUaaUaaaaaabBObSvbSwbVfcfhcficfjcfkbSncdmcBHcBIcBJcCRcmmcahcbdcdjcdkcdlcdscszckmckmckmckmbglbgnbgBbgebgHbgIbjfbUkbTkbUdbLTbUmbbTbgObUlblabABbLubkYceabUTbfCbfCbfCbUKbUMbfCbgTbgVbgTbgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaUaaaaaaaaaaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaawaawacpbefbehbFracpaawaawaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbcwbcwbcwmBPctjbekboJbcyaaaaaUaaUaaabgWbgWbgWbgXbgXbgXbgWbgWbgWaUoaUpaUuaUuaVhaTVaVkaVqciCaYfbHHaUkbAzbAFbANaUkbUqcrZcCTbUEbUqbUqbUqaaaaaaaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaaaTxaaaaaabBOcflcflcfmcoscfmcflcflcflctlctEctGcdycdzcricdAcdBcdCbmQcducdvcdwbUNbUObUGbjZbglbhnbhobgebhpbDlbkhbUHbURcdxcdFbUZbbTcqtbVcbVhbVkbVrbVsbVGbXwbYMbYNcbOccuccXbijbhZbhZbilbgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaabalbalbalaaUbalbalbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaafbHZbJMcrGbKHcrHacpcrGcrHaaaaaabbvaaaaaaaaabbvbbvaaaaaaaaabbvaaaaaaaaabbvbbvaaabbvaaaaaabbvaaabbvaaaaaaaaaaaaaaaaaaaaabbvbbvaaaaaabbvbbvaaaaaaaaaaaabYgcrIcrJbUFblHfuRbcyaaaaaaaaUaaUbgWbincfgbAwbiBcsFbiGbiIbgWaVWaWmcnuaWmbiPaTVbfubfxbzzbeoaWpcnmaWraXmaXsaXtbaLcsJcCUbaObaQbbhaaaaaaaaaaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaactGctJctKctGctXcuucuwcuFcuHcuIcuJcuKcuLcuMctGcuNcPIcdHcPJbiLbiQbiRcdNbiQbiQbiVcdRcfnblqbjbcuObjcbgebjdcuPblubVgcfOcgabVlbVmbUPbUQctectfctgcthcticgnchdbjobgTcgEchechfbhKbhKbhKbjqbjrbgTbgTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaawaawacpcrKcrLcrMacpaawaawaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbcybcybcybcyblTbOvbnmbzXbcybcwbcwbcybcwbgWbjsbjtbiAbiAcsNcvecqBcslcDHcDHcDIcDHcDHbAccsucuQcvMcuQczfczzcDNcDNcDNcDKcDOcDPcCYcDRcuRcuRcuRcuRcuRaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaactGcuScuTctGcuUcuVcuVcvacvbcuVcvccuVcvdcvgcvhcvicdJcdKcdLbkDcjYbjyciKbXfbiQcKgciLconbCzbjbbhnbjKbgebZibjMciIbVncjacgqbZdcbMbbTcvjcvkbkccjdcjecjecjeckibkkbgTbklckrckObknbknbkpbkqbkrbksbktaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaabnjaawacpacpacpaawbnjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbdcbfpbfobqJbfobwNbAlbgCbdfbhybiKbiTbgWbgWbepbiAcDSbiAbkyczAcAQbbSbcBcDTbOtbcCbrwcAScpPctscwecoIaUkbmGbmGbmGaXtbblbUIcCUbFccvlcvmcvncvpcuRcuRcuRcuRcuRcuRaRvaaUbfhcjrbfhaaUaWRctGctGcvqcuTcvrcwrcwEcuVcypcvdcyvcyzcyzcApcBacBmcBBcdMcPucmvcopcotcouctdbkGbiQcLncLrcoobCzbkIbhnbkIbgeboGccWccZcfdcjacgqcfXcfYbbTcDgcDmbcVctmcsvctoblbcttctxctActBctCckOcnwbknbhKbldbleblgblhcqXaaaaaaaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaawaafbLBaafaawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbyccwYblGbBNblIbJYboLbdfbdfbdfbdfbdfbnkbgWbVebiAcDUbiAbiAcBtbgWaUkaTVaTVaTVaTVaTVcDVaTVaTVaTVaTVaUkaUkaUkaUkbwmbbAbUIcCUbFccvlcDncDocFYcFZcGacGfcGgcGhcHZaaaaaUbrsbrLbrsaaUaaacIhcIicIqcuTctGcIrcuVcuVcuVcvdcuVcuVcuVcvdcJkcJycvicdJcdrcdLbkDbltcsdcwCcwPbiQcLzcwQcwRcgccicciccsmcwScxecgscgscgsbojbzwciPcJzcJVcKdcvkbcVblQbcVbcVblRblSblVbgVblWbVockObknbknblZbiwxxPbgTbgTaaaaaaaaaaaaaaaaaaaaaabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaafaawaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbdcbODbfobKIbfobLEbAGboRbpMbpRbpRbpRbqIbmbbVpbmdcDWcsLbiAcsxbgWbVLbVMbQZbIgbInbVMcDXbVRbVMbVSbVTbWabWrbWcbWbbWabbWbVBcCZcDacKecKfcLBcLEcLJcuRcLKcLOcLOcLQaaaaaUbrsbrLbrsaaUaaactJcLRcMUcMVctGcMWcMXcMYcMZcNacNbcNccNdcNecNfcNgcuNcdObqwcdQbiLcsebyrbmwctnbiQbmzbPxbPycxicxjcDicxkcxlcxmcxncxocxpcxqcxrcjBcjCbbTbenctpbnhbbwbbybcVbnibnnbnybgVcxscxtcxubhKbhKbhKbldbnCcgmblhaaaaaaaaaaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUbZWbcybcybcybOrbWSbOEcnTbDLbFpbJwbJTbwDbHFbgWcsfcsIcDYcDjcDjcDvcEbcEccEdcEdcEebINcEfcEgcEhcEfcEicEjcEkcElbWocEmcEncEocEpcDQcErcNhcNicNjcNkcNlcNmcNncuRcuRcuRbbhbbhbcTbVWbcTbbhbbhctGctGcvrcNoctGctGctGctGcvrcNpcNqcNrcNscNtcNucNscNvcPKcdScPLboabobbobbobbobbocbiVbodbVYcAAbiVbiVbiVbiVbgfbgfbgfckqcxvcxwcgtbhrbbTborctqbnhbcibckbcmbcAbcAbdKbgTbosbVZchfbovbowboBboBboDboEboFaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaabcwbJYboQboQbvjbLcbLlbLxbDMbgWbgWbgWbgWcDycDybgWbgWbXrbWscsOcEsbIObWxbWxbWybWzcEtbWAbWabWBbWCbWLbWRbblbUIcEqbPQcNwcvlcvlcuRcuRcuRcuRcuRcvLbdCbdDbdFbdDbVWcIvcIwcIxcIycIycIwcIzcIycIAbdGbdHbdGberbeWbyTbeYbeZbSycIBbhTbbYbUsbUDbhTcjzbhYbiabibbzVcdPbeWbWncAIbiebdHcvNbdIcICbBUbgfbgfbgfcxxbclckvbbTbcVbkXbcVbcibdMbdVbdMbdMbmabgVbgVbgVcxybgVbgTbgVbgVbgTbgTbgTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUbcwcKIcKJcKJcKKcKLcKMcKNbOubOvjyubOwbOxbPlbWTbWUbWVbWWbWscEucEvbIQaabbSEbufbSEcEwbSGbSEbSEbSEbSEbSHcoBcqecIDcIEcIFcIFcIFcIFcIGcIHcIFcIFcIIcIJcIKcILcIMcINcIObjmbjmbjmbjmbjmbWObjWcIPcIMcIMcIMcIQcIMcIRcIMcIScITcIMcIMcIMcIUcIVcIWbjmbXWbXXbXXbYmbXXbXXbYOcAZbZlbWObjmcNxbjmbnNbezbeBbrQcxzbfcbdVbrQbfectrbcAbfPbdMbdMbdMbdMbfRboMboNboIcxAboIboPboIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUcNycNzcNzcNzcNzcNyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaaaaaaaUaaabcwcbPbAPbAPbAUbAVbQXbWtbWubWSbXgbcybcybXxbXhbXlbXhbXhbXhbXhcExbIRbXockRbJubSKcEybSLbSMbSNbYVbSPbSGbblcqgbZmcEzccpccpccpccpccwcgvcgBcgBcgBcgBcgBciFciWcjVcgBcgBcgBcgBcmncgBcIXcKOcIYcoacoicgBcgBcgBcojcgBcozcoDbXXbXXbZlcoLcoNcIZcIMcJacIMcIMcJbcIMcIMcJccJdcqQcqRbXXbXXbXXcrccxBcxCcxCcxDbgsbgtbgtbgtbZwbgZcqjbhbcqkcNAbdMbhdboSboTboUcxEboWboYboIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaacNzcNBcNBcNBcNBcNzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbbcybcybcybcybRibRjbvybvybRkbcybXSbRmbcwbXTbYabXybXAbXBbXJbXKcEAbIQbXQbSEbSQbSRcEBbSSbSTbSUcECcEDcijcEFcEGcEHcEIbqobqrcpHcJecsMcoEbqrbqxbqrbqrbqraYGbqCbdubTvbYWbbhbbhbWZbbhbZhbZhcJfcwHbZhcoFbqNbqVbyTbtlbtybubbtybtycwOcykcylcymcymcynbtybtybzVbqEbqDbXbcBpbqDbqEbqDbqDbqDbuwbhfbgqbgqcxFcxGcxCcxHcxIcxJcxKcxLbhMbhPbhbbhPbhQccvbpdctycxMbpfbpkckKboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaacNzcNBcNBcNBcNBcNzaaaaaaaaaaaaaaaaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbcbghFacsRcbncbucbCchRbWlbSlbZfbZgbZjbZBcvHbYbbYjbYsbYubYwbWabXUbXUbXUbWacEJbIQbXZbSGbSYbSLcEKbUJbSZbTacELbTbbSGbuDbdvbdvbXibuFbbhbbhbbhcyobxMbbhbbhbbhbbhbcTbdubdubdubcTbcTbbhbpmbXjcoCbZhbZkcJgcyqbZhbcTbcTbcTbzYbBlbBlbIobBlbzrcyrcysbzIbzUbIpbQRbIpbIpbUnbcTbcTbcTccVcBrcBrcBscBrcBCaRYaRYcjAbhXbhXbifbhXcxNctvbezctwbirbisbivciEbivbplboSbppbpfcxObpubpfckLboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUcNycNycNBcNBcNBcNBcNycNyaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbchTcsRcsRcsRcsRcnOcnVbZWbRibZYcaacaccadbcycaebRqbcwbYAbYLbYcbpzbpzbpzbYccEMbIRbYibTcbTdbTebSSbSSbTfbaubvnbCXbFBbFCbqrbqrbgabpAbpBbqsbrJbBsbDdbDmbPwbPwbPwbPwbiUbXtbXubQEbQEbQEbQEbXvbpObZhbZncNCcywbZhaaUaaUaaUaaUaaUaaUaaUaaUbyTcyxbaNbHnbzVaaUaaUaaUaaUaaUaaUaaUbpPcItaRYaSTaTcbcubcvbcDaRYbiybizbiJcnAbiJcxPbiMbiZbjlbiZbjnciRcmTcDzbjnboIbqybpfcNDbpfbpYckMboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUcNycNEcNFcNGcNGcNGcNHcNyaaUaaUcNIaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbcpDcsRcGJgVVcGFcsRcGGbcybcybcybcybcybcybcybcybcybcybYAbZEbXUaaaaaaaaabXUcEJbIQbYkbSEbTjbTMbTlbSLbTmbTnbSCbSCbSCbqcbqecyycaQbqebqmbXzbtvblUbXtbFEbqzbqzbqzbqzbrFcsibqzbqzbsVbsVbsVbsVbpEbZhbZqbZocJhbZhaaaaaaaaaaaaaaaaaUcNKbImcfccyrbaNbzIcuobIxcNLaaUaaaaaaaaaaaUbpPcIubcEbcFbdLcsSbdLbcFaRYbjNbjPbjQcsgbjQcxQbjSbiZbGCcjtbjnbjTcnBcDAbjnbqZcxRcxSbpfctybrdboIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaacNzcNMcNNcNNcNNcNOcNPcNzaaacNQcNIabMaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaacbbcGHcsRdYmcGKcGLcsRcGMcbbaEFaSjaTEaTXaVFbSJbfrbigbYrbZGbZEbXUaaUaaUaaUbXUcEJbISbWabSEbSEbSEbSEbSCbSCbSCbSCbrkbhxbrmbrqcyAbXCceYbqmbqmbqmbqzbrHbIfbqzbqqbrKbsLbsNbsPbsQbqzbsGbtsbujbulbpEbZhbZhbZsbZhbZhaaaaaaaaaaaaaaaaaUaaUaaUbcTcyrbaNbzIbcTaaUaaUaaUaaaaaaaaaaaUbpPbMqaRYckcbiEbiHbkfbkzaRYbkOcJiccFbtWctucxUbkSbiZbpQbXEbXFbXGcshcDDbjncxTcxVbpYbrSbrSbrTboIaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUaaacNzcNOcNRcNScNTcNOcNUcNzaaUcNIcNIcNIaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcGPcGQcGPcbbbkobkoaTEaVFcGRcGScGTccecgVcmVcsPbWabXUbXUbXUbWacEJbIQbWaaaUaaUaaUbrUbrZbsabRHbRJbspbqvbstbstbstbvKbwfbywbyDbzJbADbAEbItbzAbzGbCfbzGbCgbACbCYbqzbHDbHGbpDbpDbpEbsVcEEbXNbsYbsZaaaaaaaaUblpbmebmebmeblpbmfcyDcoqcorbnOblpbmebmebmeblpaaUaaUbpPbJlaRYbnQbpVbnQbWYbnQaRYbiZbiZbiZbiZbiZcxWcpJbiZbpQbLZbjnclVcHVbnXbjnbMHcxVbtdbteboIboIboIcNWcNXaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcNycNycNYcNycNycNZcNycNyaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcGVcGWcGVcbbbkocsTaTEaVFcGXcGYbJzbJAcGicGjcGkbJFbKsaJVbKsbKtbKubIQbXUaaUaaaaaUbrUbtfbuAbthbthbthbtibstbstcyEbHIbHJbstbHJbstbIibILbJdbRTbFZbTCbFGbHCbHCbHEbJfbHDbQpbXLbsVbpEbzebpDbJpbtxbsZaaaaaaaaUbmebnYbogbombmeboncyJboxboybozbmebpibogbpjbmeaaUaaUbpPbLKbtzbtAbLZbtBbtCbtDbtzbXYbtzbtzbUWbtzcxXbtFbtzcOabLZbjnbjTcPMbjnbjnbtNcxVbtdcdTbtSbtScrecNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcObcNXcNXcNXcOccNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcHamImcGVcbbbkobkoaTEaVFcHbbuCbTobTqcGlcGmcGnbKvbKvbrzbLGbLUbQvbQPbXUaaUaaaaaUbrUbtUbJKcOdbTBbthbtYbstbVPcyKbYKcbrcbrcbscbKbBPcdXbXqciQckpckDclccmBbIMbqzbqzbMjbMjbsVbsVbpEbpDcmLbJpbumbsZaaUaaUaaUbmebpTbpTbpTbmebpUcyJboxboybqpbmebpTbpTbpTbmeaaUaaUbpPbYecOebMQbNtbNVbPmbPmbPnbPmbPmbPmbRrbPmcPNcxYcxYcPObYhbjncjfbjnbjnbRtbuycjbbDyceZccTccUcowcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOgcNXcNXcNXcNXcNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcbbbTrbTsbTGaVFcHccHdcagbigcGobYvcctbYvbYvbYvbYvbRMbRNcfZbXUaaUaaaaaUbrUceccegcegcekcegcodcsjcKhbuJbuKcDEcDFbuSbuSbuSbuScmKcolcomcpIbqzbqzbqzbqzcajcaHcbmcyOcyPcyQcyRcyScyTcyUbxjbxjbxjblpblpbqLbqMbqUbrvbrNcyVcyWcyXcyYcyZczaczbczcblpblpbxwcrobHLbtBbtabtabtabtabxHbtEbxHclWbxHbxHbxHclXbZtbZtcyabYnbjnbtHbtIbjnbxObRwcxVbxRbteboIboIboIcNXcNXcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOicOjcOjcOjcOjcOjcOkcOlaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbxTbJZbxVbKabxTbRhaVFaVFaVFaVFcHecHfcbcbigcGpbYvbYobYpbYqcgrbYvbROcEsbWXbXUaaUaaaaaUcdZbrUbqTbrlcsKbrUcdZbstbtjbstbstcDGcDJcDZbAJcaRbuScwscxhcyucyFbqzcyGcyNbMjcdYchVbyQbyNbyQbyQbyQbyQbPsczdbyUbyUbyUbtKbtLbtLbtLbtLbtLbtLczecpybtObtLbtLbtLbtLczebtLcmybzabzabYtbtBbtabtQbzdbtVbzcbzkbFFbPMbSfbzjbxHbZubZvbZtcyabYnbjnbtXbucbjnbzsbRzcybcxZbzubzubzvcRacOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOncOjcOjcOjcOjcOocOpaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbxTcbycOqcGqcGrbTOcGtcGscGscHgcHhcHicaIbTNcGuciockkbYxcPvbYycwbbRRbRSbWXbXUaaUaaaaaUbrUcedceecefcKkbSXbssbstbtjbstbstcEacKCczgczhczibuSczvczBczFczMbqzczPczWcAccAocDLbHKbzKbzScCOcrqbyQbYCczjczkczkczkczlczmcznczmczoczpczqczrbPDbPEbPFbPGbPHbPIczsbPHcmzbMQbMQbYDbtAbtabxNcehcfGbBgcrpcsUbzdbzdbzWbxHcmMbYnbZxcyabYEbjnckEcmebjnbzZcmJcycboIboIboIboIboIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcOrcOjcOjcOscOtcOucOvcOpaaaaTdaaaabpaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAbbAfbAgbMxcGvbMybxTbVvaVFaVFaVFbTPbTQbuCbTobigcGpcctbYFcPwbYHcrfbYvcytcENckfbWaaaUaaUaaUbrUcejcefcnZcKlcelcemcoVbAobAqbKibuScDhcztczucKjbuScmUcnkcDMcGIbqzbBQcFXcovcdYcoxcGUczwczwczxcspbyQbPNblpblpblpblpblpbzqczybuibPObAWbmebmebAYbmebmebBabBcbUxczybBeblpblpblpblpblpbtabDhbzdbtVcoWbBfbBgbBgbQDbBxbxHbYnbYnbZtcyacnibjnbjnbjnbjnbBybRGcydbBAcJjbBIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOlcOpcOpcOpcOpcOpcOpcOlaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbBJbxTcGwbxTbxTbTRbTRcavcawcawcawcaxcaxcaxcGxcctcctcazbYvbYvbuabDTcEObtnbIkbIkbIkbIkbIkbChcocbRIcKmbChbRIbChcuWcuXbPPbuScPRcPScPTbuSbuScrgbqzcrncHWbqzcKibRIbMjcupcvubyQbDabDbczCbPSbyQbPNblpcoyctHcqTcqUbuibuicOwbPTbBmbBmbBmbBwbBmbBmbBmbBMbUxbuibuicqUcnfctHcrUblpbtabHMbHMbtabxHbDfbDgbDhbxHbxHbxHbZtbZybZtcyecyfcygcyfcyfcyhcyicyjbFgbFhbztbFiboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbFmcnbbFocdDbFqcrNbFsbFtcGybzybFlaaUcavcavcaAcaBcaCbWdcaEcpgcGzbOObFubsUbFxbIebJEbKdbIcbIhbIdbIjcpwbJDbIkbRLbTzbTAcKncEQcERcEScETbFJbQabFXbFJczDczEbFYcnzcvRcKHcxfcxgcNJcNVcyBcyCcyHcyIbHKcoebBuczGbQcbyQbPNbmecddcddcddbBZclZbuibuibQdbuibuibuibCAccxccxccxccxccKbuicmablpcddcddcddblpaaaaaaaaaaaabxHbHMbHMbHMbxHaaUaaUbHNbHNbHNbHNcgybGFbHNbHNboIboIcmbbHRboIboKboKboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbHSbHSbFlbHTbHUbHVbHWbHYcrObIabIbcGybzybFlaaUcavcHjcHkcHlcHkcHmcHncHocHpcHqbKebRVbSdbSebSdbTibRXbRYbKNbKObKPbKQbIkbIsbTEbVOcKobXncEUcEVcEWcEXcEYcEZcFacFbcFccEXcEZcFdcFecFfcFfcAmcFfcFhcFfcFicyLbIubIvcrXbIwbQjbyQbPNbxjaYpcscaYpbmebuobuibuibQdbuibuibuicqlbuibuibuibuicOwbuibHtbmeaYpcscaYpblpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNbHzbHPbIybIzbIAcnSbHNaaUboKbHQbHRboKaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbSjbIEbZzbFtbOFbYzbIGbIHbIIbIJcsYcGybIKbFlaaUcavcqScaPcaPcaPcbvcskcbwcHrcHsbsMbQQbThbtobThcaOcRnbTDbTDbTDcRobYBccBccCccDcfNbYIbYJbShcgfckaclvcqWbAscFkbElbElbIUbJabElcFkbElbJbcAtbJcbJebtpbMFcyMbJhbJiczIczJbQobKkcAubxjaaaaaaaaabmebuobuibuibQrbQsctVbJqbJqbJqcrjbJRbuibuibuibHtbmeaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNcknbHNbHNcmcbIBbKZbHNaaaboKbHQbHRboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbJrbJrbFlbJsbJtcPUcPVcGAcGBcGCcGDcGEbJxbFlaaUcavcavcaTcaTcaTcaUcavbXdcGzcHtbsMccdbtocsZcqzckbcvSczHcmScrycrAbTgcFWcGNcGOcPxcPPbSabChcFjbQkbWDbJgayYcFlbJnaJDaJEaKZaMmcFmaOFbJJcAvbJLcRbbJNbNFbJObyQbDabBubBubJPbyQcChbxjaaaaaaaaabmebmebuibuibJobNHblpbmebNIbmeblpbNJbJRbuibuibmebmeaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKbNLcnLbNLbJQceJbNObNPbHNaaaboKbHQbJUboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbJVbJWcPWcPXbJXbFwbXObZDbKbbKcbxTcavcavcavcaXcaYcoGcbacavcavcHucHvbsMcsVbThbtobThcuZcmRbKfccmccmcdWbIkbIkcFnbTEckdbIqbScbChcFobQkcqbbQlbaTcFpbQmbbxbbzbbBbbCcFqbbEbKhcFgcHOcHPcHOcHQcKpcHRczwcKqbKmbKnbyQcChbxjaaaaaaaaaaaabmebmebuibNQbmebmeaaaaaaaaabmebmebNRbuibmebmeaaaaaaaaaaaaaaUbNSbYQbYQbYQbYQcnMbYQbYQbYQbYQbYQcnMcnNaaUbJQbJQbHNbHNbHNaaaboKbHQbHRbKoaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcPYcPZbKqbxTbxTbxTbxTbxTbxTcavcavccLcaXcaXcaXcnCcavcavcHwcaGcuYcvtcvQcEPcRicRjcRpcRlcoHcOxcOycOzcGbcGccGdcGecqZbSgbShcFrbQubKybYGbaTcFpcbfbbZbjxblvblwcFscoXbKzbKzbKzbKAbKzbKzcHSbKCbyQcHTbyQbyQbyQcChbxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUbNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbOkaaUaaaaaaaaaaaaaaaaaaboKbHQbHRbKDcgWaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQbcQccQdcQecQfbKMbKMctabxTcavcbecaXcaXcaXcHxcHycHzcHAcHBcHCbIkbZTcrWcRqcumcFVcRkcRrbJHcOAcOBcOCbRIbMjcvTbMjbMjbMjbMjcFtcFucFvcFwcFxcFybopboqbotczKblwcFzbbEbKSbKTbKUbKVbKWbKTcHUbKYcPQcPycHXcHYcODcIabxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaaaaaaaaaaaaaaboKbLabLbboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTcaVbLdbKMcQgbLfcQhcQibLibLjcQjbKMbKMcaZbxTcavcblcaXcbhcaXcHDcHEcHFcHGcHHcHIbIkbIkcebcebcebcebcebbIkbIkcOEcOFcOGcOHbMjcFAbLIbLWcFBcFCcFDcFEbJIbpabpbbbtbpebpgbotbphblwbqtbbEbLqbLrbKTbLsbLtbLrcIbbKYcIccIdcKPcyScIecIfbxjaaaaaaaaaaaaaaabmebNWbNXbmeaaUaaaaaaaaaaaUbmebNYbNZbmeaaaaaaaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKaaUbOkaaUbNKbNKbNKbNKbNKaaUboIboKboKboIaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQlcQmcQnbLickNcQobKFbKFbLybxTcavcbqcaXcaXcaXcHJcbtcaXcavcHKcHLcbBaaUaaUaaUaaUaaUaaUaaUcOIcOJcOKcOLbRIbMjckhckjcFFcFGcFHcFIcFJbJIbQnbqObqPbQzbpgbjxbqRblwblxbqSbKzbKTcIgczLcsobLtcvvbKYcIcbLDcOMcOMcONcOOcOMaaUaaUaaUaaUaaUbmebOabOabObaaUaaaaaaaaaaaUbObbOabOabmeaaUaaUaaUaaUaaUaaUbNSbYQbYQbYQbYQcnMbYQbYQbYQbYQbYQcnMcnPcnQbYRbYRbYRbYRbOdaaUaaUaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQhcQibLFbxTbxTbxTbxTbxTbxTcavcavctbcaXcaXcaXcpecavcavcHMcHNcbBaaUaaaaaaaaaaaaaaaaaacOIcOPcOIcOLbRIcfbcFKcFLcFMcFNbChcFObQLbLLbQCbrubrObXDbAybAHbAMbATbBnbQybLMbLNcIjcIkcIlcImcIncIocIpcoAcOMcOQcORcOScOMaaUaaaaaaaaaaaabmebOebOebmebmeaaaaaaaaabmebmebOebOebmeaaaaaaaaaaaaaaaaaabNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUcnRaaUbNUbNUbNUbNUbNUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQrcQfbKMbKMbKMbxTcavcavcavcbxctIcbzcavcavcbEckPckQcbBaaUaaaaaaaaaaaaaaaaaacOIcOTcOIcOUbRIcFPcFQcnXcnYcvwbChcFRcFSbMacmZcoYbQBcnabQJcRmcvxcezceAceBbKzbMbbMcbMdbMebMfbMgbKzbxjbxjcOMcOVcOWcOXcOYaaUaaaaaaaaaaaabmebOibOgbOhbmeaaaaaaaaabmebOibOgbOhbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTclfbLdbKMcQsbLfcQhcQtbMibLjcQubKMbLdcmQbxTaaUcavcavcavcavcavcavcavcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUbChbChbChbChbChbRIcpzctDcFTctFcpzcpzctDcvocpzcpzbMkbMlbMlbMnbKzbKzbKzbKzbKzbKzbKzbKzaaUaaUcOMcOZcPacPbcOYaaaaaaaaaaaaaaabOncndbuicnebmeaaaaaaaaabmebOjbuicncbOnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQvcQhcQibLickNcQobKFbKFbLybxTaaUaaUcavcavcavcavcavaaUcbEckTckUcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlbMocFUcoJcvsbMrbMscvObMucvsbMwbMvbMwbMvbMwbMvbMvbMlaaUaaUaaUaaUaaUaaacOMcOMcOMcOYcOYaaaaaaaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOqaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQwcQibLibxTbxTbxTbxTbxTbxTaaaaaaaaaaaaaaaaaaaaaaaUcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlcobbNgcpbcwgcwhbMAcwibMCcwjbMDbMvbMvbMvbMvbMwbMEbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOobOpbmebOpbmeaaaaaaaaabmebOpbmebOpbOoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQxcQfbKMbKMbKMbxTaaaaaaaaaaaaaaaaaaaaaaaUcbEckVckWcbBaaUaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUcpzcpzcpzcpzcpzbNhcpzcpzcwlcwmcwncwocwpbMvbMwbNibMLbMvbMvbMvbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTctLbKMbKMcQybLfcQzcQAbLibLjcQBbKMcnDctMbxTaaaaaaaaaaaaaaaaaaaaUcbBcbEcRccRdcbEcbBaaUaaUaaUaaUaaUaaaabpaaaaTdaaacpzcpzcpzcpzcvUbMNbMObMPbNjbMRbMlbNmbMTcwubMUcwTbMvbMvbMvbMvbMvbMVbMvbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQCcQDcQEbLickNcQobKFbKFbLybxTaaUaaUaaUaaUaaUaaUcbBcbBcleclgcsXctWcbBcbBaaUaaaaaaaaUaaUaaUaaUaaUaaUcpzbNrbNvcpzctObMJbMJbMJbNwbNxbNybNzbNGcABbNccpzcvscpzcoKbMvbMlbMlbMlbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTcjPcbFcvVbxTbxTbxTbxTbxTbxTcbBcbBcbBcbBcbBcbBcbEcnjcsWctcctPcbDctNcbEaaUaaaaaaaaaaaaaaUaaaaaUaaacpzbQUcACcADcAEcAGcAHcAKcPccBDcBGcBTcCacCccCgcCicCjcucbMvbMvbMlaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabAbctQbxTbOscvzctTctRcnlckSbOyctUbOAcuectScvGctYcKrcKrcKrcKrcKscKtcKucKvcuacukctZclhcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcuvcCkcClbNsbMJcvybMJcCmcLAcpzcpzcCocCrcCrcCrcCucpzbNubMLbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaacKwcKxcKycKzcKAcKBcQFclacQGclackXclbcvXcudcvYcvAcubcufcubcubcugcuhcuicujcvWculctZclhcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcLCcCvcCwcLFcLGcLHcLIcCxcCycCzcCDcLLcLDcLDcLMcLNcvsbMlbMlbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaclicljbxTbOGbOHbOIcQHbOKcQIbOMbONbOGbxTcljbxTcbBcbBcbBcbBcbBcbBcbEclhcuqcurcurcldctNcbEaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcCQcCScpzbNAbNBbNCbNDcDbcLPcpzcDccDdcuvcuvcvfcLScClaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTclkbxTbOPcQJcQKcQLcQMcQNcQOcQPbOPbxTcllbxTaaUaaUaaUaaUaaUaaUcbBcbBcusclhclhcuscbBcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcwTcpzcpzcpzcpzctDcDecDfcLTcpzcpzcwgcCrcCrcCrcCrcCuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTcljbxTbxTbxTbOTbKMbKMbKMbOUbxTbxTbxTcljbxTaaUaaaaaaaaaaaaaaaaaUcbBcbEcbBcbBcbEcbBaaUaaUaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcLUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaTxaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclmbxTbOWbKMbKMbKMbKMbKMbKMbKMbOXbxTclmaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaTxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPdabMcPeaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbOZbKMbKMbKMbPabKMbKMbKMbPbbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMcPgaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPdabRcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbPcbKMbKMbKMbKMbKMbKMbKMbPdbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabRcPiaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcPdabMcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbPebKMbPfbPgcunbPibPjbKMbPkbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMcPjcPkcPkaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPlcPmcPnabRcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclpbxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbxTclpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMabRabRabMaRvaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabMabMcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaclqclrclsclsclsclsclsclsclsclsclsclrcltaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPocPocPocPocPpaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPqcPqcPqcPqcPhabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
"}
From af106b7628930ccd2d6d157bee244baebb8c090a Mon Sep 17 00:00:00 2001
From: kappa-sama <44128284+kappa-sama@users.noreply.github.com>
Date: Thu, 9 Jul 2020 16:12:07 -0500
Subject: [PATCH 29/51] 10
---
code/modules/events/wisdomcow.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/events/wisdomcow.dm b/code/modules/events/wisdomcow.dm
index 4a50ccb306..553dd8f309 100644
--- a/code/modules/events/wisdomcow.dm
+++ b/code/modules/events/wisdomcow.dm
@@ -2,7 +2,7 @@
name = "Wisdom cow"
typepath = /datum/round_event/wisdomcow
max_occurrences = 1
- weight = 20
+ weight = 10
/datum/round_event/wisdomcow/announce(fake)
priority_announce("A wise cow has been spotted in the area. Be sure to ask for her advice.", "Nanotrasen Cow Ranching Agency")
From a798061f71bfa60b7e035608a6d93fbd38e246dd Mon Sep 17 00:00:00 2001
From: kappa-sama <44128284+kappa-sama@users.noreply.github.com>
Date: Thu, 9 Jul 2020 16:14:38 -0500
Subject: [PATCH 30/51] also this
---
code/modules/mob/living/simple_animal/friendly/farm_animals.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm
index ba9cdfda64..4ad97a9f84 100644
--- a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm
+++ b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm
@@ -198,7 +198,7 @@
desc = "Known for its wisdom, shares it with all"
butcher_results = list(/obj/item/reagent_containers/food/snacks/meat/slab/wisdomcow = 1) //truly the best meat
gold_core_spawnable = FALSE
- speak_chance = 30 //the cow is eager to share its wisdom!
+ speak_chance = 10 //the cow is eager to share its wisdom! //but is wise enough to not lag the server too bad
milk_reagent = /datum/reagent/medicine/liquid_wisdom
/mob/living/simple_animal/cow/wisdom/Initialize()
From b22f73e27f5ef7ffad326c48397dfaab554f8403 Mon Sep 17 00:00:00 2001
From: EmeraldSundisk
Date: Thu, 9 Jul 2020 18:17:42 -0700
Subject: [PATCH 31/51] Update CogStation.dmm
---
_maps/map_files/CogStation/CogStation.dmm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm
index 27b35ae367..167ad0145d 100644
--- a/_maps/map_files/CogStation/CogStation.dmm
+++ b/_maps/map_files/CogStation/CogStation.dmm
@@ -5048,7 +5048,7 @@
"bTd" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
"bTe" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
"bTf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab)
-"bTg" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/robotics/lab)
+"bTg" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/science/robotics/mechbay"; dir = 1; name = "Mech Bay APC"; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
"bTh" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab)
"bTi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 5},/area/science/robotics/lab)
"bTj" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/science/lab)
@@ -5735,7 +5735,7 @@
"cgo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
"cgp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/button/ignition{id = "TEGMixIgniter"; name = "Mix Igniter"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
"cgq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cgr" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/science/robotics/mechbay"; dir = 1; name = "Mech Bay APC"; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
+"cgr" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/robotics/lab)
"cgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
"cgt" = (/obj/structure/rack,/obj/item/caution,/obj/item/caution,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
"cgu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
@@ -7936,14 +7936,14 @@ cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklck
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcGVcGWcGVcbbbkocsTaTEaVFcGXcGYbJzbJAcGicGjcGkbJFbKsaJVbKsbKtbKubIQbXUaaUaaaaaUbrUbtfbuAbthbthbthbtibstbstcyEbHIbHJbstbHJbstbIibILbJdbRTbFZbTCbFGbHCbHCbHEbJfbHDbQpbXLbsVbpEbzebpDbJpbtxbsZaaaaaaaaUbmebnYbogbombmeboncyJboxboybozbmebpibogbpjbmeaaUaaUbpPbLKbtzbtAbLZbtBbtCbtDbtzbXYbtzbtzbUWbtzcxXbtFbtzcOabLZbjnbjTcPMbjnbjnbtNcxVbtdcdTbtSbtScrecNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcObcNXcNXcNXcOccNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcHamImcGVcbbbkobkoaTEaVFcHbbuCbTobTqcGlcGmcGnbKvbKvbrzbLGbLUbQvbQPbXUaaUaaaaaUbrUbtUbJKcOdbTBbthbtYbstbVPcyKbYKcbrcbrcbscbKbBPcdXbXqciQckpckDclccmBbIMbqzbqzbMjbMjbsVbsVbpEbpDcmLbJpbumbsZaaUaaUaaUbmebpTbpTbpTbmebpUcyJboxboybqpbmebpTbpTbpTbmeaaUaaUbpPbYecOebMQbNtbNVbPmbPmbPnbPmbPmbPmbRrbPmcPNcxYcxYcPObYhbjncjfbjnbjnbRtbuycjbbDyceZccTccUcowcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOgcNXcNXcNXcNXcNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcbbbTrbTsbTGaVFcHccHdcagbigcGobYvcctbYvbYvbYvbYvbRMbRNcfZbXUaaUaaaaaUbrUceccegcegcekcegcodcsjcKhbuJbuKcDEcDFbuSbuSbuSbuScmKcolcomcpIbqzbqzbqzbqzcajcaHcbmcyOcyPcyQcyRcyScyTcyUbxjbxjbxjblpblpbqLbqMbqUbrvbrNcyVcyWcyXcyYcyZczaczbczcblpblpbxwcrobHLbtBbtabtabtabtabxHbtEbxHclWbxHbxHbxHclXbZtbZtcyabYnbjnbtHbtIbjnbxObRwcxVbxRbteboIboIboIcNXcNXcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOicOjcOjcOjcOjcOjcOkcOlaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbxTbJZbxVbKabxTbRhaVFaVFaVFaVFcHecHfcbcbigcGpbYvbYobYpbYqcgrbYvbROcEsbWXbXUaaUaaaaaUcdZbrUbqTbrlcsKbrUcdZbstbtjbstbstcDGcDJcDZbAJcaRbuScwscxhcyucyFbqzcyGcyNbMjcdYchVbyQbyNbyQbyQbyQbyQbPsczdbyUbyUbyUbtKbtLbtLbtLbtLbtLbtLczecpybtObtLbtLbtLbtLczebtLcmybzabzabYtbtBbtabtQbzdbtVbzcbzkbFFbPMbSfbzjbxHbZubZvbZtcyabYnbjnbtXbucbjnbzsbRzcybcxZbzubzubzvcRacOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOncOjcOjcOjcOjcOocOpaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbxTbJZbxVbKabxTbRhaVFaVFaVFaVFcHecHfcbcbigcGpbYvbYobYpbYqbTgbYvbROcEsbWXbXUaaUaaaaaUcdZbrUbqTbrlcsKbrUcdZbstbtjbstbstcDGcDJcDZbAJcaRbuScwscxhcyucyFbqzcyGcyNbMjcdYchVbyQbyNbyQbyQbyQbyQbPsczdbyUbyUbyUbtKbtLbtLbtLbtLbtLbtLczecpybtObtLbtLbtLbtLczebtLcmybzabzabYtbtBbtabtQbzdbtVbzcbzkbFFbPMbSfbzjbxHbZubZvbZtcyabYnbjnbtXbucbjnbzsbRzcybcxZbzubzubzvcRacOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOncOjcOjcOjcOjcOocOpaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbxTcbycOqcGqcGrbTOcGtcGscGscHgcHhcHicaIbTNcGuciockkbYxcPvbYycwbbRRbRSbWXbXUaaUaaaaaUbrUcedceecefcKkbSXbssbstbtjbstbstcEacKCczgczhczibuSczvczBczFczMbqzczPczWcAccAocDLbHKbzKbzScCOcrqbyQbYCczjczkczkczkczlczmcznczmczoczpczqczrbPDbPEbPFbPGbPHbPIczsbPHcmzbMQbMQbYDbtAbtabxNcehcfGbBgcrpcsUbzdbzdbzWbxHcmMbYnbZxcyabYEbjnckEcmebjnbzZcmJcycboIboIboIboIboIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcOrcOjcOjcOscOtcOucOvcOpaaaaTdaaaabpaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAbbAfbAgbMxcGvbMybxTbVvaVFaVFaVFbTPbTQbuCbTobigcGpcctbYFcPwbYHcrfbYvcytcENckfbWaaaUaaUaaUbrUcejcefcnZcKlcelcemcoVbAobAqbKibuScDhcztczucKjbuScmUcnkcDMcGIbqzbBQcFXcovcdYcoxcGUczwczwczxcspbyQbPNblpblpblpblpblpbzqczybuibPObAWbmebmebAYbmebmebBabBcbUxczybBeblpblpblpblpblpbtabDhbzdbtVcoWbBfbBgbBgbQDbBxbxHbYnbYnbZtcyacnibjnbjnbjnbjnbBybRGcydbBAcJjbBIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOlcOpcOpcOpcOpcOpcOpcOlaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbBJbxTcGwbxTbxTbTRbTRcavcawcawcawcaxcaxcaxcGxcctcctcazbYvbYvbuabDTcEObtnbIkbIkbIkbIkbIkbChcocbRIcKmbChbRIbChcuWcuXbPPbuScPRcPScPTbuSbuScrgbqzcrncHWbqzcKibRIbMjcupcvubyQbDabDbczCbPSbyQbPNblpcoyctHcqTcqUbuibuicOwbPTbBmbBmbBmbBwbBmbBmbBmbBMbUxbuibuicqUcnfctHcrUblpbtabHMbHMbtabxHbDfbDgbDhbxHbxHbxHbZtbZybZtcyecyfcygcyfcyfcyhcyicyjbFgbFhbztbFiboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbFmcnbbFocdDbFqcrNbFsbFtcGybzybFlaaUcavcavcaAcaBcaCbWdcaEcpgcGzbOObFubsUbFxbIebJEbKdbIcbIhbIdbIjcpwbJDbIkbRLbTzbTAcKncEQcERcEScETbFJbQabFXbFJczDczEbFYcnzcvRcKHcxfcxgcNJcNVcyBcyCcyHcyIbHKcoebBuczGbQcbyQbPNbmecddcddcddbBZclZbuibuibQdbuibuibuibCAccxccxccxccxccKbuicmablpcddcddcddblpaaaaaaaaaaaabxHbHMbHMbHMbxHaaUaaUbHNbHNbHNbHNcgybGFbHNbHNboIboIcmbbHRboIboKboKboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbHSbHSbFlbHTbHUbHVbHWbHYcrObIabIbcGybzybFlaaUcavcHjcHkcHlcHkcHmcHncHocHpcHqbKebRVbSdbSebSdbTibRXbRYbKNbKObKPbKQbIkbIsbTEbVOcKobXncEUcEVcEWcEXcEYcEZcFacFbcFccEXcEZcFdcFecFfcFfcAmcFfcFhcFfcFicyLbIubIvcrXbIwbQjbyQbPNbxjaYpcscaYpbmebuobuibuibQdbuibuibuicqlbuibuibuibuicOwbuibHtbmeaYpcscaYpblpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNbHzbHPbIybIzbIAcnSbHNaaUboKbHQbHRboKaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbSjbIEbZzbFtbOFbYzbIGbIHbIIbIJcsYcGybIKbFlaaUcavcqScaPcaPcaPcbvcskcbwcHrcHsbsMbQQbThbtobThcaOcRnbTDbTDbTDcRobYBccBccCccDcfNbYIbYJbShcgfckaclvcqWbAscFkbElbElbIUbJabElcFkbElbJbcAtbJcbJebtpbMFcyMbJhbJiczIczJbQobKkcAubxjaaaaaaaaabmebuobuibuibQrbQsctVbJqbJqbJqcrjbJRbuibuibuibHtbmeaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNcknbHNbHNcmcbIBbKZbHNaaaboKbHQbHRboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbJrbJrbFlbJsbJtcPUcPVcGAcGBcGCcGDcGEbJxbFlaaUcavcavcaTcaTcaTcaUcavbXdcGzcHtbsMccdbtocsZcqzckbcvSczHcmScrycrAbTgcFWcGNcGOcPxcPPbSabChcFjbQkbWDbJgayYcFlbJnaJDaJEaKZaMmcFmaOFbJJcAvbJLcRbbJNbNFbJObyQbDabBubBubJPbyQcChbxjaaaaaaaaabmebmebuibuibJobNHblpbmebNIbmeblpbNJbJRbuibuibmebmeaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKbNLcnLbNLbJQceJbNObNPbHNaaaboKbHQbJUboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbJrbJrbFlbJsbJtcPUcPVcGAcGBcGCcGDcGEbJxbFlaaUcavcavcaTcaTcaTcaUcavbXdcGzcHtbsMccdbtocsZcqzckbcvSczHcmScrycrAcgrcFWcGNcGOcPxcPPbSabChcFjbQkbWDbJgayYcFlbJnaJDaJEaKZaMmcFmaOFbJJcAvbJLcRbbJNbNFbJObyQbDabBubBubJPbyQcChbxjaaaaaaaaabmebmebuibuibJobNHblpbmebNIbmeblpbNJbJRbuibuibmebmeaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKbNLcnLbNLbJQceJbNObNPbHNaaaboKbHQbJUboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbJVbJWcPWcPXbJXbFwbXObZDbKbbKcbxTcavcavcavcaXcaYcoGcbacavcavcHucHvbsMcsVbThbtobThcuZcmRbKfccmccmcdWbIkbIkcFnbTEckdbIqbScbChcFobQkcqbbQlbaTcFpbQmbbxbbzbbBbbCcFqbbEbKhcFgcHOcHPcHOcHQcKpcHRczwcKqbKmbKnbyQcChbxjaaaaaaaaaaaabmebmebuibNQbmebmeaaaaaaaaabmebmebNRbuibmebmeaaaaaaaaaaaaaaUbNSbYQbYQbYQbYQcnMbYQbYQbYQbYQbYQcnMcnNaaUbJQbJQbHNbHNbHNaaaboKbHQbHRbKoaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcPYcPZbKqbxTbxTbxTbxTbxTbxTcavcavccLcaXcaXcaXcnCcavcavcHwcaGcuYcvtcvQcEPcRicRjcRpcRlcoHcOxcOycOzcGbcGccGdcGecqZbSgbShcFrbQubKybYGbaTcFpcbfbbZbjxblvblwcFscoXbKzbKzbKzbKAbKzbKzcHSbKCbyQcHTbyQbyQbyQcChbxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUbNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbOkaaUaaaaaaaaaaaaaaaaaaboKbHQbHRbKDcgWaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQbcQccQdcQecQfbKMbKMctabxTcavcbecaXcaXcaXcHxcHycHzcHAcHBcHCbIkbZTcrWcRqcumcFVcRkcRrbJHcOAcOBcOCbRIbMjcvTbMjbMjbMjbMjcFtcFucFvcFwcFxcFybopboqbotczKblwcFzbbEbKSbKTbKUbKVbKWbKTcHUbKYcPQcPycHXcHYcODcIabxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaaaaaaaaaaaaaaboKbLabLbboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
From 4f17e7ab1d103d834196cb1abbdbf4037c4f4c21 Mon Sep 17 00:00:00 2001
From: EmeraldSundisk
Date: Thu, 9 Jul 2020 18:34:29 -0700
Subject: [PATCH 32/51] Update CogStation.dmm
---
_maps/map_files/CogStation/CogStation.dmm | 87 ++++++++++-------------
1 file changed, 38 insertions(+), 49 deletions(-)
diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm
index 167ad0145d..14b31ffaff 100644
--- a/_maps/map_files/CogStation/CogStation.dmm
+++ b/_maps/map_files/CogStation/CogStation.dmm
@@ -43,7 +43,7 @@
"aaQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
"aaR" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
"aaS" = (/turf/open/floor/plasteel,/area/security/brig)
-"aaT" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aaT" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/starboard/fore)
"aaU" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
"aaV" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/fore)
"aaW" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation)
@@ -52,9 +52,9 @@
"aaZ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
"aba" = (/obj/machinery/door/airlock/external{name = "Arrival Shuttle Airlock"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
"abb" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"abc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space/basic,/area/solar/starboard/fore)
"abd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"abe" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"abe" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/starboard/fore)
"abf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
"abg" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
"abh" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/port)
@@ -210,7 +210,7 @@
"aeb" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/brig)
"aec" = (/turf/closed/wall/r_wall,/area/construction)
"aed" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aee" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aee" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/port)
"aef" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
"aeg" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
"aeh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig)
@@ -430,7 +430,7 @@
"ain" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/processing)
"aio" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
"aip" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/port/fore)
-"aiq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/port)
+"aiq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/port)
"air" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 2},/obj/item/stack/cable_coil/red,/obj/item/screwdriver,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/turf/open/floor/plasteel,/area/storage/tools)
"ais" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing)
"ait" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
@@ -468,7 +468,7 @@
"aiZ" = (/turf/open/floor/plasteel,/area/crew_quarters/observatory)
"aja" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/caution,/turf/open/floor/plating,/area/construction)
"ajb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ajc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/solar/starboard/fore)
+"ajc" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space/basic,/area/solar/port)
"ajd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aje" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
"ajf" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
@@ -856,7 +856,7 @@
"aqx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
"aqy" = (/obj/machinery/mass_driver{dir = 1; id = "serv_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/service)
"aqz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
-"aqA" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/fore)
+"aqA" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space/basic,/area/solar/starboard/aft)
"aqB" = (/turf/closed/wall,/area/hydroponics)
"aqC" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics)
"aqD" = (/obj/machinery/vending/sustenance,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
@@ -1107,7 +1107,7 @@
"avo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"avp" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service)
"avq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/service)
-"avr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/solar/starboard/fore)
+"avr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/starboard/aft)
"avs" = (/turf/closed/wall,/area/router/service)
"avt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
"avu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
@@ -4784,10 +4784,10 @@
"bNZ" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit)
"bOa" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
"bOb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"bOc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/port)
+"bOc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space/basic,/area/solar/starboard/aft)
"bOd" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/aft)
"bOe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/port)
+"bOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/starboard/aft)
"bOg" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
"bOh" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
"bOi" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
@@ -5848,7 +5848,6 @@
"cix" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/port/fore)
"ciy" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore)
"ciz" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/item/reagent_containers/food/drinks/trophy,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"ciA" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/port)
"ciB" = (/obj/structure/frame/computer,/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/maintenance/port/fore)
"ciC" = (/obj/structure/table,/obj/item/paper/pamphlet/gateway,/turf/open/floor/plasteel/white,/area/gateway)
"ciD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
@@ -6114,18 +6113,8 @@
"cnD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology)
"cnE" = (/obj/docking_port/stationary{dir = 2; dwidth = 9; height = 22; id = "emergency_home"; name = "CogStation Escape Dock"; width = 29},/turf/open/space/basic,/area/space)
"cnF" = (/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore)
-"cnG" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/port)
-"cnH" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/port)
-"cnI" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/port)
-"cnJ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/solar/port)
"cnK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cnL" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/aft)
-"cnM" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft)
-"cnN" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/solar/starboard/aft)
"cnO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/storage)
-"cnP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/solar/starboard/aft)
-"cnQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft)
-"cnR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/aft)
"cnS" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/aft; dir = 1; name = "Starboard Quarter Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
"cnT" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
"cnU" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing)
@@ -7821,17 +7810,17 @@ cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklck
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaZGaaaaWjaaaaaaaaaaaaaaaadCaadaadaadaadaadadCaaaaaUaaUaaUaaaadjadjadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadGabMadHaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadLabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaadCaadaadaadaadaadadCadjadjadjadjadjadMadPadFadXadXadXadFadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjadjadjadCaadaadaadaadaadadCadYadYadYadYadYadMaepaeqaeuaeyaezaeAadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaUaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjaeCaeRaeSaadaadaadaadaadafbafcaeRafcaeRaeRafeaeRafjafkadMafuaeAadFadjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTabcabeabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjafvafxadjaadaadaadaadaadadjafyadFafzafBafIafLafIafNafPadYafTaeAadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaadoadoadoadoadoadoaaUaePaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaUaaUaakaaUaWjaWjaWjaaUadjadFagaadjaadaadaadaadaadadjagbadFagkagpagtadMagFadFagKagKagKadFadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaXaaZabaaaaaaaaaaaaaaaaaaaaaaabaabbabgaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaahaanaasaasaasaasaasaanaayaaaabpaakaTdaWjabpaWjaaUadjagMafIagNaadaadaadaadaadagOadFadFagRagSagVadMadMadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaazaaAaaAaaAaaAaaAaaAaaAaazaaUaaUaakaaUaWjaWjaWjaaUadjadjadjahLaadaadaadaadaadadjahMadFafzagpadFahQadMadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaUaaUaaUaWjaaUaaUaaoaaoaaoaaoaaoaaUaaoaaoaaoaaoaaoaaUaaUaaUaePaaUaaoaaoaaoaaoaaoaaoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAaaCadBaaHablabkaaAbPoaaaaaUaaaaaUaaaaaUaaaaaUaaUaaaaaaahLaadaadaadaadaadadjahMadFahRagpadFahVadMaaUaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaapvaYpagdaYpaaxabuabKaaxaaaaaaaaaaaaaaaaaaaaaaaxabuabKaaxaYpagdaYpadqaaUaeeadxadxabeabjabjabjabjabjadxabjabjabjabjabjadxadxaaTajcabeabjabjabjabjabjabjaaTadxabeadxadyaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAabnaaFaicaaFaboaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaUaaUaaaahLaadaadaadaadaadadjaieaigafzagpaihaiIadMaaUaaUaacabvchHabzacbabzaaiaaaaaaaaaapvcdccdccdcapvcqVcqVaaxaaUaaaaaaaaaaaaaaaaaUaaxcqVcqVapvcdccdccdcadqaaUaePaaUaaUaaUadoadoadoadoadoaaUadoadoadoadoadoaaUaaUaaUaePaaUadoadoadoadoadoadoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabqaaJaaFaaQabwaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaUahLadMaiMaiMaiMadMadMadMadMaiWaiXadMadMadMactactacEacPacSacXaftacPadeaaaaaaaaacrPcrQcrRcrRcrScsaabNaaxaaxaaaaaaaaaaaaaaaaaxaaxacgcsbcrScrRcrRcrTadqaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabGabmaaFabAabPaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaajafDaajaajaamaapaaqaatbHXaiZajpajradmadtadtabQadvadUaefaenaghagzaefaevaaUaaUajwajwajFajFajFajwacsabLacRaaxaaxadnadqadnaaxaaxadrachadsadSadTadTadTaecaecaqAaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaePaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAackacdacuabAacyaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaaEafQaaIaaIaaIabdaaIabfabYajLajRajWaeHaeOaeOaeXaeOaeOafgafiagBadtacSactaaUajwajwajXakcakfakhajwaduadQabLaeaafOahZaibajhajmaeaachadQajKadSaeoaeEaeFafMaecaePaaVaaUaaUaaUaaUaaUaaUaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaePaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazaaAaaAaclaaAacCaaAaaAaazaaaaaUaaaaTxaaaaaUaaaaaaaaaaajacnageamiacoacwabTacFacFacFacFagjagnacFacFacFabUafWafWagfaggaimabBabCacQacQacQakiakkakmakhakhakxadQadQadQadQalaamPasyamPaoQadQadQadQadQaeWafmafmafpagxbEpagXahPahPaioaioahPahPaaUaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTavrabeabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjaeCaeRaeSaadaadaadaadaadafbafcaeRafcaeRaeRafeaeRafjafkadMafuaeAadFadjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTaaVabcabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjafvafxadjaadaadaadaadaadadjafyadFafzafBafIafLafIafNafPadYafTaeAadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaadoadoadoadoadoadoaaUaaVaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaUaaUaakaaUaWjaWjaWjaaUadjadFagaadjaadaadaadaadaadadjagbadFagkagpagtadMagFadFagKagKagKadFadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaXaaZabaaaaaaaaaaaaaaaaaaaaaaabaabbabgaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaahaanaasaasaasaasaasaanaayaaaabpaakaTdaWjabpaWjaaUadjagMafIagNaadaadaadaadaadagOadFadFagRagSagVadMadMadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaazaaAaaAaaAaaAaaAaaAaaAaazaaUaaUaakaaUaWjaWjaWjaaUadjadjadjahLaadaadaadaadaadadjahMadFafzagpadFahQadMadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaUaaUaaUaWjaaUaaUaaoaaoaaoaaoaaoaaUaaoaaoaaoaaoaaoaaUaaUaaUaaVaaUaaoaaoaaoaaoaaoaaoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAaaCadBaaHablabkaaAbPoaaaaaUaaaaaUaaaaaUaaaaaUaaUaaaaaaahLaadaadaadaadaadadjahMadFahRagpadFahVadMaaUaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaapvaYpagdaYpaaxabuabKaaxaaaaaaaaaaaaaaaaaaaaaaaxabuabKaaxaYpagdaYpadqaaUaaVaaVaaVabcabjabjabjabjabjadxabjabjabjabjabjadxadxaaTaaVabcabjabjabjabjabjabjaaTaaVabcadxadyaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAabnaaFaicaaFaboaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaUaaUaaaahLaadaadaadaadaadadjaieaigafzagpaihaiIadMaaUaaUaacabvchHabzacbabzaaiaaaaaaaaaapvcdccdccdcapvcqVcqVaaxaaUaaaaaaaaaaaaaaaaaUaaxcqVcqVapvcdccdccdcadqaaUaaVaaUaaUaaUadoadoadoadoadoaaUadoadoadoadoadoaaUaaUaaUaaVaaUadoadoadoadoadoadoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabqaaJaaFaaQabwaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaUahLadMaiMaiMaiMadMadMadMadMaiWaiXadMadMadMactactacEacPacSacXaftacPadeaaaaaaaaacrPcrQcrRcrRcrScsaabNaaxaaxaaaaaaaaaaaaaaaaaxaaxacgcsbcrScrRcrRcrTadqaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabGabmaaFabAabPaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaajafDaajaajaamaapaaqaatbHXaiZajpajradmadtadtabQadvadUaefaenaghagzaefaevaaUaaUajwajwajFajFajFajwacsabLacRaaxaaxadnadqadnaaxaaxadrachadsadSadTadTadTaecaecabeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAackacdacuabAacyaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaaEafQaaIaaIaaIabdaaIabfabYajLajRajWaeHaeOaeOaeXaeOaeOafgafiagBadtacSactaaUajwajwajXakcakfakhajwaduadQabLaeaafOahZaibajhajmaeaachadQajKadSaeoaeEaeFafMaecaePaaVaaUaaUaaUaaUaaUaaUaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaVaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazaaAaaAaclaaAacCaaAaaAaazaaaaaUaaaaTxaaaaaUaaaaaaaaaaajacnageamiacoacwabTacFacFacFacFagjagnacFacFacFabUafWafWagfaggaimabBabCacQacQacQakiakkakmakhakhakxadQadQadQadQalaamPasyamPaoQadQadQadQadQaeWafmafmafpagxbEpagXahPahPaioaioahPahPaaUaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTaaVabcabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOadaadbacDacUacZadbadaaegaaaakEakNakEakPakEaaaaaaaaaaajacnageakXakXakXakXakXacIacVadgagqagwadJaekalealealealealeahjaimafEahYaiyaiDacQalgalialkalialpajwajwajwaQOadQabLaeaaeaaeaachadQacTadSadSadSaiAafmaiVajabEpajSahPaknakZalbalfahPaaUaaaaaaaaaadoadoadoadoadoadoaaUaaUaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUanUanUanUanUanUaaGadKadWanUanUanUanUakEalqakEalsakEaaaaaaaaaaajacnagyakXalAalEalOakXaemadiadiagqajJadiaesalealQalTalValeajfaimafEajgajkajqacQalYamnamHamRamTancanfajwaeiaeraetadQannadQadQadQafRadSaeGapoaptapTanvaoMbEpaHjahPaJRbiOaKeafhahPaaUaaaaaaaaaaaaaaaaaUaaaaaaaaUaaUaTxaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUaaNaebanUaaRaehaeLasVaeQaeQaeVagvansalqanCanWakEbUobUoaajaajacnageakXaoeaoiaokakXaexaeTaeUagqahwafqafraleaolaomaonaleajfaimafEabIaqRarcacQaooaopaozajwajwajwajwajwatZaucaeKaykazGaykaFraFtapvadSadSadSbveadSaecaecbEpbvmbzpbEgbEtbEwbEyahPaaUaaUaaUcjjcjjcjjcjjcjjaaaaoKaoSaoKaoTaoKaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
@@ -7845,17 +7834,17 @@ cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklck
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaahfahkahlahoahpahqapsakLaoVajyabSajzaguahEajAaeJajGajTakvakvakwaewamkaajaajaajaajaalamSaalavNavOavRavSavXavNaVDayDazzarlasJatBazLaALaAOaBzaBHaBLayNaBNaCkaCoaCpaqvaeYanyaCsanXanXanXanXanXamuakRahzbEXakMaoxaDbaDmaDFanJaqLafZakHahxalXatOatCahxamCafaautavtavtavuavZamKamKamLawbawfawbawbawbawgawiawjawlawpawpawxawxawxawpawpaaUaaUaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaainainainaisaiEaiGagWakDaoYakFabSalMaguahEajAaeJalUanuanwanwaoBaewauHbNMaGccitaviciuaDEaDUawyawzawCawCawFavNaxPayDazzayXasJaBUaCjaCwasJaEUbGzbnHaAAawNaeYaoraoraoraeYaosaFoaoCaoCaoCaoCaoCapiapjaffaXvapqaFpaqLaqLaFkaqLaqLaglakHahsahxaylahxahxahxanFaywazxaDDaDDaGYaHcaDDaQZawIawUawIawIaxaaxbaxdaxnaxqaxDaxEaxUaxUaxYaygawpaaUaaUaaUahuahuahuallalmalnalnalmalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUainaklakqakragWamhapuawGawZaxKaqfaqzaewaeJaewaskaymakvakwaewapecivbNTciwaalaalamSaalavNaypayqayraytavNaCAayDazzaDjasJaDkaDlaPiasJaGDayuaxhaBMawNaeYaeYaeYaeYaeYapkaotaplaqhaqiarmaqhahJatAaffbEMaqZaHhanBajiaHhawhafKapWbhjafKarxbmlbmrbvobvobvqbDBbEvaqpaqxaqQbEHaqpaqxamcamcamNamNamcamcayvayxayBayEayHayLayPayZazaawpaaaaaaaaUahuamUamVamVamVamVamVamVamVamVamWahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMbOcbOfaaUaaaaaaaaaaaaaaaaaaaaaainainainakOakTaljagWaBAaeDaxWaEyaxXasVatVavgavFawHayFazNakvaqDaewcivcixciycizaalapeamSbGHavNazbazpazAazCavNbGMaIeazzbGNasJbGOaIhaPiasJaJFaimanqaCqanqanqanIanLanPanqatQaotahJahJahJahJahJahJatKaffbEOavTaJSalSaKsaKBamxamyamzbEJaGRamFarybPuamMaImafKbSubZMauiawvaycazVaAgbvwagUawVanMaiianOamcazDazHavbawpazMazOazUazWazYawpaaaaaaaaUahuaovamVamVamVamVamVamVaowamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUciAaaUaaaaaaaaaaaaaaaaaabfqaltahkalvahoaAdariasFarqarTasjaySazkaCtaCWaewaeJaewaCXaDeakvaewaewavGavGcnFciBaalamjaKRaalavNavNavNaAfavNavNavNaLgazzbGRasJbGSaLBbGTasJaJFaimanqaDxanTaofaoLaoUaqPanqatLaotcpdahJahJatMapPahJaqgaffbEPavTaMyaMCaNlaNuaNUaODamzcfSaAaafKafKciNapWapWaAacjmavtaAmbvrbvAbvCbCJbvwairaoOaoOaoOarnamcayvaAraAsawpaAtaAuaAEaATaBcawpaaUaaUaaUapCapEapFapIapIapJapKamVamVamVamVapXahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUciAaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWalWatqamgainawJaaSawRabSacNagEaECaxiaeJaxjaEEaDeakvayhaxkaxlaxmbGUbGVbGWaCMapYaOHaBkaBlaBoaBraBtaBwavNaEoaUAbHbasJasJaVEasJasJaJFaimanqapyanTcpqanTanTapzanqatkaotahJahJazKaAlaAlaAlaCOaffamEaCNaxGapRapUaouaqjaqlaqmbEJareakaatRclyarsarvakaasmavdbvwbDnbZNcbQcjnbvwaZKaqqaoOaqraqtamcaBDaAraBJawpawpawpawpaBOawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUciAaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUagWamXatHamXainawJaNMaxoabSacNatUaELatWaeJayQaEEaDeaAhaewaszaCuaCCbHlbHmacobHdbRaaalavNaBPaBQaBRaBZaBZaChbnJboHbvdbvtaDzbyRbHjbHkaJFaimanqarVanTasaasaanTasKanqbBdbCOaqGaqGbDobDObFLbFLbFMahzaspavTaJSatPatPaouajiawBamzcmlcmocmAcmCaCvcwNaubatSaqobDpbDqbDrbDsbDsbDtantanNaqqaoOaSRatXamcaCxaCIawpawpaFlaCPaCRaCSaCTaCYaqCaugaunauoaupadIauwauyauzaqBaqBauAaveaveavkapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUciAaaUaaUaaUaaUaaUaaUaaUaaUaqwabxagWagWanUanUanUanUanUanUanUazlaAVaBaaCEaewaewaESaETaewaewaewaewaCKaoFaLuapHafXcjOarbaDaaDcaDdaDfaDdaDoaDpbHobDZbHqaDvarkbHrbHsbHkbEraimanqapyanTaoLbEzanTapzanqbFNahJbEDbEEbFKbFLcqibFLbFPahzauhavTaHhajiajiajiajiboOamzamAavPakaaSUcwZazRazSakaaAobDvaulbDxaaBbDzbDAaoNawDavhaoOawEayVazFaDwaDyawxaDAaDCaDGaDHaDJaDKaDQaxraxsaxsaxyaxsaxHaxJazsazsazIaGOauyauyaIRaJqahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUagLaiqaiqaaMaaMaaMaaMaaMaaMaaMaaMaaMaaMbOccnGaaUaaUabxabxaiNaiNaiNaiNabxaiOaiPaiOanUaCraEwaHbaHNaIlaIVaJwauVaGGaCHaDWaDYaGTaHgaEWaUyaGVaFGaFZasWataaoFatcatcatcaDSaBQaBQaDZaEdaDoaDpbHqbEFbHfbHubHvbHvbHwbHkbEKaimanqaxganTanTbESanTbtkanqatMahJbETbFQbFKbFLbEUbFObFMahzayGaAbaHhazmaBTaBWaFVaApaAqamAaAWakaakaakaaBGaBGaqlbDiaiCbDAbDCaEgaNebDAaJHaoOazXaoOaoOaJJaJYaElaEnaEraEtaxUcPraEzaEBaEGaEHaAMaANaANaBdaBnaBBaBEaBEaBEbrnauyauybXHauybrpahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUabiabiabiabiabiabiabiabiabiabiaaUcnHabxajuaqwakgakjakzakBaluaCdamqanVaobasLaKdasXasYatjanUanUanUaGPaHHanUaewaewaHTaHSalUalUakvaIzaewatzataauPauWaVratcaDSaEJaEKaENaEOaEPavNbHfbHxbHfbHyaPFaPFaPFaPFbEKaimanqceuanTanTbESanTcevanqbFRahJbETbFSbFTbFUbFVbFUbFWaffaNXavTaHhazmbuPaBXaivaCnbGaamAaDqakaaERaEXaEYaEZaFaaFbaFdbDAbDFbDGbDHbDAanSazTaCVaFIbrxbrCbrDaFgaFsaFxaFAaFBaFDaFHaFJaFKaFLaqCbscbsdaJIbbRbsgauyauybsjaqBaqBbskbsmbsmbsnapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaaaaaaaaaaaaaaaaaaaaainainainakOakTaljagWaBAaeDaxWaEyaxXasVatVavgavFawHayFazNakvaqDaewcivcixciycizaalapeamSbGHavNazbazpazAazCavNbGMaIeazzbGNasJbGOaIhaPiasJaJFaimanqaCqanqanqanIanLanPanqatQaotahJahJahJahJahJahJatKaffbEOavTaJSalSaKsaKBamxamyamzbEJaGRamFarybPuamMaImafKbSubZMauiawvaycazVaAgbvwagUawVanMaiianOamcazDazHavbawpazMazOazUazWazYawpaaaaaaaaUahuaovamVamVamVamVamVamVaowamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaaaaaaaabfqaltahkalvahoaAdariasFarqarTasjaySazkaCtaCWaewaeJaewaCXaDeakvaewaewavGavGcnFciBaalamjaKRaalavNavNavNaAfavNavNavNaLgazzbGRasJbGSaLBbGTasJaJFaimanqaDxanTaofaoLaoUaqPanqatLaotcpdahJahJatMapPahJaqgaffbEPavTaMyaMCaNlaNuaNUaODamzcfSaAaafKafKciNapWapWaAacjmavtaAmbvrbvAbvCbCJbvwairaoOaoOaoOarnamcayvaAraAsawpaAtaAuaAEaATaBcawpaaUaaUaaUapCapEapFapIapIapJapKamVamVamVamVapXahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWalWatqamgainawJaaSawRabSacNagEaECaxiaeJaxjaEEaDeakvayhaxkaxlaxmbGUbGVbGWaCMapYaOHaBkaBlaBoaBraBtaBwavNaEoaUAbHbasJasJaVEasJasJaJFaimanqapyanTcpqanTanTapzanqatkaotahJahJazKaAlaAlaAlaCOaffamEaCNaxGapRapUaouaqjaqlaqmbEJareakaatRclyarsarvakaasmavdbvwbDnbZNcbQcjnbvwaZKaqqaoOaqraqtamcaBDaAraBJawpawpawpawpaBOawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUagWamXatHamXainawJaNMaxoabSacNatUaELatWaeJayQaEEaDeaAhaewaszaCuaCCbHlbHmacobHdbRaaalavNaBPaBQaBRaBZaBZaChbnJboHbvdbvtaDzbyRbHjbHkaJFaimanqarVanTasaasaanTasKanqbBdbCOaqGaqGbDobDObFLbFLbFMahzaspavTaJSatPatPaouajiawBamzcmlcmocmAcmCaCvcwNaubatSaqobDpbDqbDrbDsbDsbDtantanNaqqaoOaSRatXamcaCxaCIawpawpaFlaCPaCRaCSaCTaCYaqCaugaunauoaupadIauwauyauzaqBaqBauAaveaveavkapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUabhaaUaaUaaUaaUaaUaaUaaUaaUaqwabxagWagWanUanUanUanUanUanUanUazlaAVaBaaCEaewaewaESaETaewaewaewaewaCKaoFaLuapHafXcjOarbaDaaDcaDdaDfaDdaDoaDpbHobDZbHqaDvarkbHrbHsbHkbEraimanqapyanTaoLbEzanTapzanqbFNahJbEDbEEbFKbFLcqibFLbFPahzauhavTaHhajiajiajiajiboOamzamAavPakaaSUcwZazRazSakaaAobDvaulbDxaaBbDzbDAaoNawDavhaoOawEayVazFaDwaDyawxaDAaDCaDGaDHaDJaDKaDQaxraxsaxsaxyaxsaxHaxJazsazsazIaGOauyauyaIRaJqahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUagLaeeabhaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaUabxabxaiNaiNaiNaiNabxaiOaiPaiOanUaCraEwaHbaHNaIlaIVaJwauVaGGaCHaDWaDYaGTaHgaEWaUyaGVaFGaFZasWataaoFatcatcatcaDSaBQaBQaDZaEdaDoaDpbHqbEFbHfbHubHvbHvbHwbHkbEKaimanqaxganTanTbESanTbtkanqatMahJbETbFQbFKbFLbEUbFObFMahzayGaAbaHhazmaBTaBWaFVaApaAqamAaAWakaakaakaaBGaBGaqlbDiaiCbDAbDCaEgaNebDAaJHaoOazXaoOaoOaJJaJYaElaEnaEraEtaxUcPraEzaEBaEGaEHaAMaANaANaBdaBnaBBaBEaBEaBEbrnauyauybXHauybrpahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUabiabiabiabiabiabiabiabiabiabiaaUaiqabxajuaqwakgakjakzakBaluaCdamqanVaobasLaKdasXasYatjanUanUanUaGPaHHanUaewaewaHTaHSalUalUakvaIzaewatzataauPauWaVratcaDSaEJaEKaENaEOaEPavNbHfbHxbHfbHyaPFaPFaPFaPFbEKaimanqceuanTanTbESanTcevanqbFRahJbETbFSbFTbFUbFVbFUbFWaffaNXavTaHhazmbuPaBXaivaCnbGaamAaDqakaaERaEXaEYaEZaFaaFbaFdbDAbDFbDGbDHbDAanSazTaCVaFIbrxbrCbrDaFgaFsaFxaFAaFBaFDaFHaFJaFKaFLaqCbscbsdaJIbbRbsgauyauybsjaqBaqBbskbsmbsmbsnapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaLaoHaoPaoWapSanVaDOaDTaDTaDVavWauLbUAasLaLJaNjaNGayfanUayjanUblsaIsanUaInaewaJtaLfakvakvaLvaewaewavJatabGfavLavMatcaDSaFMaFMaFMaFMaFMaDSarwbHkarwbHBaPFbGpbGsaHtbGuaEhanqanqcexceybGvcexanqanqaffahzbGwahzaffahzbGxahzaffaffaEAaCNaCzaCBaCDaCFaMjamAbGGaMlaNnakaaFOaFQaFRaFSaFWaGfaGjbDAbDEbDIbDAbDAamcbsocraamcamcbsqbsraGkaAraGlaGmawxawpaGwawpawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnIabxaqMaqwarraslasHatvaGyaEpawdawrawkaziazjaNJaNVaznanUanUanUaKOaJyanUaewaewaJNaJOaKaaymalUaPZawQawSawTbHhaxwavLatcaByazPazQaAeaAjaAjaAUaBgaBhaBiaAjaJAaAjaAjaKcbHiaEqbIDbIDbNpbRFccgbRFccqcczcfebRFchQaAjaAjaAjchWaCmazPakabviavTaHhazmbvlbuXamAbvDbGGbcWbvhakaaGFaGIaGUaHdaHmaHwaHBbDAbDKbDKbDAaHCaHXaIbaIpaItaIwaIyaIBaIWaIYaIZaIZaIZaJaaJbaJsaJPaKbaaUaaUaaUapCapEbsBbsmbsmbsCbsEamVamVamVamVbsFahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUciAaaUaaUaqwabxabxawmawoawuaEsawKawMajUasLaphaphaBbaBeaBfaBjaLwaLxaKtaPXaFGaQfaQgaQiaKwaQgaQAaQYayOazBaAkcqdcqHcswcsAcwfaFfaFiaFCaIkaFCaFCaGgaGxaGxaGxaGxaGSaGxaGxaHaaHpaHuaHuaFCaFCaFCaFCaFCaHvaIkaEucAVcAWcAWcAWcAXaExazPakabvFavTaHhaRMbvZbAhbDuamycAYbvHaqlakaaKfaKfaKmaKraKfaKuaKzavmavmavmavmaKWaLdaLeaLhaLjaLjaLoaLjaLqaLraLraLraLraLraLtaLzaLCaKbaaaaaaaaUahuaovamVamVamVamVamVamVamVamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaEfaaUaaaaaaaaaaaUcepaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMbOccnJaaUaaUaaUaaUaaUaxcatvauLaIoaxfasLasLanUasLasLanUbzxanUanUabSayRaKCabSaewaSXakvalUalUakvaSZaTaaBxaBCcjNcBbbhNaBKaCacBcaIucBecAWcBfcBgcBhcBhcBhcBhcBhcBhcBhcBhcBicBjaIJaGraGraFFaFFagoaFFaFFaFFaIUaJcaJcaJCaJQaKDcBoaGJaGQaCebvLaHlcBqbarbasbatbatbascBqbvLaCeaLUaMbaMbaMcaMfaMraMEaMMaMOaMTaMWaNsaNtaNEaNPaOfaOgaOjaOmaOyaOGamGamGamGamGamGamYamYamYamYaaaaaaaaUahuamUamVamVamVamVamVamVamVamVbsHahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUajcabxaqMaqwarraslasHatvaGyaEpawdawrawkaziazjaNJaNVaznanUanUanUaKOaJyanUaewaewaJNaJOaKaaymalUaPZawQawSawTbHhaxwavLatcaByazPazQaAeaAjaAjaAUaBgaBhaBiaAjaJAaAjaAjaKcbHiaEqbIDbIDbNpbRFccgbRFccqcczcfebRFchQaAjaAjaAjchWaCmazPakabviavTaHhazmbvlbuXamAbvDbGGbcWbvhakaaGFaGIaGUaHdaHmaHwaHBbDAbDKbDKbDAaHCaHXaIbaIpaItaIwaIyaIBaIWaIYaIZaIZaIZaJaaJbaJsaJPaKbaaUaaUaaUapCapEbsBbsmbsmbsCbsEamVamVamVamVbsFahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUabhaaUaaUaqwabxabxawmawoawuaEsawKawMajUasLaphaphaBbaBeaBfaBjaLwaLxaKtaPXaFGaQfaQgaQiaKwaQgaQAaQYayOazBaAkcqdcqHcswcsAcwfaFfaFiaFCaIkaFCaFCaGgaGxaGxaGxaGxaGSaGxaGxaHaaHpaHuaHuaFCaFCaFCaFCaFCaHvaIkaEucAVcAWcAWcAWcAXaExazPakabvFavTaHhaRMbvZbAhbDuamycAYbvHaqlakaaKfaKfaKmaKraKfaKuaKzavmavmavmavmaKWaLdaLeaLhaLjaLjaLoaLjaLqaLraLraLraLraLraLtaLzaLCaKbaaaaaaaaUahuaovamVamVamVamVamVamVamVamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaEfaaUaaaaaaaaaaaUcepaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaUaaUaaUaaUaxcatvauLaIoaxfasLasLanUasLasLanUbzxanUanUabSayRaKCabSaewaSXakvalUalUakvaSZaTaaBxaBCcjNcBbbhNaBKaCacBcaIucBecAWcBfcBgcBhcBhcBhcBhcBhcBhcBhcBhcBicBjaIJaGraGraFFaFFagoaFFaFFaFFaIUaJcaJcaJCaJQaKDcBoaGJaGQaCebvLaHlcBqbarbasbatbatbascBqbvLaCeaLUaMbaMbaMcaMfaMraMEaMMaMOaMTaMWaNsaNtaNEaNPaOfaOgaOjaOmaOyaOGamGamGamGamGamGamYamYamYamYaaaaaaaaUahuamUamVamVamVamVamVamVamVamVbsHahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIakIakIakIakIakIaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaUawmaxpawuaEsawKaxuaxvaxzaxAaxBabSaxCaTpaxNaxTayCaLnayIaewaewaewaewaewaewaewaewaoFatcatcaFPaICaIDaCacBuaKJaEvaHkcBvaIjaHsaHsaHsaHsaHsaHsaHsaHsaHtcBwaLcaOJaOTaOUaOUaOTaOUaOUaOTaOXaPaaOTaOTaHOaLTaMwaNmaNvaNBaXnaNYaRTaSDaSDaSDaSDaSDaRTaXnaYKaNEaPlaPxaPxaPyaPAaPCaPGaLraLraLraLraLraPJaPLaPQandamYamYamYamYamGaneanpaneanpanYanpaoaamYaaUaaUaaUahuahuahubsJbsKalnalnbsKalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIadpadZajZahhajnakIaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUayJatvauLaNZaOKaOLaOWaPjaPkaPnaPvaPYaQbaQbaQbaQEaQHaQMayTayUayUayWazcazfaAPaDiaHRaIFaIGaKiaDPaLXaIdcBEaKJaEvaIiaIjaHsaHsaaUaaUaaUaaUaaUaaUaaUaDMcBFaQSaOTaPSaQtaQuaQzaQBaQIaQPaQQaQRaQXaRcaRBaSoaSpcBKcBLaDhcBMcBNcBOcBPcBQcBPcBRcBNcBScBMaDraRdaRfaLjaRgaRiaLjaRkaRnaRsaRtaRKaRNaRNaRNaRPaRSaoEaoZaqdapwapaapLanpaBSaztaBSaztaBSayAamYamYamYaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIajtchhanxaCfaLHakIaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUaqwazyaAcatvaAiasLaAnayMaMpaAvabSaAzaaSaaSaaSaMZaMqaSxaROaSQaSQaSQaSQaCbaEcbGYccMaJvaRUaMNaPsaSJaIxcKDcKEaEvaHQaHsaHsaaUaaUaaaaaaaaaaaaaaaaaaaDMcBFaQSaOTaSbaSfaSfaSfaSfaSfaSfaSfaSzaSEaOTaIOaSPaTAaJrbhRakabDScbZccabDVccbbDXcbZccacBUbDYaciacKadRanhaGHaqcaPxaSIaSOaSSaTeamYaSeamGamGaKqamYamYanpaneanpaneanpaneaBSazuayyazuaBSazvazwazZaAwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
@@ -7943,13 +7932,13 @@ cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklck
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbFmcnbbFocdDbFqcrNbFsbFtcGybzybFlaaUcavcavcaAcaBcaCbWdcaEcpgcGzbOObFubsUbFxbIebJEbKdbIcbIhbIdbIjcpwbJDbIkbRLbTzbTAcKncEQcERcEScETbFJbQabFXbFJczDczEbFYcnzcvRcKHcxfcxgcNJcNVcyBcyCcyHcyIbHKcoebBuczGbQcbyQbPNbmecddcddcddbBZclZbuibuibQdbuibuibuibCAccxccxccxccxccKbuicmablpcddcddcddblpaaaaaaaaaaaabxHbHMbHMbHMbxHaaUaaUbHNbHNbHNbHNcgybGFbHNbHNboIboIcmbbHRboIboKboKboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbHSbHSbFlbHTbHUbHVbHWbHYcrObIabIbcGybzybFlaaUcavcHjcHkcHlcHkcHmcHncHocHpcHqbKebRVbSdbSebSdbTibRXbRYbKNbKObKPbKQbIkbIsbTEbVOcKobXncEUcEVcEWcEXcEYcEZcFacFbcFccEXcEZcFdcFecFfcFfcAmcFfcFhcFfcFicyLbIubIvcrXbIwbQjbyQbPNbxjaYpcscaYpbmebuobuibuibQdbuibuibuicqlbuibuibuibuicOwbuibHtbmeaYpcscaYpblpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNbHzbHPbIybIzbIAcnSbHNaaUboKbHQbHRboKaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbSjbIEbZzbFtbOFbYzbIGbIHbIIbIJcsYcGybIKbFlaaUcavcqScaPcaPcaPcbvcskcbwcHrcHsbsMbQQbThbtobThcaOcRnbTDbTDbTDcRobYBccBccCccDcfNbYIbYJbShcgfckaclvcqWbAscFkbElbElbIUbJabElcFkbElbJbcAtbJcbJebtpbMFcyMbJhbJiczIczJbQobKkcAubxjaaaaaaaaabmebuobuibuibQrbQsctVbJqbJqbJqcrjbJRbuibuibuibHtbmeaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNcknbHNbHNcmcbIBbKZbHNaaaboKbHQbHRboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbJrbJrbFlbJsbJtcPUcPVcGAcGBcGCcGDcGEbJxbFlaaUcavcavcaTcaTcaTcaUcavbXdcGzcHtbsMccdbtocsZcqzckbcvSczHcmScrycrAcgrcFWcGNcGOcPxcPPbSabChcFjbQkbWDbJgayYcFlbJnaJDaJEaKZaMmcFmaOFbJJcAvbJLcRbbJNbNFbJObyQbDabBubBubJPbyQcChbxjaaaaaaaaabmebmebuibuibJobNHblpbmebNIbmeblpbNJbJRbuibuibmebmeaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKbNLcnLbNLbJQceJbNObNPbHNaaaboKbHQbJUboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbJVbJWcPWcPXbJXbFwbXObZDbKbbKcbxTcavcavcavcaXcaYcoGcbacavcavcHucHvbsMcsVbThbtobThcuZcmRbKfccmccmcdWbIkbIkcFnbTEckdbIqbScbChcFobQkcqbbQlbaTcFpbQmbbxbbzbbBbbCcFqbbEbKhcFgcHOcHPcHOcHQcKpcHRczwcKqbKmbKnbyQcChbxjaaaaaaaaaaaabmebmebuibNQbmebmeaaaaaaaaabmebmebNRbuibmebmeaaaaaaaaaaaaaaUbNSbYQbYQbYQbYQcnMbYQbYQbYQbYQbYQcnMcnNaaUbJQbJQbHNbHNbHNaaaboKbHQbHRbKoaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcPYcPZbKqbxTbxTbxTbxTbxTbxTcavcavccLcaXcaXcaXcnCcavcavcHwcaGcuYcvtcvQcEPcRicRjcRpcRlcoHcOxcOycOzcGbcGccGdcGecqZbSgbShcFrbQubKybYGbaTcFpcbfbbZbjxblvblwcFscoXbKzbKzbKzbKAbKzbKzcHSbKCbyQcHTbyQbyQbyQcChbxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUbNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbOkaaUaaaaaaaaaaaaaaaaaaboKbHQbHRbKDcgWaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQbcQccQdcQecQfbKMbKMctabxTcavcbecaXcaXcaXcHxcHycHzcHAcHBcHCbIkbZTcrWcRqcumcFVcRkcRrbJHcOAcOBcOCbRIbMjcvTbMjbMjbMjbMjcFtcFucFvcFwcFxcFybopboqbotczKblwcFzbbEbKSbKTbKUbKVbKWbKTcHUbKYcPQcPycHXcHYcODcIabxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaaaaaaaaaaaaaaboKbLabLbboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTcaVbLdbKMcQgbLfcQhcQibLibLjcQjbKMbKMcaZbxTcavcblcaXcbhcaXcHDcHEcHFcHGcHHcHIbIkbIkcebcebcebcebcebbIkbIkcOEcOFcOGcOHbMjcFAbLIbLWcFBcFCcFDcFEbJIbpabpbbbtbpebpgbotbphblwbqtbbEbLqbLrbKTbLsbLtbLrcIbbKYcIccIdcKPcyScIecIfbxjaaaaaaaaaaaaaaabmebNWbNXbmeaaUaaaaaaaaaaaUbmebNYbNZbmeaaaaaaaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKaaUbOkaaUbNKbNKbNKbNKbNKaaUboIboKboKboIaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQlcQmcQnbLickNcQobKFbKFbLybxTcavcbqcaXcaXcaXcHJcbtcaXcavcHKcHLcbBaaUaaUaaUaaUaaUaaUaaUcOIcOJcOKcOLbRIbMjckhckjcFFcFGcFHcFIcFJbJIbQnbqObqPbQzbpgbjxbqRblwblxbqSbKzbKTcIgczLcsobLtcvvbKYcIcbLDcOMcOMcONcOOcOMaaUaaUaaUaaUaaUbmebOabOabObaaUaaaaaaaaaaaUbObbOabOabmeaaUaaUaaUaaUaaUaaUbNSbYQbYQbYQbYQcnMbYQbYQbYQbYQbYQcnMcnPcnQbYRbYRbYRbYRbOdaaUaaUaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQhcQibLFbxTbxTbxTbxTbxTbxTcavcavctbcaXcaXcaXcpecavcavcHMcHNcbBaaUaaaaaaaaaaaaaaaaaacOIcOPcOIcOLbRIcfbcFKcFLcFMcFNbChcFObQLbLLbQCbrubrObXDbAybAHbAMbATbBnbQybLMbLNcIjcIkcIlcImcIncIocIpcoAcOMcOQcORcOScOMaaUaaaaaaaaaaaabmebOebOebmebmeaaaaaaaaabmebmebOebOebmeaaaaaaaaaaaaaaaaaabNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUcnRaaUbNUbNUbNUbNUbNUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbJrbJrbFlbJsbJtcPUcPVcGAcGBcGCcGDcGEbJxbFlaaUcavcavcaTcaTcaTcaUcavbXdcGzcHtbsMccdbtocsZcqzckbcvSczHcmScrycrAcgrcFWcGNcGOcPxcPPbSabChcFjbQkbWDbJgayYcFlbJnaJDaJEaKZaMmcFmaOFbJJcAvbJLcRbbJNbNFbJObyQbDabBubBubJPbyQcChbxjaaaaaaaaabmebmebuibuibJobNHblpbmebNIbmeblpbNJbJRbuibuibmebmeaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKbNLaqAbNLbJQceJbNObNPbHNaaaboKbHQbJUboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbJVbJWcPWcPXbJXbFwbXObZDbKbbKcbxTcavcavcavcaXcaYcoGcbacavcavcHucHvbsMcsVbThbtobThcuZcmRbKfccmccmcdWbIkbIkcFnbTEckdbIqbScbChcFobQkcqbbQlbaTcFpbQmbbxbbzbbBbbCcFqbbEbKhcFgcHOcHPcHOcHQcKpcHRczwcKqbKmbKnbyQcChbxjaaaaaaaaaaaabmebmebuibNQbmebmeaaaaaaaaabmebmebNRbuibmebmeaaaaaaaaaaaaaaUbNSbYQbYQbYQbYQavrbNSbYQbYQbYQbYQavrbNLaaUbJQbJQbHNbHNbHNaaaboKbHQbHRbKoaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcPYcPZbKqbxTbxTbxTbxTbxTbxTcavcavccLcaXcaXcaXcnCcavcavcHwcaGcuYcvtcvQcEPcRicRjcRpcRlcoHcOxcOycOzcGbcGccGdcGecqZbSgbShcFrbQubKybYGbaTcFpcbfbbZbjxblvblwcFscoXbKzbKzbKzbKAbKzbKzcHSbKCbyQcHTbyQbyQbyQcChbxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUbNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbNLaaUaaaaaaaaaaaaaaaaaaboKbHQbHRbKDcgWaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQbcQccQdcQecQfbKMbKMctabxTcavcbecaXcaXcaXcHxcHycHzcHAcHBcHCbIkbZTcrWcRqcumcFVcRkcRrbJHcOAcOBcOCbRIbMjcvTbMjbMjbMjbMjcFtcFucFvcFwcFxcFybopboqbotczKblwcFzbbEbKSbKTbKUbKVbKWbKTcHUbKYcPQcPycHXcHYcODcIabxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbNLaaUaaaaaaaaaaaaaaaaaaboKbLabLbboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTcaVbLdbKMcQgbLfcQhcQibLibLjcQjbKMbKMcaZbxTcavcblcaXcbhcaXcHDcHEcHFcHGcHHcHIbIkbIkcebcebcebcebcebbIkbIkcOEcOFcOGcOHbMjcFAbLIbLWcFBcFCcFDcFEbJIbpabpbbbtbpebpgbotbphblwbqtbbEbLqbLrbKTbLsbLtbLrcIbbKYcIccIdcKPcyScIecIfbxjaaaaaaaaaaaaaaabmebNWbNXbmeaaUaaaaaaaaaaaUbmebNYbNZbmeaaaaaaaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKaaUbNLaaUbNKbNKbNKbNKbNKaaUboIboKboKboIaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQlcQmcQnbLickNcQobKFbKFbLybxTcavcbqcaXcaXcaXcHJcbtcaXcavcHKcHLcbBaaUaaUaaUaaUaaUaaUaaUcOIcOJcOKcOLbRIbMjckhckjcFFcFGcFHcFIcFJbJIbQnbqObqPbQzbpgbjxbqRblwblxbqSbKzbKTcIgczLcsobLtcvvbKYcIcbLDcOMcOMcONcOOcOMaaUaaUaaUaaUaaUbmebOabOabObaaUaaaaaaaaaaaUbObbOabOabmeaaUaaUaaUaaUaaUaaUbNSbYQbYQbYQbYQavrbNSbYQbYQbYQbYQavrbNLbOcbYRbYRbYRbYRbOdaaUaaUaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQhcQibLFbxTbxTbxTbxTbxTbxTcavcavctbcaXcaXcaXcpecavcavcHMcHNcbBaaUaaaaaaaaaaaaaaaaaacOIcOPcOIcOLbRIcfbcFKcFLcFMcFNbChcFObQLbLLbQCbrubrObXDbAybAHbAMbATbBnbQybLMbLNcIjcIkcIlcImcIncIocIpcoAcOMcOQcORcOScOMaaUaaaaaaaaaaaabmebOebOebmebmeaaaaaaaaabmebmebOebOebmeaaaaaaaaaaaaaaaaaabNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbOfaaUbNUbNUbNUbNUbNUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQrcQfbKMbKMbKMbxTcavcavcavcbxctIcbzcavcavcbEckPckQcbBaaUaaaaaaaaaaaaaaaaaacOIcOTcOIcOUbRIcFPcFQcnXcnYcvwbChcFRcFSbMacmZcoYbQBcnabQJcRmcvxcezceAceBbKzbMbbMcbMdbMebMfbMgbKzbxjbxjcOMcOVcOWcOXcOYaaUaaaaaaaaaaaabmebOibOgbOhbmeaaaaaaaaabmebOibOgbOhbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTclfbLdbKMcQsbLfcQhcQtbMibLjcQubKMbLdcmQbxTaaUcavcavcavcavcavcavcavcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUbChbChbChbChbChbRIcpzctDcFTctFcpzcpzctDcvocpzcpzbMkbMlbMlbMnbKzbKzbKzbKzbKzbKzbKzbKzaaUaaUcOMcOZcPacPbcOYaaaaaaaaaaaaaaabOncndbuicnebmeaaaaaaaaabmebOjbuicncbOnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQvcQhcQibLickNcQobKFbKFbLybxTaaUaaUcavcavcavcavcavaaUcbEckTckUcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlbMocFUcoJcvsbMrbMscvObMucvsbMwbMvbMwbMvbMwbMvbMvbMlaaUaaUaaUaaUaaUaaacOMcOMcOMcOYcOYaaaaaaaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOqaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
From 9d6003b920bf2a45acb17f26e6a4f87683467ff5 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Thu, 9 Jul 2020 21:06:03 -0700
Subject: [PATCH 33/51] ok
---
code/modules/atmospherics/environmental/LINDA_turf_tile.dm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm
index 081f0b1d28..1df7d12f60 100644
--- a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm
+++ b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm
@@ -249,7 +249,7 @@
//////////////////////////SPACEWIND/////////////////////////////
/turf/open/proc/consider_pressure_difference(turf/T, difference)
- SSair.high_pressure_delta |= src
+ SSair.high_pressure_delta[src] = TRUE
if(difference > pressure_difference)
pressure_direction = get_dir(src, T)
pressure_difference = difference
@@ -436,7 +436,8 @@
if(!thermal_conductivity)
return FALSE
- SSair.active_super_conductivity |= src
+ SSair.active_super_conductivity[src] = TRUE
+
return TRUE
/turf/open/consider_superconductivity(starting)
From bf97828e5e6deaf79489791332c1e29710dc698b Mon Sep 17 00:00:00 2001
From: EmeraldSundisk <51142887+EmeraldSundisk@users.noreply.github.com>
Date: Thu, 9 Jul 2020 21:06:27 -0700
Subject: [PATCH 34/51] Add files via upload
---
_maps/map_files/CogStation/CogStation.dmm | 146171 ++++++++++++++++++-
1 file changed, 138163 insertions(+), 8008 deletions(-)
diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm
index 14b31ffaff..5f79f64c57 100644
--- a/_maps/map_files/CogStation/CogStation.dmm
+++ b/_maps/map_files/CogStation/CogStation.dmm
@@ -1,8011 +1,138166 @@
-"aaa" = (/turf/open/space/basic,/area/space)
-"aab" = (/obj/structure/sign/poster/official/anniversary_vintage_reprint,/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"})
-"aac" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/fore)
-"aad" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center)
-"aae" = (/obj/docking_port/stationary{dir = 2; dwidth = 4; height = 12; id = "arrivals_stationary"; name = "cog arrivals"; roundstart_template = /datum/map_template/shuttle/arrival/cog; width = 9},/turf/open/space/basic,/area/space)
-"aaf" = (/turf/closed/wall,/area/science/test_area)
-"aag" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/secondary/entry)
-"aah" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
-"aai" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall/rust,/area/maintenance/fore)
-"aaj" = (/turf/closed/wall/r_wall,/area/maintenance/port/fore)
-"aak" = (/obj/machinery/conveyor/auto{id = "pb"},/turf/open/floor/plating/airless,/area/router/aux)
-"aal" = (/turf/closed/wall,/area/maintenance/port/fore)
-"aam" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore)
-"aan" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ai_monitored/security/armory)
-"aao" = (/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore)
-"aap" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port/fore)
-"aaq" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore)
-"aar" = (/obj/machinery/conveyor/auto{dir = 8; id = "pb"},/turf/open/floor/plating/airless,/area/router/aux)
-"aas" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating/airless,/area/space/nearstation)
-"aat" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/observatory"; dir = 1; name = "Observatory APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aau" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/fore"; dir = 8; name = "Port Bow Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aav" = (/obj/machinery/conveyor/auto{dir = 8; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux)
-"aaw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/test_area)
-"aax" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry)
-"aay" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
-"aaz" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ai_monitored/security/armory)
-"aaA" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
-"aaB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen/backroom"; dir = 1; name = "Kitchen Coldroom APC"; pixel_y = 24},/turf/open/floor/plating,/area/hallway/secondary/service)
-"aaC" = (/obj/structure/closet/secure_closet/lethalshots,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/box/firingpins,/obj/item/storage/box/firingpins,/obj/effect/spawner/lootdrop/armory_contraband/metastation,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"aaD" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
-"aaE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Port Bow Maintenance - Fore"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aaF" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"aaG" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/stairs/left,/area/security/brig)
-"aaH" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"; pixel_x = 22},/obj/structure/rack,/obj/item/gun/energy{pixel_y = -6},/obj/item/gun/energy{pixel_y = -3},/obj/item/gun/energy,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"aaI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aaJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"aaK" = (/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port)
-"aaL" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/port)
-"aaM" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/port)
-"aaN" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/security/brig)
-"aaO" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/fore)
-"aaP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
-"aaQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"aaR" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aaS" = (/turf/open/floor/plasteel,/area/security/brig)
-"aaT" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/starboard/fore)
-"aaU" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"aaV" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/fore)
-"aaW" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation)
-"aaX" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aaY" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 21},/turf/open/floor/plating/airless,/area/router/aux)
-"aaZ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aba" = (/obj/machinery/door/airlock/external{name = "Arrival Shuttle Airlock"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abb" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space/basic,/area/solar/starboard/fore)
-"abd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"abe" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/starboard/fore)
-"abf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"abg" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abh" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/port)
-"abi" = (/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port)
-"abj" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
-"abk" = (/obj/structure/closet/crate/secure/gear{name = "Grenade Crate"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/storage/box/flashbangs{pixel_x = 3; pixel_y = 2},/obj/item/storage/box/teargas{pixel_x = 3; pixel_y = -3},/obj/item/grenade/barrier,/obj/item/grenade/barrier,/obj/item/grenade/barrier,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"abl" = (/obj/machinery/airalarm{pixel_y = 24},/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser,/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"abm" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"abn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/gun/ballistic/shotgun/riot{pixel_y = 6},/obj/item/gun/ballistic/shotgun/riot,/obj/item/gun/ballistic/shotgun/riot{pixel_y = -6},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"abo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"abp" = (/turf/closed/wall/r_wall,/area/space/nearstation)
-"abq" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"abr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
-"abs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abt" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abv" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fore)
-"abw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"abx" = (/turf/closed/wall/r_wall,/area/maintenance/solars/port)
-"aby" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/space/nearstation)
-"abz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fore)
-"abA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"abB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/closed/wall,/area/crew_quarters/theatre/clown)
-"abC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/theatre/clown)
-"abD" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/turf/open/floor/plating/airless,/area/router/aux)
-"abE" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/deliveryChute{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
-"abF" = (/obj/machinery/mass_driver{dir = 8; id = "sb_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"abG" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/item/storage/box/trackimp{pixel_x = 4},/obj/item/storage/box/chemimp{pixel_x = -4},/obj/item/storage/lockbox/loyalty,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"abH" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation)
-"abI" = (/obj/structure/table,/obj/structure/mirror{icon_state = "mirror_broke"; pixel_x = -24},/obj/item/storage/briefcase,/obj/item/circuitboard/machine/vending/donksofttoyvendor,/obj/item/storage/pill_bottle/happy,/obj/effect/decal/cleanable/dirt,/obj/item/paper/fluff/cogstation/cluwne,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"abJ" = (/obj/machinery/conveyor{dir = 8; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"abK" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abL" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"abM" = (/turf/closed/wall/r_wall,/area/router/aux)
-"abN" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry)
-"abO" = (/obj/structure/chair/comfy/brown,/obj/item/beacon,/turf/open/floor/carpet/royalblue,/area/bridge)
-"abP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/rack,/obj/item/gun/energy/ionrifle{pixel_y = 4},/obj/item/gun/energy/temperature/security{pixel_y = -4},/obj/item/clothing/suit/armor/laserproof,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"abQ" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/fore)
-"abR" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux)
-"abS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig)
-"abT" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms/purple"; name = "Crew Quarters A APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore)
-"abU" = (/obj/machinery/space_heater,/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms/blue"; name = "Crew Quarters B APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/fore)
-"abV" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/router/aux)
-"abW" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/router/aux)
-"abX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/checkpoint)
-"abY" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"abZ" = (/obj/machinery/conveyor{dir = 1; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"aca" = (/obj/machinery/conveyor{dir = 5; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"acb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall,/area/maintenance/fore)
-"acc" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/preopen{id = "solitarylock"; name = "Brig Lockdown"},/turf/open/floor/plating,/area/security/brig)
-"acd" = (/obj/machinery/button/door{id = "armory"; name = "Armory Blast Door Control"; pixel_x = -28; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"ace" = (/obj/machinery/conveyor{dir = 4; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"acf" = (/obj/machinery/mass_driver{dir = 4; id = "pb_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"acg" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"ach" = (/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"aci" = (/turf/closed/wall,/area/medical{name = "Medical Booth"})
-"acj" = (/obj/machinery/conveyor{dir = 4; id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"ack" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/shield/riot{pixel_x = -6},/obj/item/shield/riot{pixel_x = -6},/obj/item/shield/riot{pixel_x = -6},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"acl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory"; req_one_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"acm" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating/airless,/area/router/aux)
-"acn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aco" = (/turf/open/floor/plating,/area/maintenance/port/fore)
-"acp" = (/turf/open/floor/plating/airless,/area/science/test_area)
-"acq" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"acr" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 7},/turf/open/floor/plating/airless,/area/router/aux)
-"acs" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"act" = (/turf/closed/wall/r_wall,/area/maintenance/fore)
-"acu" = (/obj/structure/table,/obj/machinery/light,/obj/machinery/recharger,/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 6},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 4},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 2},/obj/item/electropack{pixel_x = -10},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"acv" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/fore)
-"acw" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/port/fore)
-"acx" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/router/aux)
-"acy" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/gun/energy/e_gun/advtaser{pixel_y = 6},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_y = -6},/obj/structure/rack,/turf/open/floor/plasteel,/area/ai_monitored/security/armory)
-"acz" = (/obj/machinery/mass_driver{dir = 4; id = "sb_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"acA" = (/obj/machinery/conveyor{dir = 4; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"acB" = (/obj/machinery/conveyor{dir = 6; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"acC" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{id = "armory"; name = "Armory"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"acD" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
-"acE" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/fore)
-"acF" = (/turf/closed/wall,/area/crew_quarters/lounge)
-"acG" = (/obj/machinery/conveyor{dir = 1; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"acH" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"acI" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"acJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"acK" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical{name = "Medical Booth"})
-"acL" = (/obj/machinery/door/poddoor{id = "executionspaceblast"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"acM" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"acN" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"acO" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
-"acP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/fore)
-"acQ" = (/turf/closed/wall,/area/crew_quarters/theatre/clown)
-"acR" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry)
-"acS" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/fore)
-"acT" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/civilian,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"acU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Armory Access"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
-"acV" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"acW" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute,/turf/open/floor/plating/airless,/area/router/aux)
-"acX" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"acY" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"acZ" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"ada" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/ai_monitored/security/armory)
-"adb" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/brig)
-"adc" = (/obj/machinery/conveyor{id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"add" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/crew_quarters/observatory)
-"ade" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/closed/wall/r_wall,/area/maintenance/fore)
-"adf" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/observatory)
-"adg" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"adh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/observatory)
-"adi" = (/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"adj" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/observatory)
-"adk" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"adl" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
-"adm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore)
-"adn" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall,/area/hallway/secondary/entry)
-"ado" = (/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore)
-"adp" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/tcommsat/computer)
-"adq" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry)
-"adr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"ads" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"adt" = (/turf/open/floor/plating,/area/maintenance/fore)
-"adu" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"adv" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/fore)
-"adw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/conveyor/auto{dir = 1; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux)
-"adx" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore)
-"ady" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating/airless,/area/solar/starboard/fore)
-"adz" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space/basic,/area/space/nearstation)
-"adA" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"adB" = (/obj/structure/sign/poster/official/enlist{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"adC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/crew_quarters/observatory)
-"adD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/brig)
-"adE" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/machinery/syndicatebomb/training,/turf/open/floor/plasteel,/area/security/brig)
-"adF" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"adG" = (/obj/machinery/mass_driver{id = "serv_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"adH" = (/obj/machinery/conveyor/auto{dir = 1; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux)
-"adI" = (/obj/machinery/disposal/bin{name = "Service Delivery"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hydroponics)
-"adJ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/closet,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"adK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/medium,/area/security/brig)
-"adL" = (/obj/machinery/mass_driver{id = "starboard_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"adM" = (/turf/closed/wall,/area/crew_quarters/observatory)
-"adN" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/space/basic,/area/space/nearstation)
-"adO" = (/obj/structure/noticeboard{dir = 4; pixel_x = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"adP" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"adQ" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"adR" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/storage/box/beakers,/obj/item/hand_labeler,/obj/item/folder/white{pixel_x = -6; pixel_y = 4},/obj/item/stamp/denied{pixel_x = 8; pixel_y = 8},/obj/item/stamp,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"adS" = (/turf/closed/wall,/area/construction)
-"adT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction)
-"adU" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fore)
-"adV" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/fore"; dir = 1; name = "Starboard Bow Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"adW" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/right,/area/security/brig)
-"adX" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"adY" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"adZ" = (/turf/open/floor/plating,/area/tcommsat/computer)
-"aea" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"aeb" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/brig)
-"aec" = (/turf/closed/wall/r_wall,/area/construction)
-"aed" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aee" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/port)
-"aef" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"aeg" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
-"aeh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig)
-"aei" = (/obj/machinery/light,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 8; name = "Arrival Shuttle Hallway APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aej" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Engine Room"})
-"aek" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ael" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"aem" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aen" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fore)
-"aeo" = (/obj/effect/decal/cleanable/dirt,/obj/item/circuitboard/machine/sleeper,/obj/structure/frame/machine,/turf/open/floor/plasteel,/area/construction)
-"aep" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aeq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aer" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aes" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/chair{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aet" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aeu" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aev" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/fore)
-"aew" = (/turf/closed/wall/r_wall,/area/security/prison)
-"aex" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/table,/obj/item/storage/hypospraykit/regular,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aey" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aez" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aeA" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aeB" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet/fitness"; name = "Fitness Toilets APC"; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"aeC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aeD" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
-"aeE" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass,/turf/open/floor/plasteel,/area/construction)
-"aeF" = (/obj/structure/table,/obj/item/assembly/infra,/obj/item/assembly/voice{pixel_x = 4; pixel_y = 12},/obj/item/assembly/health{pixel_x = -6; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = 4; pixel_y = -2},/turf/open/floor/plating,/area/construction)
-"aeG" = (/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/construction"; dir = 1; name = "Construction Area APC"; pixel_y = 24},/turf/open/floor/plating,/area/construction)
-"aeH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"aeI" = (/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"aeJ" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/security/prison)
-"aeK" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"aeL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aeM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aeN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Router"; req_one_access_txt = "1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aeO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"aeP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/fore)
-"aeQ" = (/obj/structure/closet/secure_closet/brig,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aeR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aeS" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aeT" = (/obj/structure/table,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aeU" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aeV" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aeW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "12"},/turf/open/floor/plasteel,/area/construction)
-"aeX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"aeY" = (/turf/closed/wall,/area/crew_quarters/toilet/fitness)
-"aeZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"afa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"afb" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afc" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afd" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"afe" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aff" = (/turf/closed/wall,/area/crew_quarters/fitness)
-"afg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/fore)
-"afh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/fore; dir = 4; name = "Starboard Bow Solars APC"; pixel_x = 28},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"afi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"afj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afk" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afl" = (/obj/effect/landmark/secequipment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"afm" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction)
-"afn" = (/obj/machinery/biogenerator,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"afo" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/landmark/start/mime,/obj/machinery/power/apc{areastring = "/area/crew_quarters/theatre/mime"; dir = 4; name = "Mime's Office APC"; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime)
-"afp" = (/turf/open/floor/plating,/area/construction)
-"afq" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"afr" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper_bin,/obj/item/pen,/obj/item/camera{pixel_y = -8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"afs" = (/obj/machinery/flasher{id = "executionflash"; pixel_x = -25},/obj/structure/chair/e_chair,/obj/effect/decal/cleanable/ash{pixel_y = -8},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aft" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"afu" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afv" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"afx" = (/obj/machinery/computer/holodeck{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afy" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afA" = (/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"afB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore)
-"afD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/maintenance/port/fore)
-"afE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/theatre/clown)
-"afF" = (/obj/machinery/sparker{id = "executionburn"; pixel_x = 25},/turf/open/floor/plating,/area/maintenance/port/fore)
-"afG" = (/obj/structure/sink{pixel_y = 28},/obj/item/paper/guides/jobs/hydroponics,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"afH" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/warden)
-"afI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afJ" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/plant_analyzer,/obj/item/cultivator,/obj/item/reagent_containers/glass/bucket,/obj/item/reagent_containers/glass/bucket,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"afK" = (/turf/closed/wall,/area/crew_quarters/kitchen)
-"afL" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afM" = (/obj/structure/closet/crate/internals,/obj/machinery/camera{c_tag = "Construction Area"; pixel_x = 22},/obj/item/flashlight,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/turf/open/floor/plating,/area/construction)
-"afN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/washing_machine,/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry)
-"afP" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
-"afR" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/table/reinforced,/obj/item/paicard,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"afS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"afT" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"afU" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/entry)
-"afV" = (/obj/structure/closet/crate,/obj/machinery/light{dir = 1},/obj/item/clothing/gloves/color/white,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/structure/sign/poster/contraband/red_rum{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"afW" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fore)
-"afX" = (/obj/item/cigbutt,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/camera{c_tag = "Port Bow Maintenance - Aft"; dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore)
-"afY" = (/obj/item/seeds/carrot,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"afZ" = (/obj/machinery/disposal/bin{name = "Brig Catering"},/obj/effect/turf_decal/stripes/line{dir = 5; layer = 2.03},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
-"aga" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agb" = (/obj/structure/table,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"agd" = (/obj/structure/fans/tiny/invisible,/obj/docking_port/stationary{dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/space/basic,/area/space)
-"age" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
-"agf" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore)
-"agg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"agh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fore)
-"agi" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"agj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Observatory Access"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"agk" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agl" = (/obj/machinery/disposal/bin{name = "Bar Catering"},/obj/effect/turf_decal/stripes/line{dir = 6; layer = 2.03},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
-"agm" = (/obj/structure/table,/obj/item/sharpener,/obj/item/kitchen/knife,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"agn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/lounge)
-"ago" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"agp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agq" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"agr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ags" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"agt" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"agv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/security/brig)
-"agw" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/displaycase/labcage{desc = "A glass lab container for storing smelly creatures."; name = "stinky panda containment"; start_showpiece_type = /mob/living/simple_animal/pet/redpanda/stinky},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"agx" = (/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plating,/area/construction)
-"agy" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
-"agz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore)
-"agA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"agB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"agC" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"agD" = (/obj/machinery/seed_extractor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"agE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"agF" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/camera{c_tag = "Observatory Viewing Area"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agG" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime)
-"agH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"agI" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/tower,/obj/item/seeds/amanita,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"agJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore)
-"agK" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agL" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/solar/port)
-"agM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agN" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agO" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agP" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"agQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"agR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/suit_storage_unit/engine,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"agU" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 6},/obj/item/storage/toolbox/mechanical{pixel_y = 3},/obj/item/assembly/timer{pixel_x = 6; pixel_y = 4},/obj/item/t_scanner{pixel_x = -2; pixel_y = 5},/obj/item/t_scanner,/obj/item/assembly/igniter{pixel_x = 6; pixel_y = -4},/obj/structure/sign/poster/contraband/missing_gloves{pixel_y = 32},/turf/open/floor/plasteel,/area/storage/tools)
-"agV" = (/obj/machinery/newscaster{pixel_x = 28},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"agW" = (/turf/closed/wall/r_wall,/area/security/processing)
-"agX" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Starboard Bow Solar Exterior Airlock"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"agY" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"agZ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"aha" = (/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ahb" = (/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ahc" = (/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ahd" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ahe" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"ahf" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel,/area/security/processing)
-"ahg" = (/turf/closed/wall/r_wall,/area/security/warden)
-"ahh" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/tcommsat/computer)
-"ahi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/newscaster{pixel_x = 28},/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ahj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Fore Maintenance - Fore"; dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"ahk" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/processing)
-"ahl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel,/area/security/processing)
-"ahm" = (/obj/structure/falsewall/reinforced,/turf/closed/wall,/area/maintenance/port/fore)
-"ahn" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/fore)
-"aho" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing)
-"ahp" = (/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel,/area/security/processing)
-"ahq" = (/turf/open/floor/plasteel,/area/security/processing)
-"ahr" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/ambrosia,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"ahs" = (/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aht" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/storage/box/disks,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ahu" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hydroponics)
-"ahv" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = 32},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"ahw" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ahx" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ahy" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/preopen{id = "solitarylock"; name = "Brig Lockdown"},/turf/open/floor/plating,/area/security/warden)
-"ahz" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness)
-"ahA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/fitness)
-"ahB" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastleft{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"ahC" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"ahD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/fore"; dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/fore)
-"ahE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"ahF" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/mirror{pixel_y = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"ahG" = (/obj/structure/sink{pixel_y = 28},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"ahH" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"ahI" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness"; name = "Fitness Room APC"; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"ahJ" = (/turf/open/floor/wood,/area/crew_quarters/fitness)
-"ahK" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ahL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/observatory)
-"ahM" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"ahN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ahO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"ahP" = (/turf/closed/wall,/area/maintenance/solars/starboard/fore)
-"ahQ" = (/obj/structure/closet/lasertag/blue,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"ahR" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"ahS" = (/obj/structure/closet/cabinet,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"ahT" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/item/storage/bag/plants,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ahU" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ahV" = (/obj/structure/closet/lasertag/red,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"ahW" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"ahX" = (/obj/machinery/deepfryer,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ahY" = (/obj/machinery/vending/autodrobe,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"ahZ" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/radio/off,/obj/machinery/camera{c_tag = "Arrival Shuttle Hallway"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
-"aia" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aib" = (/obj/structure/table/glass,/obj/machinery/light{dir = 1},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
-"aic" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
-"aid" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/cotton,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"aie" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aif" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"aig" = (/obj/machinery/camera{c_tag = "Observatory Holodeck"; dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aih" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aii" = (/obj/structure/closet,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/gps,/turf/open/floor/plasteel,/area/storage/tools)
-"aij" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aik" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ail" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aim" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"ain" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/processing)
-"aio" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"aip" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/port/fore)
-"aiq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/port)
-"air" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 2},/obj/item/stack/cable_coil/red,/obj/item/screwdriver,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/turf/open/floor/plasteel,/area/storage/tools)
-"ais" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing)
-"ait" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aiu" = (/obj/effect/landmark/start/mime,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
-"aiv" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aiw" = (/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aix" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"aiy" = (/obj/structure/bed,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/landmark/start/clown,/obj/item/bedsheet/clown,/obj/structure/sign/plaques/kiddie/perfect_man{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"aiz" = (/turf/closed/wall,/area/maintenance/starboard/fore)
-"aiA" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction)
-"aiB" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen"; name = "Kitchen APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"aiC" = (/turf/closed/wall,/area/hallway/secondary/service)
-"aiD" = (/obj/structure/closet/crate/wooden/toy,/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Clown's Office"; pixel_x = 22},/obj/item/clothing/under/rank/civilian/clown/yellow,/obj/item/clothing/under/rank/civilian/clown/blue,/obj/item/clothing/under/rank/civilian/clown/green,/obj/item/toy/crayon/spraycan/lubecan,/obj/item/megaphone/clown,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"aiE" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/security/processing)
-"aiF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"aiG" = (/obj/structure/closet,/obj/structure/window/reinforced,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/processing)
-"aiH" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/grass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison)
-"aiI" = (/obj/structure/closet/boxinggloves,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aiJ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"aiK" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig)
-"aiL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison)
-"aiM" = (/turf/closed/wall/r_wall,/area/crew_quarters/observatory)
-"aiN" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port)
-"aiO" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/solars/port)
-"aiP" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/solars/port)
-"aiQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aiR" = (/obj/structure/rack,/obj/item/reagent_containers/glass/beaker/waterbottle,/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aiS" = (/obj/item/kirbyplants{icon_state = "plant-06"},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aiT" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Port Bow Maintainance"; req_one_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aiU" = (/obj/structure/disposalpipe/segment,/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aiV" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/turf/open/floor/plating,/area/construction)
-"aiW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Observatory"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory)
-"aiX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/observatory)
-"aiY" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"aiZ" = (/turf/open/floor/plasteel,/area/crew_quarters/observatory)
-"aja" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/caution,/turf/open/floor/plating,/area/construction)
-"ajb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ajc" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space/basic,/area/solar/port)
-"ajd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"aje" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"ajf" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"ajg" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -24},/obj/item/reagent_containers/food/snacks/pie/cream,/obj/item/instrument/bikehorn,/obj/item/flashlight/lamp/bananalamp{pixel_y = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"ajh" = (/obj/structure/table/glass,/obj/item/paper_bin/construction,/obj/item/storage/crayons,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
-"aji" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"ajj" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ajk" = (/obj/effect/landmark/start/clown,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"ajl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ajm" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/washing_machine,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"ajn" = (/obj/machinery/power/smes,/turf/open/floor/plating,/area/tcommsat/computer)
-"ajo" = (/obj/structure/table,/obj/item/toy/dummy,/obj/structure/mirror{pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
-"ajp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory)
-"ajq" = (/obj/effect/landmark/start/clown,/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{areastring = "/area/crew_quarters/theatre/clown"; dir = 4; name = "Clown's Office APC"; pixel_x = 24},/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"ajr" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory)
-"ajs" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/mint,/obj/item/reagent_containers/food/condiment/mayonnaise,/obj/item/bikehorn{pixel_x = -8; pixel_y = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ajt" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating,/area/tcommsat/computer)
-"aju" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"ajv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime)
-"ajw" = (/turf/closed/wall,/area/construction/secondary)
-"ajx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"ajy" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/machinery/computer/prisoner/management,/turf/open/floor/plasteel,/area/security/brig)
-"ajz" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"ajA" = (/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig)
-"ajB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/prison)
-"ajC" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"ajD" = (/obj/structure/chair/stool,/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ajE" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ajF" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/secondary)
-"ajG" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"ajH" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/storage/toolbox/mechanical,/obj/item/crowbar,/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/port/fore)
-"ajI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ajJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ajK" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"ajL" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge"; name = "Lounge APC"; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/observatory)
-"ajM" = (/obj/structure/table,/obj/machinery/reagentgrinder{pixel_y = 6},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -8; pixel_y = 12},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -8; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ajN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore)
-"ajO" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"ajP" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ajQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"ajR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory)
-"ajS" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"ajT" = (/obj/structure/weightmachine/weightlifter,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"ajU" = (/obj/structure/rack,/obj/item/wrench,/obj/item/light/tube,/obj/item/radio/off,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable,/obj/machinery/camera{c_tag = "Security - Interrogation Maintenance"; dir = 1},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/security/brig"; dir = 4; name = "Brig APC"; pixel_x = 26},/turf/open/floor/plating,/area/maintenance/solars/port)
-"ajV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/theatre/mime)
-"ajW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory)
-"ajX" = (/obj/item/pipe{pixel_x = 8; pixel_y = 2},/obj/item/melee/baseball_bat,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/camera{c_tag = "Secondary Construction Area"},/turf/open/floor/plating,/area/construction/secondary)
-"ajY" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/fore)
-"ajZ" = (/obj/item/multitool,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/tcommsat/computer"; dir = 1; name = "Telecomms Access APC"; pixel_y = 28},/turf/open/floor/plating,/area/tcommsat/computer)
-"aka" = (/turf/closed/wall,/area/crew_quarters/bar)
-"akb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Mime's Office"; req_access_txt = "46"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/theatre/mime)
-"akc" = (/obj/machinery/computer/slot_machine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary)
-"akd" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/security/checkpoint)
-"ake" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/rnd/production/techfab/department/service,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"akf" = (/obj/structure/table,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/electronics/firelock,/obj/item/electronics/firealarm,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary)
-"akg" = (/obj/machinery/power/solar_control{dir = 4; id = "foreport"; name = "Port Bow Solar Control"},/obj/structure/sign/warning/electricshock{pixel_x = -32},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"akh" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary)
-"aki" = (/obj/structure/closet/toolcloset,/turf/open/floor/plating,/area/construction/secondary)
-"akj" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"akk" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/turf/open/floor/plating,/area/construction/secondary)
-"akl" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/computer/shuttle/labor{dir = 4},/turf/open/floor/plasteel,/area/security/processing)
-"akm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass,/turf/open/floor/plasteel,/area/construction/secondary)
-"akn" = (/obj/machinery/power/solar_control{id = "forestarboard"; name = "Starboard Bow Solar Control"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"ako" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 7; pixel_y = 24},/obj/effect/decal/cleanable/generic,/turf/open/floor/plasteel,/area/maintenance/port/fore)
-"akp" = (/obj/structure/closet/secure_closet/warden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
-"akq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table/reinforced,/obj/item/storage/box/prisoner,/obj/item/razor,/obj/item/paper/guides/jobs/security/labor_camp,/obj/item/pen,/turf/open/floor/plasteel,/area/security/processing)
-"akr" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/computer/prisoner/gulag_teleporter_computer{dir = 8},/obj/machinery/camera{c_tag = "Security - Prison Shuttle Dock"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/security/processing)
-"aks" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
-"akt" = (/obj/machinery/computer/prisoner/management,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Brig Control APC"; pixel_y = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
-"aku" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
-"akv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"akw" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"akx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Secondary Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction/secondary)
-"aky" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
-"akz" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"akA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/security/warden)
-"akB" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"akC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/electricshock{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/fore)
-"akD" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/item/hand_labeler{pixel_y = 4},/turf/open/floor/plasteel,/area/security/brig)
-"akE" = (/turf/closed/wall/r_wall,/area/router/sec)
-"akF" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"akG" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port/fore)
-"akH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"akI" = (/turf/closed/wall/r_wall,/area/tcommsat/computer)
-"akJ" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Telecommunications Maintenance"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/tcommsat/computer)
-"akK" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
-"akL" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Brig"; pixel_x = 22},/turf/open/floor/plasteel,/area/security/brig)
-"akM" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"akN" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "secblock"; name = "Security Router"},/obj/machinery/conveyor/auto{id = "sec"},/turf/open/floor/plating,/area/router/sec)
-"akO" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/computer/security/labor{dir = 4},/turf/open/floor/plasteel,/area/security/processing)
-"akP" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "Security Router"},/turf/open/floor/plating,/area/router/sec)
-"akQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"akR" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"akS" = (/obj/structure/rack,/obj/structure/window/reinforced/tinted{dir = 1},/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"akT" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel,/area/security/processing)
-"akU" = (/obj/machinery/door/window/northleft{name = "Showers"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"akV" = (/obj/structure/rack,/obj/structure/window/reinforced/tinted{dir = 1},/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"akW" = (/obj/structure/table/wood,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/structure/sign/departments/restroom{pixel_x = -32},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"akX" = (/turf/closed/wall,/area/crew_quarters/dorms/purple)
-"akY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
-"akZ" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"ala" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"alb" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"alc" = (/obj/structure/fermenting_barrel,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"ald" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"ale" = (/turf/closed/wall,/area/crew_quarters/dorms/blue)
-"alf" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"alg" = (/obj/structure/frame/machine,/obj/item/circuitboard/computer/arcade/minesweeper,/turf/open/floor/plating,/area/construction/secondary)
-"alh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ali" = (/turf/open/floor/plating,/area/construction/secondary)
-"alj" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel,/area/security/processing)
-"alk" = (/obj/item/caution,/turf/open/floor/plating,/area/construction/secondary)
-"all" = (/obj/structure/table/glass,/obj/item/wrench{pixel_x = 2; pixel_y = 4},/obj/item/reagent_containers/glass/bottle/mutagen{pixel_x = -4},/turf/open/floor/grass,/area/hydroponics)
-"alm" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics)
-"aln" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/grass,/area/hydroponics)
-"alo" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"alp" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/construction/secondary)
-"alq" = (/obj/machinery/conveyor/auto{id = "sec"},/turf/open/floor/plating,/area/router/sec)
-"alr" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"als" = (/obj/machinery/mass_driver{dir = 1; id = "sec_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/sec)
-"alt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external/glass{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing)
-"alu" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"alv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing)
-"alw" = (/obj/machinery/light{dir = 8},/obj/effect/landmark/start/warden,/obj/machinery/camera{c_tag = "Security - Brig Control"; dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/warden)
-"alx" = (/turf/open/floor/plasteel,/area/maintenance/port/fore)
-"aly" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
-"alz" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"alA" = (/obj/structure/bed,/obj/item/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"alB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/fore)
-"alC" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/port/fore)
-"alD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"alE" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"alF" = (/obj/machinery/photocopier,/obj/machinery/newscaster/security_unit{pixel_y = -28},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/paper/guides/cogstation/letter_sec,/turf/open/floor/plasteel,/area/security/warden)
-"alG" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/port/fore)
-"alH" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = -8},/obj/item/storage/box/ingredients{pixel_x = 6},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"alI" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"alJ" = (/obj/machinery/vending/hydroseeds,/turf/open/floor/grass,/area/hydroponics)
-"alK" = (/obj/effect/landmark/xmastree,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"alL" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"alM" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"alN" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fore)
-"alO" = (/obj/structure/table/wood,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"alP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"alQ" = (/obj/structure/dresser,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"alR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"alS" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/reagent_containers/rag,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"alT" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"alU" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"alV" = (/obj/structure/bed,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"alW" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/security/processing)
-"alX" = (/obj/structure/table,/obj/item/storage/box/ingredients,/obj/item/clothing/head/chefhat,/obj/item/reagent_containers/glass/beaker,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"alY" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/item/t_scanner,/turf/open/floor/plating,/area/construction/secondary)
-"alZ" = (/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"})
-"ama" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/warden)
-"amb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore)
-"amc" = (/turf/closed/wall,/area/storage/tools)
-"amd" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/port/fore)
-"ame" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden)
-"amf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"amg" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/processing)
-"amh" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/recharger,/obj/item/pen/red{pixel_y = 4},/obj/item/pen/blue{pixel_x = -4; pixel_y = -4},/turf/open/floor/plasteel,/area/security/brig)
-"ami" = (/obj/structure/sign/poster/contraband/grey_tide{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/port/fore)
-"amj" = (/turf/closed/wall/rust,/area/maintenance/port/fore)
-"amk" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/maintenance/port/fore)
-"aml" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"amm" = (/obj/structure/closet/crate/secure/weapon{desc = "A secure clothing crate."; name = "formal uniform crate"; req_access_txt = "3"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/warden)
-"amn" = (/obj/structure/cable{icon_state = "2-4"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/construction/secondary)
-"amo" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"amp" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore)
-"amq" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/solars/port)
-"amr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ams" = (/obj/machinery/camera{c_tag = "Fitness Toilets"; pixel_x = 22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"amt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"amu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"amv" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"amw" = (/obj/structure/sign/poster/contraband/eat{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"amx" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"amy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/bar)
-"amz" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"amA" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"amB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden)
-"amC" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"amD" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"amE" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/cable,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/bar"; dir = 8; name = "Bar APC"; pixel_x = -26},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"amF" = (/obj/effect/landmark/start/cook,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"amG" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/chapel/main)
-"amH" = (/obj/item/crowbar/large{pixel_y = 3},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary)
-"amI" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/warden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/warden)
-"amJ" = (/obj/structure/lattice,/obj/structure/sign/departments/botany{pixel_x = -32},/turf/open/space/basic,/area/space/nearstation)
-"amK" = (/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"amL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/service)
-"amM" = (/obj/machinery/light,/obj/machinery/disposal/bin{name = "Kitchen Mailbox"},/obj/effect/turf_decal/delivery/white,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"amN" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/tools)
-"amO" = (/obj/item/bedsheet/mime,/obj/structure/bed,/obj/effect/landmark/start/mime,/obj/machinery/camera{c_tag = "Mime's Office"; pixel_x = 22},/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
-"amP" = (/obj/effect/landmark/start/assistant,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
-"amQ" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Reception Window"},/obj/machinery/door/window/westleft{name = "Warden's Desk"; req_one_access_txt = "2"},/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/warden)
-"amR" = (/obj/machinery/light/small,/obj/machinery/light_switch{pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/secondary)
-"amS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
-"amT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/construction/secondary)
-"amU" = (/obj/structure/beebox,/obj/item/queen_bee/bought,/turf/open/floor/grass,/area/hydroponics)
-"amV" = (/turf/open/floor/grass,/area/hydroponics)
-"amW" = (/obj/structure/table/glass,/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = -4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = -4},/obj/item/book/manual/hydroponics_pod_people{pixel_x = 4; pixel_y = 4},/obj/item/paper/guides/jobs/hydroponics{pixel_x = 4; pixel_y = 4},/turf/open/floor/grass,/area/hydroponics)
-"amX" = (/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/dark,/area/security/processing)
-"amY" = (/turf/closed/wall,/area/chapel/main)
-"amZ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"ana" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"anb" = (/obj/structure/table,/obj/item/lipstick/black,/obj/item/lipstick/random{pixel_x = 2; pixel_y = 4},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime)
-"anc" = (/obj/item/cigbutt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/secondary)
-"and" = (/turf/closed/wall/r_wall,/area/chapel/main)
-"ane" = (/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"anf" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/construction/secondary"; dir = 1; name = "Secondary Construction Area APC"; pixel_y = 24},/turf/open/floor/plating,/area/construction/secondary)
-"ang" = (/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"})
-"anh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/paper_bin,/obj/item/pen,/obj/item/clothing/glasses/regular,/obj/machinery/door/window/northright{name = "Medical Booth Desk"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"ani" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/poster/official/duelshotgun{pixel_y = -32},/turf/open/floor/plasteel,/area/security/brig)
-"anj" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ank" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/machinery/camera{c_tag = "Crew Lounge"; dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"anl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"anm" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/disposal)
-"ann" = (/obj/effect/landmark/event_spawn,/turf/open/floor/goonplaque{desc = "It reads 'In honor of spacemen past, whose work allowed this station to find its new home. The fact that you stand on a station originally built light years away is a definitive representation of the ingenuity of the human spirit.' Beneath this is the image of a spaceman rocketing upwards by means of what appears to be a match and flatulence."},/area/hallway/secondary/entry)
-"ano" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"anp" = (/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
-"anq" = (/turf/closed/wall,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"anr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"ans" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/destTagger,/obj/machinery/button/door{id = "secblock"; name = "Router Access Control"; pixel_x = 8; pixel_y = 24; req_access_txt = "1"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/router/sec)
-"ant" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"anu" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"anv" = (/obj/item/stack/sheet/plasteel{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/beakers,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/construction)
-"anw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"anx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/tcommsat/computer)
-"any" = (/obj/structure/table/wood,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"anz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"anA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fitness Room Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness)
-"anB" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"anC" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/delivery,/obj/machinery/requests_console{department = "Security Router"; name = "Security Router RC"; pixel_y = 32},/turf/open/floor/plasteel,/area/router/sec)
-"anD" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"anE" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"anF" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen)
-"anG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"anH" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/checkpoint)
-"anI" = (/obj/machinery/computer/arcade/orion_trail,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"anJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/item/paper_bin,/obj/item/stamp/denied{pixel_x = 8; pixel_y = 8},/obj/item/stamp{pixel_x = 6; pixel_y = 4},/obj/item/pen,/obj/machinery/power/apc{areastring = "/area/security/checkpoint"; dir = 4; name = "Security Checkpoint APC"; pixel_x = 24},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/checkpoint)
-"anK" = (/turf/closed/wall/r_wall,/area/security/detectives_office)
-"anL" = (/obj/machinery/computer/arcade/minesweeper,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"anM" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools)
-"anN" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/analyzer,/obj/item/wrench{pixel_y = 4},/turf/open/floor/plasteel,/area/storage/tools)
-"anO" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/storage/belt/utility,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/tools)
-"anP" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"anQ" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"anR" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"anS" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/power/apc{areastring = "/area/storage/tools"; name = "Auxiliary Tool Storage APC"; pixel_y = -26},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 4; pixel_y = -22},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/storage/tools)
-"anT" = (/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"anU" = (/turf/closed/wall/r_wall,/area/security/brig)
-"anV" = (/turf/open/floor/plating,/area/maintenance/solars/port)
-"anW" = (/obj/machinery/conveyor{dir = 1; id = "sec_off"},/turf/open/floor/plating,/area/router/sec)
-"anX" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"anY" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"anZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"aoa" = (/obj/item/clockwork/component/geis_capacitor/fallen_armor,/obj/structure/table/bronze,/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"aob" = (/obj/structure/closet/emcloset,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/solars/port)
-"aoc" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/machinery/requests_console{department = "Recreation"; name = "Recreation RC"; pixel_y = -32},/obj/item/storage/box/drinkingglasses,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -4; pixel_y = 2},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aod" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden)
-"aoe" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"aof" = (/obj/structure/sign/poster/official/foam_force_ad{pixel_y = 32},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"aog" = (/turf/open/floor/grass,/area/hydroponics/garden{name = "Nature Preserve"})
-"aoh" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aoi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"aoj" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/security/checkpoint)
-"aok" = (/obj/structure/chair/wood/normal{dir = 1},/obj/machinery/button/door{id = "Dorm1"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = -7; pixel_y = -24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"aol" = (/obj/machinery/button/door{id = "Dorm3"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = 7; pixel_y = -24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"aom" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"aon" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"aoo" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary)
-"aop" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/construction/secondary)
-"aoq" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/warden)
-"aor" = (/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"aos" = (/obj/structure/window/reinforced,/obj/structure/closet/athletic_mixed,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aot" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aou" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"aov" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics)
-"aow" = (/mob/living/simple_animal/banana_spider{name = "Henry"},/turf/open/floor/grass,/area/hydroponics)
-"aox" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"aoy" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/camera{c_tag = "Security Checkpoint"; pixel_x = 22},/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint)
-"aoz" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary)
-"aoA" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/machinery/door/window/westright{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint)
-"aoB" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera{c_tag = "Security - Prison Beds"; dir = 8; pixel_y = -22},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/security/prison"; dir = 4; name = "Prison APC"; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aoC" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aoD" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint)
-"aoE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/main)
-"aoF" = (/turf/closed/wall/r_wall,/area/security/main)
-"aoG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint)
-"aoH" = (/obj/machinery/door/airlock/external/glass{name = "Port Bow Solars External Access"; req_access_txt = "10;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aoI" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics)
-"aoJ" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/space_heater,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"aoK" = (/turf/closed/wall/r_wall,/area/router/service)
-"aoL" = (/obj/structure/chair/stool,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"aoM" = (/obj/structure/closet/crate,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/capacitor,/turf/open/floor/plating,/area/construction)
-"aoN" = (/obj/structure/closet/crate/internals,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/flashlight,/obj/item/flashlight,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/item/clothing/head/hardhat/orange,/obj/item/clothing/head/hardhat/orange,/turf/open/floor/plasteel,/area/storage/tools)
-"aoO" = (/turf/open/floor/plasteel,/area/storage/tools)
-"aoP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aoQ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"aoR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/warden)
-"aoS" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{id = "serv_off"},/obj/machinery/door/poddoor/preopen{id = "servblock"; name = "Service Router"},/turf/open/floor/plating,/area/router/service)
-"aoT" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "servblock"; name = "Service Router"},/turf/open/floor/plating,/area/router/service)
-"aoU" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"aoV" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aoW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Port Bow Solars External Access"; req_access_txt = "10;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aoX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
-"aoY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aoZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"apa" = (/obj/structure/chair/sofa/right,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
-"apb" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"apc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig)
-"apd" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"})
-"ape" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/port/fore)
-"apf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"apg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/router/sec)
-"aph" = (/turf/open/floor/plasteel/dark,/area/security/brig)
-"api" = (/obj/machinery/door/window/southright{name = "Weightroom"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"apj" = (/obj/structure/window/reinforced,/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"apk" = (/obj/structure/closet/lasertag/blue,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"apl" = (/obj/structure/chair/sofa/right,/obj/item/clothing/head/beret/black,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"apm" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"apn" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/sec)
-"apo" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction)
-"app" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/sec)
-"apq" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/secondary/entry)
-"apr" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/massdriver{id = "sec_out"; pixel_x = 24; pixel_y = 24},/turf/open/floor/plasteel,/area/router/sec)
-"aps" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/security{name = "Security EVA Prep Room"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing)
-"apt" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction)
-"apu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
-"apv" = (/turf/closed/wall,/area/hallway/secondary/entry)
-"apw" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/assistant,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"apx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"apy" = (/obj/machinery/vr_sleeper{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"apz" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"apA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/dorms/purple)
-"apB" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/hydroponics/garden{name = "Nature Preserve"})
-"apC" = (/turf/closed/wall/r_wall,/area/hydroponics)
-"apD" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Room 1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"apE" = (/obj/machinery/biogenerator,/turf/open/floor/grass,/area/hydroponics)
-"apF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"apG" = (/mob/living/simple_animal/chicken{name = "Featherbottom"; real_name = "Featherbottom"},/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"apH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/main)
-"apI" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"apJ" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/machinery/camera{c_tag = "Hydroponics - Fore"; dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"apK" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/hydroponics)
-"apL" = (/obj/structure/chair/sofa/left,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"apM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"apN" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Room 3"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"apO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/dorms/blue)
-"apP" = (/obj/structure/table,/obj/item/radio/intercom{name = "Station Intercom (Common)"},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"apQ" = (/obj/machinery/door/airlock/security/glass{name = "Solitary Confinement"; req_one_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"apR" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 1; pixel_y = 3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -5; pixel_y = 7},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"apS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"apT" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction)
-"apU" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/gun/ballistic/revolver/russian,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"apV" = (/turf/closed/wall/rust,/area/chapel/main)
-"apW" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/kitchen)
-"apX" = (/obj/structure/fermenting_barrel,/turf/open/floor/grass,/area/hydroponics)
-"apY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore)
-"apZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Fitness Toilets"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"aqa" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aqb" = (/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Secondary Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction/secondary)
-"aqc" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall/r_wall,/area/medical{name = "Medical Booth"})
-"aqd" = (/obj/structure/chair/sofa/right,/obj/machinery/camera{c_tag = "Chapel - Fore"},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
-"aqe" = (/obj/machinery/conveyor{id = "serv_off"},/turf/open/floor/plating,/area/router/service)
-"aqf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aqg" = (/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room"; dir = 8; pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aqh" = (/obj/structure/chair/sofa/left,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aqi" = (/obj/structure/table,/obj/item/clipboard,/obj/item/paper_bin{pixel_x = 2; pixel_y = 4},/obj/item/pen,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aqj" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aqk" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"aql" = (/turf/closed/wall/r_wall,/area/crew_quarters/bar)
-"aqm" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"aqn" = (/turf/closed/wall/r_wall,/area/medical{name = "Medical Booth"})
-"aqo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"aqp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"aqq" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/storage/tools)
-"aqr" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/tools)
-"aqs" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"aqt" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/sign/poster/contraband/hacking_guide{pixel_x = 32},/turf/open/floor/plasteel,/area/storage/tools)
-"aqu" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"aqv" = (/obj/structure/sign/poster/official/no_erp{pixel_x = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"aqw" = (/turf/closed/wall/r_wall/rust,/area/maintenance/solars/port)
-"aqx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"aqy" = (/obj/machinery/mass_driver{dir = 1; id = "serv_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/service)
-"aqz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
-"aqA" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space/basic,/area/solar/starboard/aft)
-"aqB" = (/turf/closed/wall,/area/hydroponics)
-"aqC" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics)
-"aqD" = (/obj/machinery/vending/sustenance,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aqE" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/sec)
-"aqF" = (/turf/open/floor/plasteel,/area/router/sec)
-"aqG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"aqH" = (/obj/machinery/power/apc{name = "Security Router APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/router/sec)
-"aqI" = (/obj/structure/flora/ausbushes/genericbush,/turf/open/floor/grass,/area/hydroponics)
-"aqJ" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/router/sec)
-"aqK" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aqL" = (/turf/closed/wall,/area/security/checkpoint)
-"aqM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port)
-"aqN" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/hallway/secondary/service)
-"aqO" = (/obj/machinery/door/airlock/engineering{name = "Engineering EVA"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"aqP" = (/obj/structure/chair/stool,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"aqQ" = (/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"aqR" = (/obj/item/grown/bananapeel,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"aqS" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"aqT" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"aqU" = (/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"})
-"aqV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Purple Dorms Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/purple)
-"aqW" = (/obj/structure/table,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/book/manual/chef_recipes,/obj/item/storage/box/donkpockets,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aqX" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; icon_state = "roomnum"; name = "Room Number 1"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"aqY" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/security/brig)
-"aqZ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"ara" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"arb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/barbershop"; dir = 4; name = "Barbershop APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/port/fore)
-"arc" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/toy/figure/clown,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"ard" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"are" = (/obj/machinery/chem_heater,/obj/effect/turf_decal/stripes/end{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"arf" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"arg" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"arh" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"ari" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/processing)
-"arj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/purple)
-"ark" = (/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"arl" = (/obj/machinery/vending/kink,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Locker Room"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"arm" = (/obj/structure/chair/sofa/right,/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"arn" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools)
-"aro" = (/obj/structure/closet/firecloset,/obj/machinery/camera{c_tag = "Starboard Bow Maintenance - Starboard"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"arp" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/disposal)
-"arq" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
-"arr" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plating,/area/maintenance/solars/port)
-"ars" = (/obj/structure/chair/stool,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/landmark/start/bartender,/obj/item/clothing/under/costume/maid,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"art" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aru" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/blue)
-"arv" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian{pixel_x = 1; pixel_y = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"arw" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Crew Quarters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"arx" = (/obj/machinery/button/door{id = "kitchenlock"; name = "Kitchen Lockup"; pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ary" = (/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"arz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"arA" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"arB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"arC" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 4; icon_state = "roomnum"; name = "Room Number 3"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"arD" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Blue Dorms Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/crew_quarters/dorms/blue)
-"arE" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/central)
-"arF" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"arG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"arH" = (/obj/machinery/disposal/bin{name = "Detective's Mailbox"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"arI" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness)
-"arJ" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"arK" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/destTagger,/obj/machinery/button/massdriver{id = "serv_out"; pixel_x = 8; pixel_y = -4},/obj/machinery/requests_console{department = "Service Router"; name = "Service Router RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/router/service)
-"arL" = (/obj/machinery/conveyor{dir = 1; id = "serv_off"},/turf/open/floor/plating,/area/router/service)
-"arM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/router/service)
-"arN" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "gas to sauna"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"arO" = (/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"arP" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"arQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"arR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/falsewall/reinforced{req_access_txt = "1"},/turf/open/floor/plasteel,/area/router/sec)
-"arS" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/dorms/purple)
-"arT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig)
-"arU" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 1; icon_state = "roomnum"; name = "Room Number 2"; pixel_y = -28},/obj/machinery/camera{c_tag = "Dormitories - Purple"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"arV" = (/obj/machinery/vr_sleeper{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/sign/poster/official/soft_cap_pop_art{pixel_x = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"arW" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"arX" = (/obj/machinery/computer/med_data{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"arY" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"arZ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"asa" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"asb" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"asc" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"asd" = (/turf/closed/wall/rust,/area/maintenance/starboard/fore)
-"ase" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Purple Dorms"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms/purple)
-"asf" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Blue Dorms"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms/blue)
-"asg" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"ash" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"asi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"asj" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
-"ask" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Security - Prison Fore"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/mob/living/simple_animal/mouse/brown/Tom,/turf/open/floor/plasteel,/area/security/prison)
-"asl" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/camera{c_tag = "Port Bow Solar Maintenance"; dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port)
-"asm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/hallway/secondary/service"; dir = 8; name = "Service Hall APC"; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"asn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"aso" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 8; icon_state = "roomnum"; name = "Room Number 4"; pixel_y = -28},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Dormitories - Blue"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"asp" = (/obj/structure/chair/comfy/brown,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"asq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/dorms/blue)
-"asr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore)
-"ass" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/light/small,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"ast" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"asu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/rust,/area/maintenance/disposal)
-"asv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"asw" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"asx" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"asy" = (/obj/effect/landmark/start/assistant,/obj/machinery/holopad,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry)
-"asz" = (/obj/structure/toilet{dir = 4},/obj/machinery/camera{c_tag = "Security - Prison Bathroom"; dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison)
-"asA" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plating,/area/router/service)
-"asB" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"asC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"asD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"asE" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/button/door{id = "servblock"; name = "Router Access Control"; pixel_x = 8; pixel_y = 24; req_one_access_txt = "12;25;26;28;35;46"},/turf/open/floor/plasteel,/area/router/service)
-"asF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/security{name = "Labor Camp Arrivals"},/turf/open/floor/plasteel,/area/security/processing)
-"asG" = (/obj/structure/sign/warning/nosmoking/circle,/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"})
-"asH" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port)
-"asI" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"asJ" = (/turf/closed/wall,/area/crew_quarters/toilet)
-"asK" = (/obj/machinery/vr_sleeper{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"asL" = (/turf/closed/wall,/area/security/brig)
-"asM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"})
-"asN" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"asO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"asP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"asQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/router/service)
-"asR" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"asS" = (/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"asT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/simple_animal/mouse/gray{desc = "A strangely observant rodent."; name = "Remy"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"asU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Router"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"asV" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"asW" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/security/main)
-"asX" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/tape,/obj/item/radio/off,/turf/open/floor/plasteel/dark,/area/security/brig)
-"asY" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/item/clipboard,/turf/open/floor/plasteel/dark,/area/security/brig)
-"asZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/service)
-"ata" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main)
-"atb" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"atc" = (/turf/closed/wall,/area/security/main)
-"atd" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Service Router APC"; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/router/service)
-"ate" = (/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/router/service)
-"atf" = (/turf/closed/wall/r_wall/rust,/area/maintenance/starboard/central)
-"atg" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/router/service)
-"ath" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/router/service)
-"ati" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/turf/open/floor/plasteel,/area/router/service)
-"atj" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/security/brig)
-"atk" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"atl" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/router/service)
-"atm" = (/obj/structure/table,/obj/item/kitchen/rollingpin,/obj/item/reagent_containers/food/condiment/enzyme,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"atn" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plasteel,/area/router/service)
-"ato" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"atp" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Room 2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"atq" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/processing)
-"atr" = (/obj/machinery/door/airlock{id_tag = "Dorm4"; name = "Room 4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"ats" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{name = "Clown's Office"; req_access_txt = "46"},/turf/open/floor/plating,/area/crew_quarters/theatre/clown)
-"att" = (/turf/open/floor/plating,/area/maintenance/starboard/central)
-"atu" = (/obj/machinery/computer/cargo/request{dir = 4},/turf/open/floor/plating,/area/router/service)
-"atv" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"atw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/service)
-"atx" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/router/service)
-"aty" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/router/service)
-"atz" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"atA" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"atB" = (/obj/machinery/shower{dir = 4},/obj/item/bikehorn/rubberducky,/obj/structure/sign/poster/official/no_erp{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"atC" = (/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"atD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router/service)
-"atE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/router/service)
-"atF" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"atG" = (/turf/open/floor/plasteel/dark,/area/router/service)
-"atH" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/power/apc{areastring = "/area/security/processing"; name = "Labor Shuttle Dock APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/security/processing)
-"atI" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/warden)
-"atJ" = (/turf/closed/wall/rust,/area/crew_quarters/theatre/clown)
-"atK" = (/obj/structure/chair{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"atL" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"atM" = (/obj/structure/chair{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"atN" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"atO" = (/obj/structure/table,/obj/item/storage/bag/tray,/obj/item/clothing/gloves/color/white,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/paper/guides/cogstation/cooks,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"atP" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"atQ" = (/obj/structure/closet/lasertag/red,/obj/structure/sign/poster/official/space_cops{pixel_x = -32},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"atR" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"atS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access_txt = "25"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"atT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"atU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/security/brig)
-"atV" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"atW" = (/obj/machinery/disposal/bin{name = "Parolee Exit"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig)
-"atX" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/stock_parts/cell/high/plus,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/tools)
-"atY" = (/obj/machinery/button/door{id = "Dorm2"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = -7; pixel_y = 24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"atZ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/hallway/secondary/entry)
-"aua" = (/obj/structure/chair/wood/normal,/obj/machinery/button/door{id = "Dorm4"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = 7; pixel_y = 24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"aub" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"auc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aud" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"aue" = (/obj/structure/closet/crate/hydroponics,/obj/item/seeds/random,/turf/open/floor/plating,/area/router/service)
-"auf" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service)
-"aug" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/storage/bag/plants,/turf/open/floor/plasteel,/area/hydroponics)
-"auh" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/pill_bottle/dice,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aui" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Freezer AC Pump"},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"auj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/router/service)
-"auk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/service)
-"aul" = (/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/mouse/brown{name = "Chewy"},/turf/open/floor/plating,/area/hallway/secondary/service)
-"aum" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/service)
-"aun" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/hydroponics)
-"auo" = (/obj/machinery/light{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/machinery/reagentgrinder{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics)
-"aup" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/table/glass,/obj/item/reagent_containers/glass/bucket{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"auq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/router/service)
-"aur" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/router/service)
-"aus" = (/turf/open/floor/engine,/area/engine/gravity_generator)
-"aut" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"auu" = (/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel/dark,/area/router/service)
-"auv" = (/obj/structure/bed,/obj/item/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"auw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"aux" = (/obj/machinery/light/small,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"auy" = (/turf/open/floor/plasteel,/area/hydroponics)
-"auz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/chem_master,/turf/open/floor/plasteel,/area/hydroponics)
-"auA" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/beacon,/turf/open/floor/plasteel,/area/hydroponics)
-"auB" = (/obj/structure/dresser,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple)
-"auC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"auD" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"auE" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"auF" = (/obj/structure/table/wood,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"auG" = (/obj/machinery/light/small,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"auH" = (/obj/structure/girder/displaced,/obj/item/reagent_containers/rag,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"auI" = (/obj/structure/closet/secure_closet/brig,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"auJ" = (/obj/structure/bed,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue)
-"auK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/security/brig)
-"auL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plating,/area/maintenance/solars/port)
-"auM" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/official/bless_this_spess{pixel_x = -32},/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"auN" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"auO" = (/obj/structure/closet/crate/freezer,/turf/open/floor/plating,/area/router/service)
-"auP" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/start/assistant/override,/turf/open/floor/plasteel,/area/security/main)
-"auQ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"auR" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/power/apc{areastring = "/area/engine/secure_construction"; dir = 1; name = "Engineering Construction Area APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"auS" = (/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"auT" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"auU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/router/service)
-"auV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
-"auW" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/poster/official/the_owl{pixel_y = 32},/turf/open/floor/plasteel,/area/security/main)
-"auX" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/right,/area/router/service)
-"auY" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"auZ" = (/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"ava" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/service)
-"avb" = (/turf/closed/wall,/area/hallway/secondary/civilian)
-"avc" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avd" = (/obj/structure/sign/warning{name = "\improper COLD TEMPERATURES"; pixel_x = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"ave" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"avf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/secondary/civilian)
-"avg" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/turnstile{name = "Genpop Entrance Turnstile"; icon_state = "turnstile_map"; dir = 8; req_access_txt = "69"},/turf/open/floor/plasteel,/area/security/prison)
-"avh" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/tools)
-"avi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/abandoned{name = "Port Bow Maintainance"; req_one_access_txt = "13"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"avj" = (/obj/machinery/photocopier,/turf/open/floor/carpet/red,/area/security/brig)
-"avk" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/plant_analyzer,/obj/structure/table/glass,/obj/machinery/plantgenes{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics)
-"avl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"avm" = (/turf/closed/wall/r_wall,/area/hallway/secondary/civilian)
-"avn" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/poster/official/spiderlings{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"avo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"avp" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service)
-"avq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/service)
-"avr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/starboard/aft)
-"avs" = (/turf/closed/wall,/area/router/service)
-"avt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"avu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"avv" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating,/area/space/nearstation)
-"avw" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/sign/poster/official/wtf_is_co2{pixel_x = 32},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"avx" = (/obj/structure/table,/obj/item/hand_labeler,/obj/item/crowbar/large,/obj/item/crowbar{pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service)
-"avy" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating,/area/space/nearstation)
-"avz" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service)
-"avA" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"avB" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service)
-"avC" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avD" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/storage/belt/utility,/obj/item/tank/internals/air,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service)
-"avE" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "generator to hot loop"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison)
-"avG" = (/turf/closed/wall,/area/security/prison)
-"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avJ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/security/main)
-"avK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avL" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"avM" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/main)
-"avN" = (/turf/closed/wall,/area/crew_quarters/barbershop)
-"avO" = (/obj/structure/table,/obj/structure/bedsheetbin/color,/obj/item/clothing/gloves/color/white,/obj/machinery/camera{c_tag = "Laundry Room"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"avP" = (/obj/structure/reagent_dispensers/keg,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"avQ" = (/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avR" = (/obj/machinery/washing_machine,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"avS" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"avT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"avU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avV" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"avW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/solars/port)
-"avX" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"avY" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/obj/machinery/door/window/westleft{name = "AI Core Access"; req_access_txt = "65"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"avZ" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"awa" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible,/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"awb" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"awc" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"awd" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"awe" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"awf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"awg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Fore"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"awh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/poster/official/fruit_bowl{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"awi" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"awj" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"awk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"awl" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"awm" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/solars/port)
-"awn" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"awo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"awp" = (/turf/closed/wall,/area/hydroponics/lobby)
-"awq" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/space/nearstation)
-"awr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aws" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"})
-"awt" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/firedoor,/obj/item/folder/red,/obj/machinery/door/window/westleft{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint)
-"awu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/maintenance/solars/port)
-"awv" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/structure/table,/obj/item/clothing/gloves/color/white,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"aww" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"awx" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hydroponics/lobby)
-"awy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Laundry Room Maintenance"; req_one_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/barbershop)
-"awz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"awA" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"awB" = (/obj/machinery/microwave,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/bar)
-"awC" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"awD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/storage/tools)
-"awE" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/tools)
-"awF" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"awG" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"awH" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/machinery/turnstile{name = "Genpop Entrance Turnstile"; icon_state = "turnstile_map"; dir = 8; req_access_txt = "69"},/turf/open/floor/plasteel,/area/security/prison)
-"awI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"awJ" = (/obj/effect/turf_decal/bot,/obj/machinery/flasher/portable,/turf/open/floor/plasteel,/area/security/brig)
-"awK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"awL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"awM" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar/large,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"awN" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore)
-"awO" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/central"; dir = 1; name = "Central Port Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/port/central)
-"awP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"awQ" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main)
-"awR" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"awS" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"awT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 7},/turf/open/floor/plasteel,/area/security/main)
-"awU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"awV" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/storage/tools)
-"awW" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"awX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"awY" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/button/door{id = "solitarylock"; name = "Solitary Lockdown"; pixel_x = -24; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/brig)
-"awZ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"axa" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"axb" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"axc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/closed/wall/r_wall,/area/maintenance/solars/port)
-"axd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"axe" = (/obj/structure/closet/crate,/obj/item/storage/belt/utility,/obj/item/clothing/glasses/meson,/turf/open/floor/plating,/area/maintenance/fore)
-"axf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"axg" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/camera{c_tag = "Arcade"; dir = 4},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"axh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/fore)
-"axi" = (/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig)
-"axj" = (/obj/machinery/vr_sleeper{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"axk" = (/obj/item/storage/pill_bottle/penis_enlargement,/turf/open/floor/plasteel/freezer,/area/security/prison)
-"axl" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/item/soap/homemade,/turf/open/floor/plasteel/freezer,/area/security/prison)
-"axm" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/security/prison)
-"axn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"axo" = (/obj/structure/table,/obj/item/tape,/obj/item/wrench,/obj/item/radio/off,/turf/open/floor/plasteel,/area/security/brig)
-"axp" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"axq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"axr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"axs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"axt" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"axu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/brig)
-"axv" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/clothing/accessory/armband/deputy,/obj/item/encryptionkey/headset_sec,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/clothing/head/cowboyhat/sec,/turf/open/floor/plasteel,/area/security/brig)
-"axw" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/security/main)
-"axx" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/camera{c_tag = "Fore Maintenance - Aft"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"axy" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"axz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/reagent_dispensers/peppertank{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
-"axA" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/science,/obj/item/encryptionkey/headset_sci,/turf/open/floor/plasteel,/area/security/brig)
-"axB" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/medblue,/obj/item/encryptionkey/headset_med,/turf/open/floor/plasteel,/area/security/brig)
-"axC" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"axD" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"axE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/kudzu{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"axF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"axG" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"axH" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"axI" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"axJ" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"axK" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"axL" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/obj/item/assembly/prox_sensor,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"axM" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"axN" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/security{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"axO" = (/obj/structure/weightmachine/stacklifter,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"axP" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"axQ" = (/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"axR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"axS" = (/obj/structure/closet/crate,/obj/item/storage/box/lights/mixed,/obj/item/clothing/mask/gas,/obj/item/cane,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"axT" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/crayons{pixel_y = 8},/turf/open/floor/plasteel,/area/security/brig)
-"axU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"axV" = (/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"axW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"axX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"axY" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"axZ" = (/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_y = 28},/obj/machinery/door/window/eastright{name = "AI Core Access"; req_access_txt = "65"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aya" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "AI Core Exterior"; dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation)
-"ayb" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"ayc" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"ayd" = (/turf/closed/wall,/area/hallway/primary/port/fore)
-"aye" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation)
-"ayf" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
-"ayg" = (/obj/machinery/vending/wardrobe/hydro_wardrobe,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"ayh" = (/obj/machinery/door/airlock{name = "Bathroom"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/freezer,/area/security/prison)
-"ayi" = (/obj/structure/table,/obj/item/clipboard,/obj/item/paper_bin{pixel_x = 2; pixel_y = 4},/obj/item/pen,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"ayj" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/brig)
-"ayk" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"ayl" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aym" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/prison)
-"ayn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"ayo" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"ayp" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"ayq" = (/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"ayr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"ays" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/space_up,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"ayt" = (/obj/structure/closet/crate,/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"ayu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore)
-"ayv" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"ayw" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Service Hallway - Fore"; dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"ayx" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"ayy" = (/turf/open/floor/carpet,/area/chapel/main)
-"ayz" = (/obj/structure/chair/pew/right{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"ayA" = (/obj/structure/window/reinforced,/obj/structure/destructible/cult/tome,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
-"ayB" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"ayC" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"ayD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"ayE" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/hydroponics/lobby)
-"ayF" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
-"ayG" = (/obj/structure/chair/comfy/brown{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"ayH" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/mob/living/simple_animal/cockroach,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"ayI" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"ayJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/maintenance/solars/port)
-"ayK" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"ayL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"ayM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"ayN" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"ayO" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main)
-"ayP" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"ayQ" = (/obj/machinery/vr_sleeper{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"ayR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/brig)
-"ayS" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
-"ayT" = (/obj/machinery/vending/security,/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"ayU" = (/obj/vehicle/ridden/secway,/obj/effect/turf_decal/bot,/obj/item/key/security,/turf/open/floor/plasteel,/area/security/brig)
-"ayV" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/tools)
-"ayW" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"ayX" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"ayY" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"ayZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aza" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/clothing/gloves/botanic_leather,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"azb" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"azc" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"azd" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/mask/gas,/obj/machinery/camera{c_tag = "Central Port Maintenace - Port"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aze" = (/obj/machinery/power/apc{dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"azf" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"azg" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"azh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"azi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Maintenance"; req_access_txt = "63;12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/brig)
-"azj" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/brig)
-"azk" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
-"azl" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Brig Aft"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig)
-"azm" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet,/area/crew_quarters/bar)
-"azn" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig)
-"azo" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"azp" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"azq" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation)
-"azr" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/security/checkpoint)
-"azs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"azt" = (/obj/structure/chair/pew/right{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"azu" = (/obj/structure/chair/pew{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"azv" = (/obj/machinery/door/window/westleft{name = "Holy Driver"; req_one_access_txt = "22"},/obj/machinery/conveyor{dir = 4; id = "Holydriver"},/turf/open/floor/plating,/area/chapel/main)
-"azw" = (/obj/machinery/conveyor{dir = 4; id = "Holydriver"},/turf/open/floor/plating,/area/chapel/main)
-"azx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"azy" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"azz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"azA" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"azB" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main)
-"azC" = (/obj/machinery/disposal/bin,/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop)
-"azD" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"azE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"azF" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tools)
-"azG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"azH" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sign/departments/botany{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"azI" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"azJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"azK" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/door/window/westleft{name = "Boxing Ring"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"azL" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"azM" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"azN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison)
-"azO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/blobstart,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"azP" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"azQ" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"azR" = (/obj/structure/closet/secure_closet/bar,/obj/structure/disposalpipe/segment,/obj/item/clothing/under/costume/maid,/obj/item/stack/spacecash/c10,/obj/item/clothing/under/suit/waiter,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"azS" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/closet,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/red,/obj/item/wrench,/obj/item/screwdriver{pixel_y = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"azT" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/tools)
-"azU" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"azV" = (/obj/structure/kitchenspike,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"azW" = (/obj/effect/landmark/start/botanist,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"azX" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools)
-"azY" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{areastring = "/area/hydroponics/lobby"; dir = 4; name = "Hydroponics Lobby APC"; pixel_x = 24},/obj/item/clothing/suit/beekeeper_suit,/obj/item/melee/flyswatter,/obj/item/clothing/head/beekeeper_head,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"azZ" = (/obj/machinery/mass_driver{dir = 4; id = "chapelgun"; name = "Holy Driver"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/chapel/main)
-"aAa" = (/turf/closed/wall/r_wall,/area/crew_quarters/kitchen)
-"aAb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aAc" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/maintenance/solars/port)
-"aAd" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/processing)
-"aAe" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aAf" = (/obj/structure/disposalpipe/segment,/obj/structure/mineral_door/wood,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
-"aAg" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/machinery/gibber,/obj/machinery/camera{c_tag = "Kitchen Coldroom"; dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"aAh" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/item/storage/crayons,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aAi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aAj" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aAk" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/security/main)
-"aAl" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aAm" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/airlock/freezer{name = "Kitchen Coldroom"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"aAn" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig)
-"aAo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/poster/official/twelve_gauge{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"aAp" = (/obj/machinery/computer/security/telescreen/entertainment,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/bar)
-"aAq" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"aAr" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aAs" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aAt" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/machinery/camera{c_tag = "Hydroponics Storage"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aAu" = (/obj/structure/closet/crate/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/item/circuitboard/machine/hydroponics,/obj/item/circuitboard/machine/hydroponics,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aAv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/brig)
-"aAw" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/chapel/main)
-"aAx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"aAy" = (/obj/machinery/atmospherics/components/binary/circulator{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aAz" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"aAA" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"aAB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aAC" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aAD" = (/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aAE" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aAF" = (/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"aAG" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
-"aAH" = (/obj/structure/chair/pew{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/chapel/main)
-"aAI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"aAJ" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"aAK" = (/obj/structure/transit_tube/horizontal,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"aAL" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aAM" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"aAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"aAO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/toilet)
-"aAP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig)
-"aAQ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint)
-"aAR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Telecomms Access Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aAS" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/engine,/obj/item/encryptionkey/headset_eng,/turf/open/floor/plasteel,/area/security/brig)
-"aAT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aAU" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aAV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aAW" = (/obj/machinery/chem_master/condimaster{name = "BrewMaster 3000"},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aAX" = (/turf/open/floor/carpet/red,/area/security/brig)
-"aAY" = (/obj/structure/chair,/turf/open/floor/carpet/red,/area/security/brig)
-"aAZ" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet/red,/area/security/brig)
-"aBa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aBb" = (/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/security/brig)
-"aBc" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/suit/beekeeper_suit,/obj/item/melee/flyswatter,/obj/item/clothing/head/beekeeper_head,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aBd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"aBe" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aBf" = (/obj/structure/closet{name = "Evidence Closet"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aBg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/junction,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aBh" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aBi" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aBj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig)
-"aBk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/barbershop)
-"aBl" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
-"aBm" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Dormitories"},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aBn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"aBo" = (/obj/structure/table,/obj/item/storage/pill_bottle/epinephrine,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
-"aBp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/computer/pod/old{density = 0; icon = 'icons/obj/airlock_machines.dmi'; icon_state = "airlock_control_standby"; id = "chapelgun"; name = "Mass Driver Controller"; pixel_x = 24},/obj/machinery/conveyor_switch/oneway{id = "Holydriver"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aBq" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aBr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
-"aBs" = (/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aBt" = (/obj/structure/chair/comfy/brown,/obj/machinery/newscaster{pixel_y = 32},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
-"aBu" = (/obj/item/flashlight/lantern,/turf/open/floor/carpet,/area/chapel/main)
-"aBv" = (/obj/structure/chair/pew/left{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"aBw" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop)
-"aBx" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main)
-"aBy" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/kirbyplants{icon_state = "plant-16"},/obj/machinery/camera{c_tag = "Port Bow Hall - Central"; dir = 4; network = list("ss13","medbay")},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aBz" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"aBA" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/item/healthanalyzer,/obj/item/storage/hypospraykit/fire{pixel_x = -4},/obj/item/storage/hypospraykit/brute{pixel_x = 4},/obj/structure/sign/poster/official/nt_storm{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig)
-"aBB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"aBC" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/security/main)
-"aBD" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aBE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"aBF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/security/brig)
-"aBG" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/bar)
-"aBH" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"aBI" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aBJ" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aBK" = (/obj/structure/table,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/security/main)
-"aBL" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"aBM" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/abandoned_gambling_den"; name = "Arcade APC"; pixel_y = -26},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aBN" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"aBO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aBP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aBQ" = (/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aBR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aBS" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aBT" = (/obj/item/razor,/obj/item/toy/figure/chef{pixel_x = -6},/obj/item/toy/figure/bartender{pixel_x = 4},/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar)
-"aBU" = (/obj/structure/window/reinforced/tinted,/obj/structure/rack,/obj/item/soap/nanotrasen,/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aBV" = (/obj/item/flashlight/lantern,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aBW" = (/obj/structure/window/reinforced,/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar)
-"aBX" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aBY" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Security Maintenance"; dir = 1; network = list("ss13","medbay")},/turf/open/floor/plating,/area/maintenance/department/security)
-"aBZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aCa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main)
-"aCb" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig)
-"aCc" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/clothing/accessory/armband/cargo,/obj/item/encryptionkey/headset_cargo,/turf/open/floor/plasteel,/area/security/brig)
-"aCd" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/port; dir = 1; name = "Port Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aCe" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar)
-"aCf" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer)
-"aCg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/depsec/supply,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aCh" = (/obj/structure/mineral_door/wood{name = "Barbershop"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aCi" = (/obj/structure/closet/l3closet/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig)
-"aCj" = (/obj/machinery/door/window/southleft{name = "Showers"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aCk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/toilet/fitness)
-"aCl" = (/obj/structure/closet/bombcloset/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig)
-"aCm" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aCn" = (/obj/machinery/vending/boozeomat,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aCo" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"aCp" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness)
-"aCq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"aCr" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aCs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aCt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
-"aCu" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/freezer,/area/security/prison)
-"aCv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"aCw" = (/obj/structure/window/reinforced/tinted,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aCx" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aCy" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aCz" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aCA" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aCB" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar)
-"aCC" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/prison)
-"aCD" = (/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/structure/table/wood/fancy,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"aCE" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/button/door{id = "briglockdown"; name = "Brig Lockdown"; pixel_x = 24; req_access_txt = "2"},/obj/effect/turf_decal/arrows/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"aCF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"aCG" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"aCH" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/arrows/red{dir = 8},/obj/effect/turf_decal/arrows/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
-"aCI" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/door/firedoor,/obj/structure/sign/departments/botany{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aCJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/main)
-"aCK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/security/prison)
-"aCL" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/book/manual/wiki/security_space_law,/obj/item/paper/guides/cogstation/letter_sec,/turf/open/floor/carpet/red,/area/security/brig)
-"aCM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/fun_police{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aCN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aCO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aCP" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/landmark/start/botanist,/obj/machinery/camera{c_tag = "Hydroponics Lobby"},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aCQ" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
-"aCR" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/modular_computer/laptop/preset/civilian{pixel_x = 1; pixel_y = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aCS" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aCT" = (/obj/machinery/disposal/bin{name = "Hydroponics Mailbox"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/obj/machinery/requests_console{department = "Hydroponics"; name = "Hydroponics RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aCU" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation)
-"aCV" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools)
-"aCW" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aCX" = (/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"aCY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aCZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aDa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/barbershop)
-"aDb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/checkpoint)
-"aDc" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Barbershop"; dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aDd" = (/obj/structure/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aDe" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"aDf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aDg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central)
-"aDh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Port Bow Primary Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aDi" = (/obj/structure/closet/secure_closet/evidence,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"aDj" = (/obj/structure/closet/wardrobe/green,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aDk" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aDl" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aDm" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint)
-"aDn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/bridge)
-"aDo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aDp" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/barbershop)
-"aDq" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aDr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Civilian Wing Hallway"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aDs" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig)
-"aDt" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aDu" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/machinery/light,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aDv" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aDw" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aDx" = (/obj/structure/closet/crate,/obj/item/gun/ballistic/shotgun/toy/unrestricted,/obj/item/gun/ballistic/shotgun/toy/unrestricted,/obj/item/toy/gun,/obj/item/toy/sword,/obj/item/toy/sword,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"aDy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aDz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/departments/restroom{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aDA" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aDB" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aDC" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aDD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"aDE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aDF" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint)
-"aDG" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aDH" = (/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aDI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aDJ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aDK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aDL" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aDM" = (/turf/closed/wall,/area/maintenance/central)
-"aDN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central)
-"aDO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aDP" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"aDQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aDR" = (/turf/open/floor/plating,/area/maintenance/central)
-"aDS" = (/turf/closed/wall/r_wall,/area/crew_quarters/barbershop)
-"aDT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aDU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aDV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aDW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/machinery/turnstile{dir = 4; name = "Genpop Exit Turnstile"; req_access_txt = "70"},/turf/open/floor/plasteel,/area/security/prison)
-"aDX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main)
-"aDY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/prison)
-"aDZ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aEa" = (/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
-"aEb" = (/obj/structure/transit_tube/crossing/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
-"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig)
-"aEd" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aEe" = (/obj/structure/transit_tube/horizontal,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aEf" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port Bow"; dir = 1; network = list("tcomms")},/turf/open/space/basic,/area/space)
-"aEg" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/hallway/secondary/service)
-"aEh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore)
-"aEi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aEj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"aEk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aEl" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aEm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aEn" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aEo" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/sign/poster/official/fashion{pixel_x = -32},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aEp" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aEq" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aEr" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/lighter,/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aEs" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aEt" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aEu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aEv" = (/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aEw" = (/obj/structure/chair,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aEx" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aEy" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig)
-"aEz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aEA" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aEC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aED" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/security_officer,/turf/open/floor/carpet/red,/area/security/brig)
-"aEE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"aEF" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/circuit)
-"aEG" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aEI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/chapel/main)
-"aEJ" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aEK" = (/obj/structure/table,/obj/item/razor,/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aEL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aEM" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/carpet,/area/chapel/main)
-"aEN" = (/obj/structure/table,/obj/machinery/light,/obj/item/razor,/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aEO" = (/obj/structure/table,/obj/item/clothing/accessory/pocketprotector/cosmetology,/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aEP" = (/obj/item/kirbyplants,/turf/open/floor/wood,/area/crew_quarters/barbershop)
-"aEQ" = (/turf/closed/wall/r_wall,/area/maintenance/central)
-"aER" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/bot,/obj/structure/sign/warning/nosmoking{pixel_x = -32},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aES" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"aET" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"aEU" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"aEV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/central)
-"aEW" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aEX" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_y = 32},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aEY" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aEZ" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Emergency Storage APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFa" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 10},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFb" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFc" = (/obj/structure/table,/obj/item/clothing/suit/toggle/owlwings,/obj/item/clothing/under/costume/owl,/obj/item/clothing/mask/gas/owl_mask,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"aFd" = (/obj/machinery/space_heater,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFe" = (/obj/machinery/photocopier,/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"aFf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=serv"; location = "sec1"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aFg" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aFh" = (/obj/structure/chair/pew/right{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/chapel/main)
-"aFi" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=market"; location = "sec2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aFj" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos)
-"aFk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable,/turf/open/floor/plating,/area/security/checkpoint)
-"aFl" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1},/obj/item/reagent_containers/glass/bottle/diethylamine,/obj/structure/sign/poster/official/hydro_ad{pixel_x = -32},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFm" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos)
-"aFn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aFo" = (/obj/machinery/door/window/southleft{name = "Weightroom"},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"aFp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aFq" = (/obj/structure/table/wood,/obj/item/candle{pixel_x = 4},/obj/item/candle{pixel_y = 8},/turf/open/floor/carpet,/area/chapel/main)
-"aFr" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aFs" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aFt" = (/obj/structure/table/glass,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aFu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore)
-"aFv" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/secondary/entry)
-"aFw" = (/obj/structure/table,/obj/item/multitool,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/camera{c_tag = "Central Maintenance - Power Monitoring"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/central)
-"aFx" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/folder/blue,/obj/machinery/door/window/westleft{name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFy" = (/obj/machinery/computer/monitor,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/central)
-"aFz" = (/obj/structure/table,/obj/item/multitool{pixel_x = 8; pixel_y = 2},/obj/item/stack/cable_coil/random,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/central)
-"aFA" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/landmark/start/botanist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFB" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aFD" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AftH"; location = "Hydroponics"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFE" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/techstorage/tcomms,/turf/open/floor/circuit,/area/bridge)
-"aFF" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aFG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/prison)
-"aFH" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFI" = (/obj/effect/turf_decal/bot,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Primary Tool Storage"},/turf/open/floor/plasteel,/area/storage/tools)
-"aFJ" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/watertank,/obj/item/grenade/chem_grenade/antiweed,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFK" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/storage/box/beakers{pixel_y = 4},/obj/item/reagent_containers/dropper,/obj/structure/disposalpipe/segment{dir = 9},/obj/item/pen/blue{pixel_x = -4; pixel_y = -2},/obj/item/pen/red{pixel_x = 4; pixel_y = 4},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFL" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/chem_master,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aFM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/barbershop)
-"aFN" = (/obj/structure/flora/junglebush/b,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"aFO" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/main)
-"aFQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFT" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
-"aFU" = (/obj/machinery/atmospherics/components/binary/circulator/cold{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aFV" = (/obj/structure/window/reinforced,/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar)
-"aFW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aFX" = (/obj/machinery/computer/security/hos{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aFY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet,/area/chapel/main)
-"aFZ" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall/r_wall,/area/security/prison)
-"aGa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/tcommsat/computer)
-"aGb" = (/obj/machinery/suit_storage_unit/hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aGc" = (/obj/item/coin/iron,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/port/fore)
-"aGd" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/central)
-"aGe" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/central)
-"aGf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aGg" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aGh" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/landmark/start/security_officer,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main)
-"aGi" = (/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aGj" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/analyzer{pixel_y = -4},/obj/item/flashlight{pixel_y = 4},/obj/item/flashlight{pixel_y = 4},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aGk" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aGl" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced,/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/clipboard,/obj/item/pen,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aGm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/door/window/southright{name = "Hydroponics Desk"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aGn" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/bridge)
-"aGo" = (/obj/structure/rack,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/screwdriver,/obj/item/wrench,/obj/item/clothing/gloves/color/fyellow,/obj/item/multitool,/obj/item/multitool,/obj/item/wrench,/turf/open/floor/plasteel,/area/security/brig)
-"aGp" = (/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"aGq" = (/turf/closed/wall/r_wall,/area/bridge)
-"aGr" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aGs" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/bridge)
-"aGt" = (/obj/machinery/computer/card/minor/hos{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aGu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aGv" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aGw" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Lobby"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"aGx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aGy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/solars/port)
-"aGz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; name = "Bridge APC"; pixel_y = -24},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aGA" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aGB" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aGC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aGD" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet"; dir = 8; name = "Dormitory Toilets APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"aGE" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central)
-"aGF" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aGG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aGH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medical Booth"; req_access_txt = "5"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/medical{name = "Medical Booth"})
-"aGI" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 5},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 3},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 1},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = -1},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 5},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 3},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 1},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aGJ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aGK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Head of Security's APC"; pixel_y = 24},/obj/machinery/camera{c_tag = "Security - Head of Security's Office"; pixel_x = 22},/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aGL" = (/obj/structure/table/wood,/obj/item/storage/firstaid/regular,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"aGM" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"aGN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aGO" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel,/area/hydroponics)
-"aGP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aGQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aGR" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/store/cake/chocolate,/obj/machinery/door/poddoor/preopen{id = "kitchenlock"; name = "Kitchen Lockup"},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen)
-"aGS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aGT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"aGU" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aGV" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/table,/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aGW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/closed/wall/r_wall,/area/bridge)
-"aGX" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"aGZ" = (/turf/open/floor/plasteel/stairs/medium,/area/hallway/secondary/entry)
-"aHa" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aHb" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aHc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"aHd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aHe" = (/obj/structure/sign/poster/official/bless_this_spess{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aHf" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aHg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
-"aHh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aHi" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aHj" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Starboard Bow Solar Exterior Airlock"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"aHk" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aHl" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aHm" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aHn" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/maintenance/central)
-"aHo" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/relay,/obj/item/circuitboard/machine/telecomms/server,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 5},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"aHp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aHq" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"aHr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/contraband/clown{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore)
-"aHs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/port/fore)
-"aHt" = (/turf/closed/wall/r_wall,/area/hallway/primary/port/fore)
-"aHu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aHv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aHw" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aHx" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/security/detectives_office)
-"aHy" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall/r_wall,/area/security/detectives_office)
-"aHz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/detectives_office)
-"aHA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/detectives_office)
-"aHB" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/wrench,/obj/item/wrench{pixel_x = 2; pixel_y = 2},/obj/item/light/tube,/obj/item/light/tube{pixel_x = -2; pixel_y = 2},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aHC" = (/obj/machinery/vending/cola/random,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aHD" = (/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/dark,/area/bridge)
-"aHE" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
-"aHF" = (/turf/open/floor/plasteel/dark,/area/bridge)
-"aHG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/central)
-"aHH" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aHI" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge)
-"aHJ" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aHK" = (/obj/structure/musician/piano,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aHL" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/stack/medical/gauze,/obj/item/reagent_containers/blood,/obj/item/stack/medical/suture,/obj/item/stack/medical/mesh,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aHM" = (/turf/open/floor/plasteel,/area/bridge)
-"aHN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Security - Interrogation Room"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aHO" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aHP" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos)
-"aHQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aHR" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/trunk,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Security Office APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/security/main)
-"aHS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aHT" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"aHU" = (/obj/effect/turf_decal/delivery,/obj/structure/mineral_door/woodrustic{name = "Nature Preserve"},/turf/open/floor/plasteel,/area/hydroponics/garden{name = "Nature Preserve"})
-"aHV" = (/obj/structure/flora/junglebush/large,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"aHW" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/head_of_security,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aHX" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aHY" = (/turf/closed/wall/r_wall,/area/crew_quarters/cryopod)
-"aHZ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/door/window/eastleft{name = "Security Office Desk"; req_one_access_txt = "63"},/obj/item/folder/red,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/stamp,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main)
-"aIa" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/central)
-"aIb" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/junction/flip,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aIc" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/central)
-"aId" = (/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIe" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aIf" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aIg" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge)
-"aIh" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aIi" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIj" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIk" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aIm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = 30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"aIn" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/prison)
-"aIo" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/solars/port)
-"aIp" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aIq" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main)
-"aIr" = (/obj/structure/table/reinforced,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aIs" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aIt" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aIu" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIv" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"aIw" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aIx" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aIz" = (/obj/machinery/cryopod{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aIA" = (/obj/machinery/computer/med_data{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"aIB" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aIC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/main)
-"aID" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/main)
-"aIE" = (/turf/open/floor/carpet/royalblue,/area/bridge)
-"aIF" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/recharger,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main)
-"aIG" = (/obj/structure/table,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main)
-"aIH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/carpet/royalblue,/area/bridge)
-"aII" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/royalblue,/area/bridge)
-"aIJ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIK" = (/obj/structure/table/wood,/obj/item/camera,/obj/item/folder,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aIL" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge)
-"aIM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"aIN" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aIO" = (/obj/structure/sign/directions/medical{dir = 8; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 1; pixel_y = -32},/obj/structure/sign/directions/supply{dir = 8; pixel_y = -40},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
-"aIQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge)
-"aIR" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel,/area/hydroponics)
-"aIS" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/ai,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -7},/obj/item/radio/intercom{freerange = 1; name = "Common Channel"; pixel_x = 27; pixel_y = 5},/obj/machinery/button/door{id = "AIShutter"; layer = 3.6; name = "AI Core Shutter Control"; pixel_x = 24; pixel_y = -24},/obj/item/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = -24; pixel_y = -8},/obj/machinery/button/door{id = "AIChamberShutter"; layer = 3.6; name = "AI Chamber Shutter Control"; pixel_x = -24; pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aIT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/bridge)
-"aIU" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aIV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Monitoring"; req_access_txt = "63"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aIW" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aIX" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aIY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aIZ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aJa" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aJb" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aJc" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aJd" = (/turf/closed/wall,/area/chapel/office)
-"aJe" = (/obj/machinery/computer/crew{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"aJf" = (/obj/machinery/camera{c_tag = "Chapel - Aft"; dir = 1},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aJg" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aJh" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aJi" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aJj" = (/obj/structure/chair{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Chapel APC"; pixel_x = -26},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aJk" = (/obj/structure/table/wood,/obj/item/candle,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aJl" = (/obj/structure/bodycontainer/crematorium{id = "foo"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aJm" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aJn" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge)
-"aJo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aJp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/motion{c_tag = "AI"; network = list("minisat")},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aJq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/item/storage/box/beakers{pixel_y = 4},/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/hydroponics)
-"aJr" = (/obj/structure/sign/directions/command{dir = 8; pixel_y = -32},/obj/structure/sign/directions/security{dir = 8; pixel_y = -24},/obj/structure/sign/directions/science{dir = 8; pixel_y = -40},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aJs" = (/obj/structure/noticeboard{name = "Hydroponics Requests Board"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aJt" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/toy/figure/syndie,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"aJu" = (/obj/structure/chair/comfy/brown,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aJv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main)
-"aJw" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
-"aJx" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aJy" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/right,/area/security/brig)
-"aJz" = (/obj/structure/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aJA" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall - Dorms Access"; network = list("ss13","rd")},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aJB" = (/obj/machinery/computer/security/mining{dir = 4},/turf/open/floor/plasteel,/area/bridge)
-"aJC" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aJD" = (/obj/structure/rack,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/item/storage/belt/medical,/obj/item/tank/internals/emergency_oxygen,/obj/item/clothing/suit/space/eva/paramedic,/obj/item/clothing/head/helmet/space/eva/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"aJE" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"aJF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"aJG" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/bridge)
-"aJH" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/storage/tools)
-"aJI" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/cultivator,/obj/item/crowbar,/obj/item/wirecutters,/obj/item/reagent_containers/glass/bucket,/obj/item/hatchet,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hydroponics"; name = "Hydroponics APC"; pixel_y = -28},/turf/open/floor/plasteel,/area/hydroponics)
-"aJJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools)
-"aJK" = (/obj/structure/filingcabinet,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/bridge)
-"aJL" = (/turf/open/floor/circuit,/area/bridge)
-"aJM" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit,/area/bridge)
-"aJN" = (/obj/machinery/camera{c_tag = "Security - Prison Aft"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/prison)
-"aJO" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison)
-"aJP" = (/obj/structure/chair/comfy/teal,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/sign/departments/botany{pixel_y = 32},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Starboard"; dir = 8; pixel_y = -22},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aJQ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aJR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"aJS" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"aJT" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aJU" = (/obj/machinery/vending/cigarette,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main)
-"aJV" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"aJW" = (/obj/machinery/cryopod{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"aJX" = (/obj/machinery/light{dir = 4},/obj/machinery/modular_computer/console/preset/civilian{dir = 8},/turf/open/floor/circuit,/area/bridge)
-"aJY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/storage/box/lights/mixed,/obj/item/stack/sheet/metal/fifty{pixel_x = -3; pixel_y = -7},/turf/open/floor/plasteel,/area/storage/tools)
-"aJZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main)
-"aKa" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/prison)
-"aKb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/civilian)
-"aKc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aKd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/security/brig)
-"aKe" = (/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"aKf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/emergency/generic)
-"aKg" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/entry)
-"aKh" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/security/brig)
-"aKi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/main)
-"aKj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aKk" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/detective,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aKl" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aKm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Emergency Storage"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aKn" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"aKo" = (/obj/effect/turf_decal/delivery,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
-"aKp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aKq" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/chapel/main)
-"aKr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Emergency Storage"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic)
-"aKs" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/reagent_containers/rag,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"aKt" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aKu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/storage/emergency/generic)
-"aKv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge)
-"aKw" = (/obj/structure/table,/obj/item/storage/pill_bottle/dice,/obj/item/toy/cards/deck,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/prison)
-"aKx" = (/obj/machinery/computer/security{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aKy" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/rnd/production/techfab/department/security,/turf/open/floor/plasteel,/area/security/brig)
-"aKz" = (/turf/closed/wall,/area/storage/emergency/generic)
-"aKA" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Blast Door Control"; pixel_x = -6; pixel_y = -3; req_access_txt = "19"},/turf/open/floor/carpet/royalblue,/area/bridge)
-"aKB" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"aKC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aKD" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aKE" = (/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge)
-"aKF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Telecommunications Control Room"; req_access_txt = "19;61"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge)
-"aKG" = (/obj/structure/table/wood,/obj/item/storage/toolbox/emergency,/obj/item/crowbar/red,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aKH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/white/full,/obj/machinery/camera{c_tag = "Bridge - Fore"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/bridge)
-"aKI" = (/obj/structure/closet/cabinet,/obj/item/screwdriver,/obj/item/storage/crayons,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aKJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aKK" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/snack/blue,/turf/open/floor/plasteel,/area/bridge)
-"aKL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/bridge)
-"aKM" = (/obj/machinery/camera{c_tag = "Chapel - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aKN" = (/obj/structure/chair/pew/left{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aKO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/left,/area/security/brig)
-"aKP" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/bridge)
-"aKQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/office)
-"aKR" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore)
-"aKS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/bridge)
-"aKT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"aKU" = (/obj/structure/bodycontainer/morgue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aKV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aKW" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aKX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Chapel Morgue"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aKY" = (/obj/structure/chair/sofa/left,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aKZ" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"aLa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/door/poddoor/preopen{id = "hos"},/turf/open/floor/plating,/area/crew_quarters/heads/hos)
-"aLb" = (/obj/item/toy/prize/honk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"aLc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore)
-"aLd" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aLg" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aLh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central)
-"aLj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/brig)
-"aLl" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aLm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge)
-"aLn" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aLo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLp" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aLq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aLt" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Visitation Maintainance"; req_one_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/security/main)
-"aLv" = (/obj/machinery/computer/cryopod{dir = 8; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aLw" = (/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-06"},/turf/open/floor/plasteel,/area/security/brig)
-"aLx" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aLy" = (/obj/machinery/modular_computer/console/preset/command{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"aLz" = (/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLA" = (/obj/item/candle{pixel_x = -4; pixel_y = -4},/obj/item/candle{pixel_x = -8; pixel_y = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aLB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aLC" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aLE" = (/obj/machinery/computer/communications{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"aLF" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aLG" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aLH" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/tcommsat/computer)
-"aLI" = (/obj/structure/table/wood,/obj/item/storage/box/PDAs,/obj/item/storage/box/ids{pixel_x = 3; pixel_y = 3},/turf/open/floor/carpet/royalblue,/area/bridge)
-"aLJ" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aLK" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/bridge)
-"aLL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/brig)
-"aLM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
-"aLN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main)
-"aLO" = (/obj/item/toy/talking/owl,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"aLP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aLQ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/bridge)
-"aLR" = (/obj/structure/table,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/storage/box/bodybags{pixel_y = 4},/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aLS" = (/obj/structure/disposaloutlet{dir = 8; name = "Corpse Outlet"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aLT" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aLU" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aLV" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/camera{c_tag = "Central Maintenance - Aft"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/central)
-"aLW" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/brig)
-"aLX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/security/main)
-"aLY" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main)
-"aLZ" = (/mob/living/simple_animal/chicken{desc = "At least it isn't a court kangaroo."; name = "amusing cluck"; real_name = "amusing cluck"},/turf/open/floor/carpet,/area/security/courtroom)
-"aMa" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aMb" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMd" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/obj/machinery/camera{c_tag = "Chapel Office"; dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aMe" = (/obj/machinery/door/window/northleft{name = "Game Room"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aMf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/central)
-"aMh" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/reagent_containers/food/drinks/bottle/champagne,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = -32},/obj/machinery/keycard_auth{pixel_x = -24},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aMi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge)
-"aMj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"aMk" = (/obj/structure/closet/crate/coffin,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"aMl" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"aMm" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"aMn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"},/turf/closed/wall,/area/maintenance/department/chapel)
-"aMo" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"aMp" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aMq" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aMr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Port"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMs" = (/turf/closed/wall,/area/maintenance/department/chapel)
-"aMt" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"aMu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main)
-"aMv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main)
-"aMw" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aMx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"aMy" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"aMz" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"})
-"aMA" = (/turf/closed/wall,/area/janitor)
-"aMB" = (/turf/closed/wall/r_wall,/area/janitor)
-"aMC" = (/obj/structure/table/wood,/obj/item/kitchen/fork,/obj/item/reagent_containers/food/snacks/salad/herbsalad,/obj/item/candle{pixel_x = 8; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"aMD" = (/turf/closed/wall/rust,/area/maintenance/disposal)
-"aME" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aMG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Central Starboard Maintenance"; dir = 8; pixel_y = -22},/mob/living/simple_animal/hostile/retaliate/bat,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"aMH" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aMI" = (/turf/closed/wall/r_wall,/area/maintenance/disposal)
-"aMJ" = (/obj/structure/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/obj/effect/landmark/start/assistant,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aMK" = (/obj/vehicle/ridden/wheelchair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aML" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/chapel/office)
-"aMM" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/sign/poster/official/help_others{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMN" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/main)
-"aMO" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMP" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/wine,/turf/open/floor/plasteel,/area/security/brig)
-"aMQ" = (/obj/machinery/computer/security{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"aMR" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet,/area/chapel/main)
-"aMS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aMT" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMU" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet,/area/chapel/main)
-"aMV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aMW" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aMX" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge)
-"aMY" = (/obj/structure/closet,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"aMZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aNa" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aNb" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aNc" = (/obj/structure/rack,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/mop,/obj/item/storage/box/mousetraps,/obj/item/storage/box/mousetraps,/obj/item/reagent_containers/spray/cleaner,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/janitor)
-"aNd" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper_bin,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"aNe" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/spaghetti,/obj/item/reagent_containers/food/snacks/spaghetti,/turf/open/floor/plating,/area/hallway/secondary/service)
-"aNf" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/clipboard,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"aNg" = (/obj/machinery/computer/cargo/request{dir = 4},/turf/open/floor/plasteel,/area/bridge)
-"aNh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aNi" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aNj" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aNk" = (/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/pen{pixel_y = 8},/obj/item/pen,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"aNl" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/condiment/pack/ketchup{pixel_x = -2; pixel_y = 6},/obj/item/reagent_containers/food/condiment/pack/mustard{pixel_x = 6; pixel_y = 3},/obj/item/candle{pixel_x = -8; pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"aNm" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aNn" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aNo" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIShutter"; name = "AI Core Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"aNp" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aNq" = (/obj/machinery/door/window/northright{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aNr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aNs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aNt" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aNu" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar)
-"aNv" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aNw" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"aNx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"})
-"aNy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aNz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aNA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/security/main)
-"aNB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Port Bow Primary Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aNC" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera/motion{c_tag = "Telecomms Control Room"; network = list("tcomms"); pixel_x = 22},/obj/machinery/power/apc/highcap/fifteen_k{areastring = "/area/tcommsat/server"; dir = 1; name = "Telecomms Server APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/server)
-"aND" = (/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aNE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aNF" = (/obj/machinery/computer/secure_data{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"aNG" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table,/obj/item/taperecorder,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/brig)
-"aNH" = (/obj/machinery/door/airlock/external/glass{name = "Exterior Engineering Access"; req_access_txt = "11;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"aNI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aNJ" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig)
-"aNK" = (/obj/structure/sign/nanotrasen{pixel_x = -32},/turf/open/floor/plasteel,/area/security/courtroom)
-"aNL" = (/turf/open/floor/plasteel,/area/security/courtroom)
-"aNM" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/brig)
-"aNN" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/security/courtroom)
-"aNO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"aNP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aNQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"})
-"aNR" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop)
-"aNS" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"aNT" = (/turf/closed/wall/r_wall,/area/teleporter)
-"aNU" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aNV" = (/obj/structure/table,/obj/item/locator,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/brig)
-"aNW" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"aNX" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/instrument/guitar,/obj/machinery/camera{c_tag = "Bar - Port"; dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aNY" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec2"; location = "bar"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aNZ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aOa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aOb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aOc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aOd" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aOe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"aOf" = (/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aOg" = (/obj/structure/chair/comfy/teal{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aOh" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aOi" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aOj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aOk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced/spawner,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aOl" = (/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aOm" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/structure/table/wood,/obj/item/toy/windupToolbox,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aOn" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
-"aOo" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/hallway/primary/port/fore"; dir = 4; name = "Port Bow Primary Hallway APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/department/security)
-"aOp" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 31},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge)
-"aOq" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/effect/turf_decal/delivery,/obj/item/extinguisher,/obj/structure/window/reinforced/spawner,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aOr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge)
-"aOs" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants,/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge)
-"aOt" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main)
-"aOu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main)
-"aOv" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/gavelblock,/obj/item/gavelhammer,/obj/machinery/camera{c_tag = "Courtroom"; network = list("ss13","rd")},/turf/open/floor/carpet,/area/security/courtroom)
-"aOw" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/pen,/turf/open/floor/plasteel,/area/security/courtroom)
-"aOx" = (/obj/structure/table/reinforced,/obj/item/grenade/chem_grenade/smart_metal_foam{pixel_x = 4},/obj/item/radio,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aOy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aOz" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aOA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel)
-"aOB" = (/turf/closed/wall/r_wall,/area/security/courtroom)
-"aOC" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aOD" = (/obj/machinery/door/airlock{name = "Catering"; req_one_access_txt = "25;28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"aOE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aOF" = (/obj/structure/closet/crate/freezer/surplus_limbs,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"aOG" = (/obj/structure/chair/comfy/teal{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aOH" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore)
-"aOI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/obj/machinery/flasher{id = "ID"; pixel_x = 8; pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aOJ" = (/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
-"aOK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port)
-"aOL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall,/area/security/brig)
-"aOM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aON" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aOO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aOP" = (/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/engine/gravity_generator)
-"aOQ" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aOR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aOS" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aOT" = (/turf/closed/wall,/area/crew_quarters/fitness/cogpool)
-"aOU" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"aOV" = (/turf/open/floor/plasteel/stairs,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aOW" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/hydro,/obj/item/encryptionkey/headset_service,/obj/item/clothing/under/misc/vice_officer,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aOX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Pool"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/white/side,/area/crew_quarters/fitness/cogpool)
-"aOY" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aOZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/bridge)
-"aPa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Pool"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/side,/area/crew_quarters/fitness/cogpool)
-"aPb" = (/obj/structure/grille,/turf/open/floor/plating,/area/hallway/primary/central)
-"aPc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aPd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aPe" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aPf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"aPg" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation)
-"aPh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aPi" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aPj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aPk" = (/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aPl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aPn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/start/depsec/medical,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aPo" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"aPp" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge)
-"aPq" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"aPr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
-"aPs" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main)
-"aPt" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"aPu" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/bridge)
-"aPv" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aPw" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Courtroom Access"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
-"aPx" = (/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPz" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/courtroom)
-"aPA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPB" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/paper/guides/jobs/security/courtroom,/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/security/courtroom)
-"aPC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPD" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aPE" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 8},/obj/item/toy/talking/AI{name = "Nanotrasen-brand toy AI"; pixel_y = 6},/obj/item/clothing/glasses/meson,/obj/machinery/status_display{pixel_x = -32},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"aPF" = (/turf/closed/wall/r_wall,/area/crew_quarters/locker)
-"aPG" = (/obj/structure/disposalpipe/sorting/mail/flip{sortType = 21},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPH" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/security/courtroom)
-"aPI" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aPJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bar"; location = "serv"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPK" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aPL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPM" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"aPN" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/space/nearstation)
-"aPO" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 8},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aPP" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aPQ" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aPR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/crew_quarters/fitness/cogpool)
-"aPS" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aPT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation)
-"aPU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"aPV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"aPW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"aPX" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/storage/fancy/donut_box,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aPY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aPZ" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aQa" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"aQb" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aQc" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aQd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aQe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aQf" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aQg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aQh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aQi" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aQj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"aQk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aQl" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
-"aQm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aQn" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"aQo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/security/courtroom)
-"aQp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation)
-"aQq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/space/nearstation)
-"aQr" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/space/nearstation)
-"aQs" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aQt" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQu" = (/obj/structure/table,/obj/item/toy/beach_ball{pixel_y = 12},/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQv" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"aQw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"aQx" = (/obj/machinery/camera{c_tag = "Engine Room - Port Bow"},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aQy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/chapel/main)
-"aQz" = (/obj/structure/chair/comfy/teal,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQA" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aQB" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aQD" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aQE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aQF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"aQG" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/central)
-"aQH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aQI" = (/obj/structure/chair/comfy/teal,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQJ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
-"aQK" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/central)
-"aQL" = (/turf/closed/wall,/area/maintenance/port/central)
-"aQM" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig)
-"aQN" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aQO" = (/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aQP" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQQ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQR" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQS" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
-"aQT" = (/obj/machinery/door/airlock/engineering{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aQU" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/teleporter)
-"aQV" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aQW" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain)
-"aQX" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aQY" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/item/toy/beach_ball/holoball/dodgeball,/obj/item/toy/beach_ball/holoball/dodgeball,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aQZ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"aRa" = (/obj/structure/table/wood,/obj/item/lighter,/obj/item/multitool{pixel_x = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aRb" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/central)
-"aRc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness/cogpool)
-"aRd" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRe" = (/obj/structure/table/wood,/obj/item/storage/secure/briefcase,/obj/item/assembly/flash,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aRf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRh" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aRi" = (/obj/machinery/light,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRj" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/sleep_console{dir = 8},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aRk" = (/obj/structure/disposalpipe/junction/yjunction,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRl" = (/obj/structure/table/wood,/obj/item/restraints/handcuffs,/obj/item/laser_pointer/blue,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aRm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/courtroom)
-"aRn" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRo" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"aRp" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aRq" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aRr" = (/mob/living/simple_animal/chicken{name = "Kentucky"; real_name = "Kentucky"},/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"aRs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRt" = (/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRu" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/space/nearstation)
-"aRv" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/turf/open/space/basic,/area/space/nearstation)
-"aRw" = (/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"aRx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aRy" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aRz" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aRA" = (/obj/structure/table/optable,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/reagent_containers/blood/random,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aRB" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aRC" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"aRD" = (/turf/closed/wall/r_wall/rust,/area/engine/gravity_generator)
-"aRE" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aRF" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"})
-"aRG" = (/obj/machinery/power/generator,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aRH" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/obj/machinery/camera{c_tag = "Central Port Maintenance - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/port/central)
-"aRI" = (/obj/structure/rack,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/port/central)
-"aRJ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"})
-"aRK" = (/obj/structure/sign/departments/holy{pixel_y = -32},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRL" = (/mob/living/simple_animal/crab/kreb,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"aRM" = (/turf/open/floor/carpet,/area/crew_quarters/bar)
-"aRN" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRO" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aRP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRQ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aRR" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aRS" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aRT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aRU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/main)
-"aRV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aRW" = (/turf/open/floor/plating,/area/maintenance/port/central)
-"aRX" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation)
-"aRY" = (/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"aRZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/space/nearstation)
-"aSa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aSb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aSc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aSd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aSe" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Chapel"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/chapel/main)
-"aSf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aSg" = (/obj/machinery/power/apc{name = "Security Maintainance APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/security)
-"aSh" = (/obj/structure/table,/obj/item/storage/fancy/donut_box,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aSi" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aSj" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plasteel,/area/science/circuit)
-"aSk" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aSl" = (/obj/machinery/computer/teleporter{dir = 1},/turf/open/floor/plasteel/dark,/area/teleporter)
-"aSm" = (/obj/machinery/teleport/station,/turf/open/floor/plasteel/dark,/area/teleporter)
-"aSn" = (/obj/machinery/teleport/hub,/turf/open/floor/plasteel/dark,/area/teleporter)
-"aSo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aSp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aSq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/space/nearstation)
-"aSr" = (/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aSs" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/delivery,/obj/machinery/camera{c_tag = "Bridge Access"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/bridge)
-"aSt" = (/turf/closed/wall/r_wall,/area/maintenance/department/eva)
-"aSu" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation)
-"aSv" = (/turf/closed/wall,/area/space/nearstation)
-"aSw" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
-"aSx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aSy" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/space/nearstation)
-"aSz" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aSA" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aSB" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aSC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aSD" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aSE" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aSF" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/surgical_drapes,/obj/item/scalpel,/obj/item/circular_saw{pixel_y = 16},/obj/item/hemostat,/obj/item/retractor,/obj/item/surgicaldrill,/obj/item/cautery,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aSG" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"})
-"aSH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"})
-"aSI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aSJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/main)
-"aSK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aSL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aSM" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation)
-"aSN" = (/obj/structure/table,/obj/machinery/computer/secure_data/laptop{dir = 8; pixel_x = -2; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/red,/area/security/brig)
-"aSO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aSP" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aSQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"aSR" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/tools)
-"aSS" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Chapel"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aST" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"aSU" = (/obj/structure/reagent_dispensers/beerkeg,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"aSV" = (/obj/item/toy/talking/AI,/obj/structure/grille/broken,/turf/open/floor/plating,/area/hallway/primary/central)
-"aSW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aSX" = (/obj/machinery/washing_machine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aSY" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aSZ" = (/obj/structure/chair/stool,/obj/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aTa" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison)
-"aTb" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Central Hall - Starboard"; pixel_x = 22},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aTc" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"aTd" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/space/nearstation)
-"aTe" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aTf" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge)
-"aTg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig)
-"aTh" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 8},/obj/machinery/power/apc{name = "AI Upload Foyer APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aTi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aTj" = (/obj/machinery/pool/filter{pixel_y = 16},/turf/open/pool,/area/crew_quarters/fitness/cogpool)
-"aTk" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
-"aTl" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"aTm" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"aTn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/department/eva"; dir = 8; name = "EVA Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aTo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/detectives_office)
-"aTp" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/landmark/start/security_officer,/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/security/brig)
-"aTq" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aTr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office)
-"aTs" = (/turf/closed/wall,/area/maintenance/department/eva)
-"aTt" = (/obj/structure/closet/secure_closet/detective,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aTu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aTv" = (/turf/open/pool,/area/crew_quarters/fitness/cogpool)
-"aTw" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/cogpool)
-"aTx" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/turf/open/space/basic,/area/space/nearstation)
-"aTy" = (/obj/structure/lattice/catwalk,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/turf/open/space/basic,/area/space/nearstation)
-"aTz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aTA" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aTB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main)
-"aTC" = (/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aTD" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
-"aTE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/circuit)
-"aTF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aTG" = (/turf/closed/wall,/area/router/public)
-"aTH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"aTI" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/public/glass{name = "Public Router"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/public)
-"aTJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aTK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/public/glass{name = "Public Router"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/public)
-"aTL" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/camera{c_tag = "Cryogenics"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"aTM" = (/turf/closed/wall/r_wall,/area/router/public)
-"aTN" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aTO" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/security/courtroom)
-"aTP" = (/obj/machinery/status_display/ai,/turf/closed/wall/r_wall,/area/security/courtroom)
-"aTQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Thermo-Electric Generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aTR" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/stamp,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/pen/red,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aTS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aTT" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aTU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aTV" = (/turf/closed/wall,/area/gateway)
-"aTW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aTX" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/science/circuit)
-"aTY" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/security/courtroom)
-"aTZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aUa" = (/obj/machinery/light_switch{pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aUb" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"aUc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aUd" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aUe" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aUf" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"aUg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aUh" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aUi" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/gateway)
-"aUj" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/machinery/requests_console{department = "Public Router"; name = "Public Router RC"; pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/router/public)
-"aUk" = (/turf/closed/wall/r_wall,/area/gateway)
-"aUl" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/public)
-"aUm" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/public)
-"aUn" = (/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/bot,/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel,/area/router/public)
-"aUo" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/gateway)
-"aUp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/science,/turf/open/floor/plasteel,/area/gateway)
-"aUq" = (/turf/closed/wall/r_wall,/area/crew_quarters/lounge/jazz)
-"aUr" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aUs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aUt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"aUu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/rack,/turf/open/floor/plasteel,/area/gateway)
-"aUv" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jazz Lounge"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"aUx" = (/obj/machinery/door/window/northright{name = "Game Room"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"aUy" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/official/do_not_question{pixel_y = 32},/turf/open/floor/plasteel,/area/security/prison)
-"aUz" = (/obj/machinery/computer/telecomms/server{dir = 4; network = "tcommsat"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/circuit,/area/bridge)
-"aUA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aUB" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"aUC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
-"aUD" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aUE" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aUF" = (/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"aUG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
-"aUH" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/central)
-"aUI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aUJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aUK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning/electricshock{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/central)
-"aUL" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aUM" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aUN" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aUO" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/teleporter"; dir = 4; name = "Teleporter Room APC"; pixel_x = 26},/turf/open/floor/plasteel/dark,/area/teleporter)
-"aUP" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aUQ" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aUR" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge)
-"aUS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"aUT" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aUU" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/cogpool)
-"aUV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/courtroom)
-"aUW" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/cogpool)
-"aUX" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/port/central)
-"aUY" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aUZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
-"aVa" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aVb" = (/obj/structure/pool/Rboard,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aVc" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aVd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aVe" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/central)
-"aVf" = (/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aVg" = (/obj/machinery/computer/cryopod{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"aVh" = (/obj/effect/turf_decal/bot,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/gateway)
-"aVi" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/router/public)
-"aVj" = (/obj/machinery/vending/cola/random,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aVk" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway)
-"aVl" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aVm" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aVn" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/public)
-"aVo" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/router/public)
-"aVp" = (/obj/structure/cable{icon_state = "2-8"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/obj/machinery/camera{c_tag = "Public Router"; dir = 8; pixel_y = -22},/obj/machinery/button/massdriver{id = "public_out"; pixel_x = 24; pixel_y = -6},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/button/door{id = "pubblock"; name = "Router Access Control"; pixel_x = 24; pixel_y = 24},/turf/open/floor/plasteel,/area/router/public)
-"aVq" = (/obj/structure/table,/turf/open/floor/plasteel/white,/area/gateway)
-"aVr" = (/obj/structure/table,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/cups,/obj/structure/sign/poster/official/here_for_your_safety{pixel_x = 32},/turf/open/floor/plasteel,/area/security/main)
-"aVs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/lounge/jazz)
-"aVt" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/space/basic,/area/space/nearstation)
-"aVu" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aVv" = (/turf/open/floor/plating,/area/maintenance/department/eva)
-"aVw" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/red,/area/security/brig)
-"aVx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"aVy" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aVz" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aVA" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"aVB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"aVC" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/central)
-"aVD" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aVE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitory Toilets"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"aVF" = (/turf/open/floor/plasteel/white,/area/science/circuit)
-"aVG" = (/obj/machinery/ore_silo,/obj/effect/turf_decal/bot_white,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/ai_monitored/nuke_storage"; dir = 4; name = "Vault APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aVH" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/civilian"; dir = 8; name = "Civilian Wing Hallway APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aVI" = (/obj/structure/table,/obj/item/storage/box/zipties,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aVJ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aVK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/space/nearstation)
-"aVL" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aVM" = (/obj/structure/chair/stool,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/eva)
-"aVN" = (/obj/machinery/vending,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aVO" = (/obj/structure/table,/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/item/radio/off,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/red,/area/security/brig)
-"aVP" = (/obj/structure/window/reinforced,/obj/structure/displaycase/captain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
-"aVQ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security)
-"aVR" = (/obj/structure/window/reinforced,/obj/structure/filingcabinet,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
-"aVS" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/central)
-"aVT" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: WASTE EJECTION"; pixel_x = -32},/turf/open/space/basic,/area/space/nearstation)
-"aVU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aVV" = (/obj/structure/bed,/obj/item/bedsheet/red,/obj/structure/cable{icon_state = "2-8"},/mob/living/simple_animal/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; health = 45; maxHealth = 45; name = "Officer Beepsky"},/turf/open/floor/plating,/area/maintenance/department/security)
-"aVW" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/gateway)
-"aVX" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aVY" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"aVZ" = (/obj/machinery/computer/security/wooden_tv,/turf/open/floor/plating,/area/maintenance/department/security)
-"aWa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security)
-"aWb" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aWc" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/central)
-"aWd" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aWe" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aWf" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aWg" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"aWh" = (/obj/effect/landmark/start/lawyer,/obj/structure/chair{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"aWi" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal"; dir = 8; name = "Cryogenics APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"aWj" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation)
-"aWk" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aWl" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aWm" = (/turf/open/floor/plasteel,/area/gateway)
-"aWn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aWo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/cryopod)
-"aWp" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway)
-"aWq" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/extinguisher,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aWr" = (/obj/machinery/gateway{dir = 10},/turf/open/floor/engine,/area/gateway)
-"aWs" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aWt" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
-"aWu" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/cogpool"; dir = 4; name = "Pool APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
-"aWv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aWw" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aWx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office)
-"aWy" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aWz" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Power Monitoring"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
-"aWA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central)
-"aWB" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
-"aWC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Defendent's Chair"; req_one_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aWD" = (/obj/structure/window/reinforced/spawner/east,/obj/item/cigbutt,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/public)
-"aWE" = (/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"},/turf/closed/wall/r_wall,/area/janitor)
-"aWF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/janitor)
-"aWG" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aWH" = (/obj/machinery/disposal/bin{name = "Corpse Delivery"},/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aWI" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aWJ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"aWK" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/item/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aWL" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "public"},/turf/open/floor/plating,/area/router/public)
-"aWM" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aWN" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "public"},/turf/open/floor/plating,/area/router/public)
-"aWO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/ai_monitored/storage/eva)
-"aWP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aWQ" = (/obj/structure/closet/crate/rcd,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aWR" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = 32},/turf/open/space/basic,/area/space/nearstation)
-"aWS" = (/obj/structure/table,/obj/item/storage/box/flashes{pixel_x = 8},/obj/item/storage/box/handcuffs{pixel_x = -8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig)
-"aWT" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/router/public"; dir = 4; name = "Public Router APC"; pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/public)
-"aWU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"aWV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"aWW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/central)
-"aWX" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/medical"; dir = 8; name = "Medical Booth APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aWY" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aWZ" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage)
-"aXa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central)
-"aXb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central)
-"aXc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXd" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/central)
-"aXe" = (/obj/machinery/bookbinder,/turf/open/floor/wood,/area/library)
-"aXf" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/table/wood,/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/carpet,/area/library)
-"aXg" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library)
-"aXh" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"aXi" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aXj" = (/obj/structure/transit_tube/station/reverse,/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/camera{c_tag = "Transit Tube Access"; pixel_x = 22},/obj/structure/transit_tube_pod{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge)
-"aXk" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXm" = (/obj/machinery/gateway,/turf/open/floor/engine,/area/gateway)
-"aXn" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aXo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aXp" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/reagent_dispensers/foamtank,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"aXq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXr" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aXs" = (/obj/machinery/gateway{dir = 6},/turf/open/floor/engine,/area/gateway)
-"aXt" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/turf/open/floor/plating,/area/gateway)
-"aXu" = (/turf/closed/wall,/area/security/courtroom/jury)
-"aXv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"aXw" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aXx" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos)
-"aXy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
-"aXz" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aXA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/courtroom/jury)
-"aXB" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/courtroom)
-"aXC" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aXD" = (/obj/effect/turf_decal/bot_white/right,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/closet/crate/silvercrate,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aXE" = (/obj/effect/turf_decal/bot_white,/obj/structure/closet/crate/goldcrate,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aXF" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "gas to hot loop"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"aXG" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"aXH" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
-"aXI" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aXJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aXK" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aXL" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/item/paper/fluff/jobs/security/beepsky_mom,/turf/open/floor/plating,/area/maintenance/department/security)
-"aXM" = (/turf/closed/wall,/area/maintenance/department/security)
-"aXN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
-"aXO" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"aXP" = (/obj/machinery/door/airlock/maintenance{name = "Pool Maintenance"; req_one_access_txt = "12"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"aXQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical{name = "Medical Booth"})
-"aXR" = (/turf/closed/wall,/area/security/courtroom)
-"aXS" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aXT" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
-"aXU" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aXV" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/assembly/timer{pixel_x = 6; pixel_y = -2},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random{pixel_x = -2; pixel_y = -2},/obj/item/stack/cable_coil/random{pixel_x = 2; pixel_y = 2},/obj/item/multitool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aXW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
-"aXX" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aXY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aXZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aYa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"aYb" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aYc" = (/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/library)
-"aYd" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aYe" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aYf" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plasteel/white,/area/gateway)
-"aYg" = (/obj/effect/turf_decal/bot_white/right,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aYh" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/radio/off,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"aYi" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aYj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aYk" = (/turf/open/floor/circuit/green,/area/ai_monitored/nuke_storage)
-"aYl" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aYm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aYn" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/storage/box/smart_metal_foam,/obj/item/wrench,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/item/assembly/prox_sensor,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aYo" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Security"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"aYp" = (/obj/structure/fans/tiny/invisible,/turf/open/space/basic,/area/space)
-"aYq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
-"aYr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
-"aYs" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aYt" = (/turf/open/floor/plating,/area/maintenance/department/security)
-"aYu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/holopad,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aYv" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/analyzer,/obj/item/storage/toolbox/electrical,/obj/item/gps,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aYw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aYx" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/department/eva)
-"aYy" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side,/area/bridge)
-"aYz" = (/obj/effect/turf_decal/bot_white,/obj/effect/landmark/start/ai/secondary,/obj/machinery/camera{c_tag = "Vault"; dir = 4; network = list("vault")},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aYA" = (/obj/machinery/nuclearbomb/selfdestruct,/obj/effect/turf_decal/box/white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aYB" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
-"aYC" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/security/detectives_office"; dir = 1; name = "Detective's Office APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"aYD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aYE" = (/obj/structure/closet/crate/trashcart,/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aYF" = (/obj/structure/table/wood,/obj/item/storage/box/evidence,/obj/item/hand_labeler,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aYG" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"aYH" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aYI" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/photocopier,/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/item/paper/fluff/cogstation/secsolars,/turf/open/floor/plasteel,/area/security/main)
-"aYJ" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom)
-"aYK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Civilian Wing Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"aYL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"aYM" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aYN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aYO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/courtroom)
-"aYP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aYQ" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aYR" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"aYS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/security/brig)
-"aYT" = (/turf/closed/wall/r_wall,/area/security/checkpoint/customs)
-"aYU" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
-"aYV" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"aYW" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northright{name = "Customs Desk"; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"aYX" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/structure/window/reinforced/spawner/north,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"aYY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/courtroom)
-"aYZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"aZa" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aZb" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/eva)
-"aZc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aZd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Maintenance"; req_access_txt = "18"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/storage/eva)
-"aZe" = (/obj/structure/sign/warning/biohazard{pixel_y = 32},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"aZf" = (/obj/effect/turf_decal/bot_white/left,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aZg" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"aZh" = (/obj/structure/closet/crate,/obj/machinery/light,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/public)
-"aZi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"aZj" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/extinguisher{pixel_x = -4; pixel_y = 4},/obj/item/extinguisher{pixel_x = -4; pixel_y = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aZk" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/mass_driver{id = "public_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/public)
-"aZl" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/public)
-"aZm" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"aZn" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/motion{c_tag = "EVA"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aZo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/eva)
-"aZp" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
-"aZq" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge)
-"aZr" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aZs" = (/obj/structure/safe,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/lazarus_injector,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/effect/turf_decal/bot_white/left,/obj/item/stack/sheet/mineral/diamond,/obj/item/clothing/under/costume/soviet,/obj/item/clothing/suit/armor/vest/russian_coat,/obj/item/clothing/head/helmet/rus_helmet,/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aZt" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"aZu" = (/obj/machinery/blackbox_recorder,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"aZv" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
-"aZw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/obj/item/flashlight,/obj/item/flashlight,/obj/item/weldingtool,/obj/item/flashlight,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aZx" = (/obj/machinery/space_heater,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"aZy" = (/turf/closed/wall,/area/lawoffice)
-"aZz" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"aZA" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/lawoffice)
-"aZB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"aZC" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"aZD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Chapel Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"aZE" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/primary/central"; dir = 8; name = "Central Primary Hallway APC"; pixel_x = -26},/turf/open/floor/plating,/area/maintenance/port/central)
-"aZF" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aZG" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation)
-"aZH" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aZI" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/lawyer,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"aZJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZK" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/electrical,/obj/item/weldingtool,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/obj/item/assembly/signaler{pixel_x = 6; pixel_y = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/storage/tools)
-"aZL" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"aZM" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet,/area/security/courtroom)
-"aZN" = (/obj/machinery/computer/station_alert{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/lawoffice)
-"aZO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
-"aZP" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/aiModule/reset/purge{pixel_y = 6},/obj/item/aiModule/reset{pixel_x = -2; pixel_y = 4},/obj/item/aiModule/core/full/custom{pixel_x = -4},/obj/machinery/status_display{pixel_x = 32},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"aZQ" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/plasteel{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"aZR" = (/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
-"aZS" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
-"aZT" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/storage/box/deputy,/obj/item/paper/guides/cogstation/letter_hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"aZU" = (/obj/structure/chair,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"aZV" = (/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"aZW" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"aZX" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"aZY" = (/obj/machinery/airalarm{pixel_y = 24},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"aZZ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
-"baa" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bab" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation)
-"bac" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/item/storage/toolbox/emergency,/obj/item/stack/sheet/rglass,/obj/item/stack/sheet/rglass,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"bad" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/white/full,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bae" = (/turf/open/floor/plasteel/dark,/area/lawoffice)
-"baf" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Central Plaza - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bag" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/belt/utility,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"bah" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/lawoffice)
-"bai" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"baj" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/glass/beaker/waterbottle,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bak" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/lawoffice)
-"bal" = (/obj/structure/lattice,/obj/structure/grille,/turf/closed/wall/r_wall,/area/space/nearstation)
-"bam" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation)
-"ban" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"bao" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"bap" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"baq" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bar" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet,/area/crew_quarters/bar)
-"bas" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar)
-"bat" = (/obj/structure/chair/stool/bar,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar)
-"bau" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/junction/flip{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab)
-"bav" = (/obj/structure/chair/sofa/right,/obj/machinery/firealarm{pixel_y = 26},/obj/item/clipboard,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"baw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/lawoffice)
-"bax" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/library)
-"bay" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/library)
-"baz" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"baA" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/blue,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"baB" = (/obj/structure/rack,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/department/security)
-"baC" = (/obj/machinery/vending/cart,/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"baD" = (/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"baE" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/wood,/area/library)
-"baF" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"baG" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"baH" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security)
-"baI" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"baJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"baK" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/item/kitchen/fork,/obj/item/reagent_containers/food/snacks/pastatomato,/obj/machinery/newscaster/security_unit{pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"baL" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"baM" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar/large,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security)
-"baN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"baO" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"baP" = (/obj/structure/closet/secure_closet/captains,/obj/item/reagent_containers/food/drinks/flask/gold,/obj/item/clothing/under/rank/captain/suit,/obj/item/clothing/under/rank/captain/suit/skirt,/obj/machinery/airalarm{pixel_y = 24},/obj/item/clothing/head/centhat{name = "\improper green captain's hat"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
-"baQ" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"baR" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/lawyer,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"baS" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"baT" = (/obj/machinery/iv_drip,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"baU" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"baV" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"baW" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/aiModule/core/full/asimov{pixel_x = 2; pixel_y = 10},/obj/effect/spawner/lootdrop/aimodule_neutral{pixel_x = 1; pixel_y = 8},/obj/effect/spawner/lootdrop/aimodule_harmless{pixel_y = 6},/obj/item/aiModule/core/freeformcore{pixel_x = -1; pixel_y = 2},/obj/item/aiModule/supplied/freeform{pixel_x = -2},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"baX" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/displaycase,/turf/open/floor/wood,/area/library)
-"baY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"baZ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bba" = (/obj/effect/landmark/start/assistant,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"bbb" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet/royalblue,/area/bridge)
-"bbc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge)
-"bbd" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge)
-"bbe" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/bridge)
-"bbf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop)
-"bbg" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/courtroom)
-"bbh" = (/turf/closed/wall,/area/hallway/primary/aft)
-"bbi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"bbj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/teleporter)
-"bbk" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Telecomms Admin"; departmentType = 5; name = "Telecomms RC"; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bbl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bbm" = (/obj/structure/chair/stool,/obj/effect/landmark/start/lawyer,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bbn" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bbo" = (/obj/structure/closet/crate,/obj/item/book/manual/wiki/security_space_law,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bbp" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet,/area/security/courtroom)
-"bbq" = (/obj/effect/landmark/start/librarian,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"bbr" = (/obj/structure/filingcabinet/employment,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bbs" = (/obj/structure/table/wood,/obj/item/camera,/obj/item/pen/red,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bbt" = (/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bbu" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation)
-"bbv" = (/turf/open/space,/area/space)
-"bbw" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bbx" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bby" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bbz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bbA" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bbB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bbC" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bbD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/bridge)
-"bbE" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bbF" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bbG" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge)
-"bbH" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"bbI" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bbJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bbK" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bbL" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bbM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bbN" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bbO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bbP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "HoP Office Maintenance"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint/customs)
-"bbQ" = (/obj/structure/sign/warning/vacuum/external{pixel_x = -32; pixel_y = 32},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"bbR" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/reagent_containers/food/snacks/grown/wheat,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/cocoapod,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/soybeans,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/cherries,/obj/structure/sign/poster/contraband/have_a_puff{pixel_y = -32},/turf/open/floor/plasteel,/area/hydroponics)
-"bbS" = (/obj/machinery/space_heater,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/gateway)
-"bbT" = (/turf/closed/wall/r_wall,/area/quartermaster/sorting)
-"bbU" = (/turf/open/floor/plating,/area/quartermaster/sorting)
-"bbV" = (/turf/closed/wall/r_wall,/area/quartermaster/warehouse)
-"bbW" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/noticeboard{dir = 4; pixel_x = -27},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bbX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bbY" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bbZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bca" = (/turf/open/floor/engine/vacuum,/area/engine/atmos)
-"bcb" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bcc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/space/nearstation)
-"bcd" = (/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"bce" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "public"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Public Router"},/turf/open/floor/plating,/area/router/public)
-"bcf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bcg" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Public Router"},/turf/open/floor/plating,/area/router/public)
-"bch" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bci" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcj" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bck" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bcm" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bco" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bcp" = (/obj/machinery/libraryscanner,/obj/machinery/light,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"bcq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bcr" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bcs" = (/obj/machinery/pdapainter,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bct" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bcu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/camera{c_tag = "Aft Maintenance - Air Hookup"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bcv" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bcw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/mixing)
-"bcx" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bcy" = (/turf/closed/wall/r_wall,/area/science/mixing)
-"bcz" = (/obj/machinery/computer/card{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bcA" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bcB" = (/obj/structure/reagent_dispensers/watertank,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/gateway)
-"bcC" = (/obj/machinery/power/apc{name = "Research Division Storage APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/gateway)
-"bcD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bcE" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bcF" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bcG" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 5},/turf/open/space/basic,/area/space/nearstation)
-"bcH" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side,/area/security/courtroom)
-"bcI" = (/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bcJ" = (/obj/machinery/button/door{id = "HoPAft"; name = "Aft Shutters"; pixel_x = -24; pixel_y = -24; req_access_txt = "57"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bcK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/public/glass{name = "Cryogenics"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod)
-"bcL" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bcM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"bcN" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge2"; location = "court"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/courtroom)
-"bcO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/space/nearstation)
-"bcP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bcQ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"bcR" = (/turf/closed/wall,/area/hallway/primary/central)
-"bcS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Courtroom"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/courtroom)
-"bcT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/aft)
-"bcU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Jury Room Maintainance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/security/courtroom/jury)
-"bcV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting)
-"bcW" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_y = -30},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bcX" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/primary/central)
-"bcY" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bcZ" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bda" = (/obj/structure/table,/obj/item/hand_tele,/obj/machinery/camera{c_tag = "Teleporter Room"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/teleporter)
-"bdb" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/central)
-"bdc" = (/turf/open/floor/engine/vacuum,/area/science/mixing)
-"bdd" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Pool"; dir = 1},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/toy/poolnoodle/red,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"bde" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/mixing)
-"bdf" = (/turf/open/floor/plasteel,/area/science/mixing)
-"bdg" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central)
-"bdh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/toy/poolnoodle/blue,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"bdi" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bdj" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
-"bdk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bdl" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/closet/athletic_mixed,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool)
-"bdm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bdn" = (/obj/structure/chair{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"bdo" = (/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 17},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bdp" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bdq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bdr" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
-"bds" = (/obj/structure/chair/stool,/obj/effect/landmark/start/chaplain,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bdt" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
-"bdu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/hallway/primary/aft)
-"bdv" = (/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bdw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced/tinted,/turf/open/floor/plating,/area/chapel/office)
-"bdx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"bdy" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central)
-"bdz" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"bdA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bdB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb,/obj/item/toy/eightball,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"bdC" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bdD" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bdE" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
-"bdF" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bdG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bdH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bdI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bdJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Telecommunications Control Room Maintenance"; req_access_txt = "61"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/bridge)
-"bdK" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bdL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bdM" = (/turf/open/floor/plasteel,/area/quartermaster/office)
-"bdN" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bdO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Pool External Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"bdP" = (/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool)
-"bdQ" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/bridge)
-"bdR" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"bdS" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/bridge)
-"bdT" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/item/storage/toolbox/emergency,/obj/item/hand_labeler,/obj/item/hand_labeler,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bdU" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bdV" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bdW" = (/obj/structure/mineral_door/woodrustic{name = "Sauna"},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
-"bdX" = (/obj/structure/table/wood,/obj/item/storage/box/donkpockets,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"bdY" = (/obj/structure/sign/warning/fire,/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool)
-"bdZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/quartermaster/sorting)
-"bea" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/poster/official/report_crimes{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"beb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/courtroom/jury)
-"bec" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/mixing)
-"bed" = (/obj/machinery/suit_storage_unit/rd,/turf/open/floor/plasteel,/area/science/mixing)
-"bee" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/science/mixing)
-"bef" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating/airless,/area/science/test_area)
-"beg" = (/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"beh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/science/test_area)
-"bei" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"bej" = (/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bek" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"bel" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bem" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"ben" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"beo" = (/turf/open/floor/plasteel/white,/area/gateway)
-"bep" = (/obj/structure/table/wood,/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hor"; dir = 8; name = "Research Director's Office APC"; pixel_x = -24},/obj/item/reagent_containers/food/snacks/muffin/berry,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"beq" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "generator to cold loop"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"ber" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bes" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/space/nearstation)
-"bet" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"beu" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"bev" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"bew" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port/central)
-"bex" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"bey" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall/rust,/area/space/nearstation)
-"bez" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/office)
-"beA" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/chapel/main)
-"beB" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/quartermaster/office)
-"beC" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"beD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/space/nearstation)
-"beE" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/fans/tiny,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/disposal)
-"beF" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"beG" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Routing Depot - Fore Exterior"; dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"beH" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"beI" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"beJ" = (/turf/open/floor/plasteel,/area/hallway/primary/central)
-"beK" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"beL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"beM" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"beN" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"beO" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"beP" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"beQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/security/detectives_office)
-"beR" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"beS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"beT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"beU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"beV" = (/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = 25; pixel_y = -5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "executionburn"; pixel_x = 24; pixel_y = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/port/fore)
-"beW" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"beX" = (/obj/structure/closet/crate,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"beY" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"beZ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bfa" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/port/fore)
-"bfb" = (/obj/machinery/computer/card/minor/qm,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/keycard_auth{pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bfc" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bfd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bfe" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bff" = (/turf/closed/wall/r_wall,/area/quartermaster/qm)
-"bfg" = (/obj/structure/closet,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bfh" = (/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"bfi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bfj" = (/mob/living/simple_animal/butterfly,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"bfk" = (/mob/living/simple_animal/kiwi,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"bfl" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bfm" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
-"bfn" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"bfo" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing)
-"bfp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4},/obj/machinery/sparker/toxmix{pixel_x = 25},/turf/open/floor/engine/vacuum,/area/science/mixing)
-"bfq" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/cog; width = 9},/turf/open/space/basic,/area/space)
-"bfr" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/white,/area/science/circuit)
-"bfs" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bft" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/hallway/primary/central)
-"bfu" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway)
-"bfv" = (/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"bfw" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel,/area/security/brig)
-"bfx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/gateway)
-"bfy" = (/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"bfz" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bfA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"bfB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access_txt = "22;27"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bfC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/qm)
-"bfD" = (/obj/structure/grille,/turf/open/floor/plating,/area/quartermaster/sorting)
-"bfE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 5; id = "mail"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bfF" = (/obj/machinery/space_heater,/obj/structure/sign/poster/official/no_erp{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
-"bfG" = (/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bfH" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/button/crematorium{id = "foo"; pixel_x = 8; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bfI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = "/area/engine/storage_shared"; dir = 1; name = "Electrical Substation APC"; pixel_y = 26},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
-"bfJ" = (/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
-"bfK" = (/obj/structure/table/wood,/obj/item/storage/fancy/candle_box{pixel_x = -11; pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/paper/fluff/cogstation/letter_chap{pixel_x = 10; pixel_y = 2},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"bfL" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"bfM" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/structure/bedsheetbin/towel,/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
-"bfN" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bfO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jazz Lounge"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bfP" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bfQ" = (/obj/machinery/light/small,/obj/item/candle,/obj/item/trash/candle,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bfR" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bfS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bfT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/chapel/office)
-"bfU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bfV" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main)
-"bfW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bfX" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/cable{icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bfY" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "QM #2"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bfZ" = (/obj/effect/turf_decal/delivery,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bga" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bgb" = (/obj/structure/disposalpipe/sorting/mail{sortType = 30},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bgc" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/directions/command{dir = 8; pixel_x = -32; pixel_y = -32},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/hallway/primary/central)
-"bgd" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
-"bge" = (/turf/closed/wall/r_wall,/area/storage/primary)
-"bgf" = (/turf/closed/wall,/area/quartermaster/warehouse)
-"bgg" = (/obj/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bgh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 6},/turf/open/space/basic,/area/space/nearstation)
-"bgi" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space)
-"bgj" = (/obj/structure/table,/obj/item/weldingtool/mini,/obj/item/light/tube,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bgk" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "mail"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bgl" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/turf/open/floor/plasteel,/area/storage/primary)
-"bgm" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bgn" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/storage/primary)
-"bgo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/chapel/main)
-"bgp" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"bgq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bgr" = (/obj/structure/table/wood,/obj/item/clothing/head/helmet/skull,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"bgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bgt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bgu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bgv" = (/obj/effect/landmark/xeno_spawn,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bgw" = (/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bgx" = (/obj/structure/table/glass,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bgy" = (/obj/structure/closet,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/security/courtroom/jury"; dir = 4; name = "Jury Room APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury)
-"bgz" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bgA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bgB" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/lightreplacer,/obj/item/lightreplacer,/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/turf/open/floor/plasteel,/area/storage/primary)
-"bgC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/science/mixing)
-"bgD" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/item/target,/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/test_area)
-"bgE" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bgF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/turf/open/floor/plating,/area/hallway/primary/central)
-"bgG" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
-"bgH" = (/obj/machinery/pipedispenser,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bgI" = (/obj/machinery/pipedispenser/disposal,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bgJ" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"bgK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bgL" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bgM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
-"bgN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/primary/central)
-"bgO" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/obj/item/wrench,/obj/item/pipe_dispenser,/mob/living/simple_animal/sloth/paperwork,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bgP" = (/obj/item/analyzer,/obj/item/caution,/turf/open/floor/plating,/area/maintenance/disposal)
-"bgQ" = (/turf/closed/wall,/area/quartermaster/qm)
-"bgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool)
-"bgS" = (/obj/machinery/computer/bounty,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bgT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage)
-"bgU" = (/obj/machinery/computer/cargo,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bgV" = (/turf/closed/wall/r_wall,/area/quartermaster/storage)
-"bgW" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor)
-"bgX" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/hor)
-"bgY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/hallway/primary/central)
-"bgZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bha" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
-"bhb" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bhc" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
-"bhd" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bhe" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bhf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/office)
-"bhg" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Pool - Sauna"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 8},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool)
-"bhh" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/security/courtroom)
-"bhi" = (/obj/effect/decal/cleanable/dirt,/obj/item/clothing/head/cone,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bhj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"bhk" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bhl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool)
-"bhm" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bhn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
-"bho" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/storage/primary)
-"bhp" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bhq" = (/obj/structure/chair/sofa/right,/obj/item/instrument/recorder,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bhr" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bhs" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bht" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"bhu" = (/obj/effect/turf_decal/bot,/obj/machinery/recharge_station,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bhv" = (/obj/structure/chair/sofa/left,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bhw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/cc64k_ad{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bhx" = (/obj/machinery/vending/coffee,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/wood,/area/medical/medbay/lobby)
-"bhy" = (/obj/structure/closet/crate/science,/obj/item/stack/sheet/metal/ten,/obj/item/stack/sheet/glass/five,/obj/item/stack/rods/twentyfive,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target,/obj/item/target/clown,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/mixing)
-"bhz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"bhA" = (/obj/item/stack/cable_coil/red,/obj/item/multitool,/obj/item/wrench,/obj/item/stack/sheet/metal/five{pixel_x = 6; pixel_y = -6},/obj/item/paper/fluff/cogstation/letter_arrd,/turf/open/floor/plating,/area/maintenance/disposal)
-"bhB" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/paper/fluff/cogstation/bsrb,/obj/item/paper/fluff/cogstation/survey{pixel_x = -4; pixel_y = 2},/turf/open/floor/carpet/royalblue,/area/bridge)
-"bhC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bhD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Chapel Air Hookup"; req_one_access_txt = "12;22"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bhE" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bhF" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bhG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bhH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bhI" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
-"bhJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/engine/atmos)
-"bhK" = (/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bhL" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal"; req_one_access_txt = "12;50"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bhM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bhN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/item/kirbyplants/dead,/turf/open/floor/plasteel,/area/security/main)
-"bhO" = (/obj/structure/chair/sofa/right,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bhP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bhQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bhR" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"bhS" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bhT" = (/obj/structure/sign/departments/engineering,/turf/closed/wall,/area/hallway/primary/aft)
-"bhU" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/janitor)
-"bhV" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/pen/red{pixel_x = -4; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"bhW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"bhX" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bhY" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bhZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bia" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bib" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bic" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = -28},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bid" = (/obj/structure/chair/sofa/left,/mob/living/simple_animal/pet/cat/Proc,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bie" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bif" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"big" = (/turf/closed/wall,/area/science/circuit)
-"bih" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bii" = (/obj/structure/table/glass,/obj/item/storage/box/matches,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bij" = (/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage)
-"bik" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"bil" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/conveyor{dir = 6; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bim" = (/turf/open/space/basic,/area/space/nearstation)
-"bin" = (/obj/machinery/computer/mecha{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"bio" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bip" = (/obj/effect/landmark/start/quartermaster,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"biq" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/clothing/under/rank/civilian/head_of_personnel/suit,/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt{name = "head of personnel's suitskirt"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"bir" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bis" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bit" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"biu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"biv" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/quartermaster/office)
-"biw" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/button/door{id = "QMLoadDoor"; layer = 4; name = "Cargo Loading Doors"; pixel_x = 24; pixel_y = 6},/obj/machinery/button/door{id = "QMUnloadDoor"; layer = 4; name = "Cargo Unloading Doors"; pixel_x = 24; pixel_y = -6},/obj/machinery/camera{c_tag = "Supply - Cargo Bay"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bix" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Courtroom"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom)
-"biy" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
-"biz" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"biA" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"biB" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/rd,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"biC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"biD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"biE" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"biF" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
-"biG" = (/obj/structure/displaycase/labcage,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/camera{c_tag = "Research Director's Office - Starboard"; network = list("ss13","rd")},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"biH" = (/obj/machinery/light/small,/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"biI" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"biJ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"biK" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/science/mixing)
-"biL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall,/area/crew_quarters/heads/chief)
-"biM" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/bot,/obj/structure/sign/poster/official/foam_force_ad{pixel_x = 32},/turf/open/floor/plasteel,/area/quartermaster/office)
-"biN" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"biO" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"biP" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/gateway)
-"biQ" = (/turf/closed/wall,/area/crew_quarters/heads/chief)
-"biR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief)
-"biS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"biT" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/science/mixing)
-"biU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
-"biV" = (/turf/closed/wall,/area/storage/primary)
-"biW" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"biX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"biY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"biZ" = (/turf/closed/wall/r_wall,/area/quartermaster/office)
-"bja" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bjb" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/mechanical,/obj/item/wrench,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/storage/primary)
-"bjc" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/plasteel/twenty,/turf/open/floor/plasteel,/area/storage/primary)
-"bjd" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bje" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjf" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bjg" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/central)
-"bji" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bjl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/quartermaster/office)
-"bjm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bjn" = (/turf/closed/wall/r_wall,/area/security/checkpoint/supply)
-"bjo" = (/obj/machinery/rnd/production/techfab/department/cargo,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bjp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bjq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/conveyor{id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bjr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/quartermaster/storage)
-"bjs" = (/obj/machinery/computer/robotics{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"bjt" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"bju" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
-"bjv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/security/courtroom/jury)
-"bjw" = (/obj/item/storage/secure/safe{pixel_x = 4; pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bjx" = (/obj/structure/table/optable,/obj/effect/turf_decal/bot,/obj/item/defibrillator/loaded,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bjy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"bjz" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"bjA" = (/obj/machinery/camera{c_tag = "EVA Maintenace - Fore"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bjB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/security/brig)
-"bjC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jury Room"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/courtroom/jury)
-"bjD" = (/turf/closed/wall/r_wall,/area/security/courtroom/jury)
-"bjE" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/item/phone{pixel_x = -3; pixel_y = 3},/obj/machinery/camera{c_tag = "Atmospherics - Control Room"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/paper/guides/cogstation/letter_atmos,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos)
-"bjF" = (/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Head of Personnel APC"; pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"bjG" = (/obj/structure/rack,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bjI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bjJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
-"bjK" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plasteel,/area/storage/primary)
-"bjL" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/item/reagent_containers/spray/cleaner,/obj/machinery/camera{c_tag = "Pool Maintenance"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"bjM" = (/obj/machinery/door/airlock/public/glass{name = "Atmospherics Storage"; req_one_access_txt = "24;31"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bjN" = (/obj/machinery/vending/autodrobe,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bjO" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/item/instrument/piano_synth,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bjP" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bjQ" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant/override,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bjR" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjS" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/bot,/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_x = 32},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bjT" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"bjU" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjV" = (/obj/structure/closet{name = "Evidence Closet 5"},/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
-"bjW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bjX" = (/obj/structure/rack,/obj/machinery/button/door{id = "marketdoor"; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjY" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bjZ" = (/obj/structure/window/reinforced,/obj/machinery/shower{name = "emergency shower"; pixel_y = 12},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westright{name = "Emergency Shower"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary)
-"bka" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bkb" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 9; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bkc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light,/obj/machinery/conveyor_switch/oneway{id = "DeliveryConveyer"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bkd" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bke" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec1"; location = "bridge2"},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bkf" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bkg" = (/obj/structure/disposalpipe/segment,/obj/machinery/mineral/stacking_unit_console{machinedir = 2},/turf/closed/wall,/area/maintenance/disposal)
-"bkh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bki" = (/obj/machinery/light,/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bkj" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor_switch/oneway{id = "mail"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bkk" = (/obj/machinery/autolathe,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bkl" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/item/storage/belt/utility,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bkm" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Supply - Delivery Office Fore"; network = list("ss13","rd")},/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bkn" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bko" = (/turf/open/floor/plasteel,/area/science/circuit)
-"bkp" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bkq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/conveyor/inverted{dir = 9; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bkr" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoadDoor"; name = "Cargo Loading Door"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bks" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bkt" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoadDoor"; name = "Cargo Loading Door"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bku" = (/obj/structure/closet,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bkv" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bkw" = (/obj/structure/bookcase/random/fiction,/obj/effect/spawner/lootdrop/gambling,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bkx" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/central)
-"bky" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"bkz" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bkA" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Bridge - Starboard Quarter"; dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge)
-"bkB" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bkC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
-"bkD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/heads/chief)
-"bkE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bkF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security)
-"bkG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/crate/engineering,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/rcl/pre_loaded,/obj/item/stock_parts/cell/high/plus,/obj/item/clothing/glasses/meson,/obj/item/cartridge/atmos,/obj/item/cartridge/engineering,/obj/item/cartridge/engineering,/obj/item/cartridge/engineering,/obj/machinery/camera{c_tag = "Chief Engineer's Office"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"bkH" = (/obj/machinery/computer/atmos_control{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/engine/atmos)
-"bkI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/primary)
-"bkJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"bkK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/departments/security{pixel_x = -32},/obj/item/cigbutt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bkL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bkM" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bkN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bkO" = (/obj/machinery/vending/kink,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bkP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bkQ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bkR" = (/obj/machinery/camera{c_tag = "EVA Maintenance - Aft"; dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bkS" = (/obj/machinery/vending/sustenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bkT" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"bkU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bkV" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bkW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Pool Exterior Access"; req_access_txt = "13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"bkX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/sorting)
-"bkY" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/crate/engineering,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bkZ" = (/turf/open/floor/engine/n2,/area/engine/atmos)
-"bla" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"blb" = (/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"blc" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bld" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"ble" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"blf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop)
-"blg" = (/obj/effect/turf_decal/caution/stand_clear,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"blh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bli" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blj" = (/obj/structure/sign/warning/docking,/turf/closed/wall/r_wall,/area/space/nearstation)
-"blk" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bll" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blm" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bln" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blo" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blp" = (/turf/closed/wall/r_wall,/area/hallway/secondary/exit)
-"blq" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/wardrobe/engi_wardrobe,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary)
-"blr" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bls" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/sign/poster/official/ion_rifle{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig)
-"blt" = (/obj/machinery/computer/card/minor/ce{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"blu" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"blv" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"blw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"blx" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bly" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"blz" = (/obj/machinery/computer/atmos_control{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos)
-"blA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"blB" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blC" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
-"blE" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blF" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blG" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine,/area/science/mixing)
-"blH" = (/obj/structure/chair,/obj/machinery/button/massdriver{id = "toxinsdriver"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"blI" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/engine,/area/science/mixing)
-"blJ" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "marketdoor"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blL" = (/turf/open/floor/engine/o2,/area/engine/atmos)
-"blM" = (/turf/open/floor/engine/air,/area/engine/atmos)
-"blN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"blO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"blP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/rust,/area/maintenance/department/chapel)
-"blQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northleft{name = "Delivery Office"; req_one_access_txt = "31;48"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"blR" = (/obj/machinery/computer/bounty{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"blS" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/chair,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"blT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/closed/wall/r_wall,/area/science/mixing)
-"blU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/aft)
-"blV" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"blW" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -24},/obj/item/storage/toolbox/mechanical,/obj/item/clothing/gloves/color/fyellow,/obj/item/crowbar,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"blX" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"blY" = (/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"blZ" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "QMUnload"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bma" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/landmark/start/assistant/override,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/quartermaster/office)
-"bmb" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/hor)
-"bmc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_one_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hos)
-"bmd" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"bme" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"bmf" = (/obj/structure/sign/departments/evac,/turf/closed/wall/r_wall,/area/hallway/secondary/exit)
-"bmg" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmh" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmi" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmj" = (/obj/machinery/vending/wardrobe/cap_wardrobe,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
-"bmk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/dice/d6,/obj/machinery/camera{c_tag = "Jazz Lounge"; dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bml" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"bmm" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bmn" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmo" = (/turf/closed/wall/rust,/area/maintenance/department/chapel)
-"bmp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"bmq" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=court"; location = "bridge1"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmr" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"bms" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/barthpot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bmt" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bmu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bmv" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bmw" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"bmx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bmy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmz" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/primary)
-"bmA" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/hallway/secondary/civilian)
-"bmB" = (/obj/machinery/light_switch{pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bmC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmD" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/gateway)
-"bmF" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/turf/closed/wall,/area/crew_quarters/fitness/cogpool)
-"bmG" = (/turf/open/floor/engine,/area/gateway)
-"bmH" = (/obj/machinery/computer/upload/borg{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bmI" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/chapel/office"; dir = 4; name = "Chapel Office APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bmJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"bmK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
-"bmL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bmM" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"bmN" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal Maintenance"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bmO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/crew_quarters/lounge/jazz)
-"bmP" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/departments/engineering{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bmQ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/camera{c_tag = "Engineering Foyer - Starboard"; dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"bmR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_one_access_txt = "17;19"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/teleporter)
-"bmS" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal)
-"bmT" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"bmU" = (/obj/structure/table/wood,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/instrument/saxophone,/obj/item/reagent_containers/food/drinks/bottle/vermouth,/obj/item/clothing/glasses/sunglasses,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bmV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bmW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal)
-"bmX" = (/obj/structure/table,/obj/item/folder/yellow{pixel_y = 4},/obj/item/pen{pixel_y = 4},/obj/item/clothing/gloves/color/latex{pixel_y = 4},/obj/item/clothing/mask/surgical{pixel_y = 4},/obj/item/healthanalyzer,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/item/paper/guides/cogstation/cdn_chap,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bmY" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/disposal)
-"bmZ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bna" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bnb" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bnc" = (/obj/structure/sign/directions/command{dir = 1; pixel_x = -32; pixel_y = 32},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 40},/obj/structure/sign/directions/science{pixel_x = -32; pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bnd" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/obj/item/storage/box/matches,/obj/item/storage/fancy/cigarettes/cigpack_robust,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bne" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"bnf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"bng" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"bnh" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/poddoor{id = "DeliveryDoor"; name = "Delivery Door"},/obj/effect/turf_decal/caution/stand_clear{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bni" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/item/clipboard,/obj/item/stamp,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/pen/red,/obj/item/pen/blue{pixel_x = -5; pixel_y = -3},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bnj" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/wall,/area/science/test_area)
-"bnk" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/mixing)
-"bnl" = (/obj/machinery/gateway{dir = 9},/turf/open/floor/engine,/area/gateway)
-"bnm" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing)
-"bnn" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/window/southleft{name = "Cargo Desk"; req_access_txt = "31"},/obj/item/folder,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bno" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bnp" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
-"bnq" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room)
-"bnr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bns" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/maintenance/department/eva)
-"bnt" = (/obj/machinery/camera{c_tag = "Electrical Substation"; dir = 1},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
-"bnu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"bnv" = (/obj/effect/turf_decal/plaque{icon_state = "L1"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bnw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bnx" = (/obj/effect/turf_decal/plaque{icon_state = "L3"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bny" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/paper_bin,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/pen,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bnz" = (/obj/effect/turf_decal/plaque{icon_state = "L5"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bnA" = (/obj/effect/turf_decal/plaque{icon_state = "L7"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bnB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bnC" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bnD" = (/obj/effect/turf_decal/plaque{icon_state = "L9"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bnE" = (/obj/effect/decal/cleanable/dirt,/obj/item/crowbar,/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bnF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bnG" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/bridge)
-"bnH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/fore)
-"bnI" = (/obj/structure/bed,/obj/effect/landmark/start/head_of_personnel,/obj/item/bedsheet/hop,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"bnJ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bnK" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/teleporter)
-"bnL" = (/obj/item/beacon,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/teleporter)
-"bnM" = (/obj/effect/turf_decal/delivery,/obj/item/grown/bananapeel,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bnN" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bnO" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/hallway/secondary/exit)
-"bnP" = (/obj/effect/turf_decal/plaque{icon_state = "L11"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bnQ" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bnR" = (/obj/effect/turf_decal/plaque{icon_state = "L13"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bnS" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/space/nearstation)
-"bnT" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
-"bnU" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/wrench,/obj/item/flashlight,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bnV" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage)
-"bnW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"bnX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/closet/secure_closet/security/cargo,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"bnY" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hallway/secondary/exit)
-"bnZ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/pen/blue,/obj/machinery/camera{c_tag = "Customs - Fore"; dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"boa" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/closed/wall,/area/crew_quarters/heads/chief)
-"bob" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/closed/wall,/area/crew_quarters/heads/chief)
-"boc" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/turf/closed/wall,/area/crew_quarters/heads/chief)
-"bod" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{name = "Primary Tool Storage Desk"; req_access_txt = "11"},/obj/item/folder/yellow,/turf/open/floor/plasteel,/area/storage/primary)
-"boe" = (/obj/machinery/door/airlock/vault{name = "Vault Door"; req_access_txt = "53"},/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage)
-"bof" = (/obj/machinery/door/airlock/external/glass{name = "Pool Exterior Access"; req_access_txt = "13"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool)
-"bog" = (/obj/machinery/light{dir = 1},/turf/open/floor/grass,/area/hallway/secondary/exit)
-"boh" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"boi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool)
-"boj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bok" = (/obj/structure/table/wood,/obj/item/paicard,/obj/item/toy/sword,/obj/item/toy/figure/assistant,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bol" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/teleporter)
-"bom" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/grass,/area/hallway/secondary/exit)
-"bon" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"boo" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
-"bop" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/door/window/eastleft{name = "Operating Theatre"; req_access_txt = "45"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"boq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bor" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bos" = (/obj/structure/table,/obj/item/stack/sheet/cardboard/fifty,/obj/item/stack/wrapping_paper,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bot" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bou" = (/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bov" = (/obj/effect/turf_decal/loading_area{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bow" = (/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage)
-"box" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"boy" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"boz" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"boA" = (/turf/closed/wall,/area/security/detectives_office)
-"boB" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage)
-"boC" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/sign/departments/cargo{pixel_x = 32},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"boD" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMUnloadDoor"; name = "Cargo Unloading Door"},/turf/open/floor/plating,/area/quartermaster/storage)
-"boE" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage)
-"boF" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMUnloadDoor"; name = "Cargo Unloading Door"},/turf/open/floor/plating,/area/quartermaster/storage)
-"boG" = (/obj/machinery/space_heater,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/weldingtool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/sign/departments/engineering{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"boH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"boI" = (/turf/closed/wall/r_wall,/area/quartermaster/miningoffice)
-"boJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/machinery/computer/security/telescreen/toxins{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/science/mixing)
-"boK" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningoffice)
-"boL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"boM" = (/obj/machinery/mineral/ore_redemption{input_dir = 4; output_dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"boN" = (/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"boO" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/drinkingglasses{pixel_y = 4},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/bar)
-"boP" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"boQ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/science/mixing)
-"boR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/science/mixing)
-"boS" = (/obj/structure/sign/mining,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice)
-"boT" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"boU" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"boV" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"boW" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"boX" = (/obj/item/beacon,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"boY" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"boZ" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bpa" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/window/westleft{name = "Treatment Center"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bpb" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bpc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bpd" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bpe" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/door/window/eastright{name = "Operating Theatre"; req_access_txt = "45"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bpf" = (/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bpg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bph" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bpi" = (/obj/structure/flora/junglebush/b,/turf/open/floor/grass,/area/hallway/secondary/exit)
-"bpj" = (/obj/structure/flora/junglebush,/turf/open/floor/grass,/area/hallway/secondary/exit)
-"bpk" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bpl" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/autolathe/secure{name = "public autolathe"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bpm" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/aft)
-"bpn" = (/obj/effect/turf_decal/plaque{icon_state = "L4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bpo" = (/obj/machinery/holopad,/turf/open/floor/carpet/red,/area/security/brig)
-"bpp" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bpq" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine/air,/area/engine/atmos)
-"bpr" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bps" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge/jazz"; name = "Jazz Lounge APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bpt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bpu" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bpv" = (/turf/closed/wall/r_wall,/area/engine/break_room)
-"bpw" = (/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bpx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bpy" = (/obj/effect/turf_decal/plaque{icon_state = "L8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/observer_start,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bpz" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bpA" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bpB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/primary/aft)
-"bpC" = (/obj/effect/turf_decal/plaque{icon_state = "L10"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bpD" = (/turf/open/floor/plating,/area/maintenance/aft)
-"bpE" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
-"bpF" = (/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bpG" = (/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bpH" = (/obj/machinery/jukebox,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bpI" = (/obj/effect/turf_decal/delivery,/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bpJ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz)
-"bpK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"bpL" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/engine/engine_smes{name = "Power Monitoring"})
-"bpM" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/science/mixing)
-"bpN" = (/obj/structure/grille,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
-"bpO" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft)
-"bpP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bpQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bpR" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/mixing)
-"bpS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/carpet/red,/area/security/brig)
-"bpT" = (/obj/structure/window/reinforced/spawner,/turf/open/floor/grass,/area/hallway/secondary/exit)
-"bpU" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"bpV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Aft Air Hookup"; req_access_txt = "12;24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bpW" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/security/brig)
-"bpX" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/poster/official/obey{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig)
-"bpY" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bpZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"bqa" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bqb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/civilian)
-"bqc" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/medbay/lobby)
-"bqd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bqe" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/lobby)
-"bqf" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"bqg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"bqh" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"bqi" = (/obj/machinery/button/door{id = "HoPFore"; name = "Fore Shutters"; pixel_x = -24; pixel_y = 24; req_access_txt = "57"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bqj" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bqk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bql" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/secondary/civilian)
-"bqm" = (/turf/closed/wall,/area/medical/medbay/lobby)
-"bqn" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bqo" = (/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bqp" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"bqq" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Medbay - Chemistry Lab"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/medical/chemistry)
-"bqr" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bqs" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"bqt" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/healthanalyzer,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bqu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal Maintenance"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bqv" = (/obj/structure/window/reinforced/spawner/east,/turf/open/floor/wood,/area/medical/medbay/lobby)
-"bqw" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Engineering - Entrance"; dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"bqx" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bqy" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Supply - Mining Office"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bqz" = (/turf/closed/wall,/area/medical/chemistry)
-"bqA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bqB" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/library)
-"bqC" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bqD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bqE" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bqF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/central)
-"bqG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bqH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"bqI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/mixing)
-"bqJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/airlock_sensor/incinerator_toxmix{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/engine,/area/science/mixing)
-"bqK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bqL" = (/obj/structure/chair{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"bqM" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/pill_bottle/dice,/obj/item/toy/cards/deck,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"bqN" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bqO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bqP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bqQ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry)
-"bqR" = (/obj/machinery/computer/operating{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bqS" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bqT" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bqU" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"bqV" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bqW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bqX" = (/turf/closed/wall/mineral/titanium/nosmooth,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bqY" = (/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -32},/obj/structure/sign/directions/supply{pixel_x = -32; pixel_y = -40},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bqZ" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bra" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"brb" = (/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
-"brc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
-"brd" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bre" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/central)
-"brf" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"brg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"brh" = (/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"bri" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/hallway/secondary/civilian)
-"brj" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Central Starboard Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/civilian)
-"brk" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/medical/medbay/lobby)
-"brl" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/item/paper_bin,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/item/reagent_containers/dropper,/obj/item/stamp/denied{pixel_x = -8; pixel_y = -2},/obj/item/stamp{pixel_x = -8; pixel_y = 2},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"brm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"brn" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hydroponics)
-"bro" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva)
-"brp" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/machinery/smartfridge/disks,/turf/open/floor/plasteel,/area/hydroponics)
-"brq" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"brr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"brs" = (/turf/open/floor/plating/airless,/area/space/nearstation)
-"brt" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/chapel/office)
-"bru" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"brv" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"brw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/gateway)
-"brx" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/tools)
-"bry" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"brz" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/power/apc{areastring = "/area/science/research"; name = "Research Sector APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"brA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/pda_ad600{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz)
-"brB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"brC" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/tools)
-"brD" = (/obj/structure/table,/obj/machinery/door/window/eastright{name = "Auxiliary Tool Storage Desk"; req_access_txt = "12"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/folder,/turf/open/floor/plasteel,/area/storage/tools)
-"brE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"brF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/chemistry)
-"brG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"brH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/chemistry)
-"brI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Aft"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"brJ" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"brK" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/chem_dispenser,/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/medical/chemistry)
-"brL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation)
-"brM" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Merchant Plaza"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"brN" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"brO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"brP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"brQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"brR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "31"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"brS" = (/obj/machinery/suit_storage_unit/open,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"brT" = (/obj/machinery/suit_storage_unit/open,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"brU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/lobby)
-"brV" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"brW" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock{name = "Chapel Maintenance"; req_one_access_txt = "12;22;26;27;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"brX" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"brY" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/camera{c_tag = "Waste Disposal - Aft"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"brZ" = (/obj/item/kirbyplants{icon_state = "plant-02"},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"bsa" = (/obj/structure/table/glass,/obj/item/scalpel,/obj/item/storage/box/cups,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/medical/medbay/lobby)
-"bsb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/port/central)
-"bsc" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/table/glass,/obj/item/reagent_containers/glass/bottle/ammonia,/obj/item/toy/figure/botanist{pixel_x = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"bsd" = (/obj/structure/closet/crate/hydroponics,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/suit/hooded/wintercoat/hydro{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"bse" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bsf" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/bed/dogbed/ian,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/sign/poster/official/love_ian{pixel_y = 32},/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"bsg" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"bsh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Recycler Exterior Access"; req_one_access_txt = "13;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bsi" = (/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bsj" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green,/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics)
-"bsk" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hydroponics)
-"bsl" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva)
-"bsm" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"bsn" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/machinery/plantgenes{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics)
-"bso" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/storage/tools)
-"bsp" = (/turf/open/floor/wood,/area/medical/medbay/lobby)
-"bsq" = (/obj/structure/table,/obj/machinery/door/window/southleft{name = "Auxiliary Tool Storage Desk"; req_access_txt = "12"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/book/manual/wiki/engineering_hacking,/turf/open/floor/plasteel,/area/storage/tools)
-"bsr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty{pixel_x = -6; pixel_y = 2},/turf/open/floor/plasteel,/area/storage/tools)
-"bss" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/item/hand_labeler{pixel_y = 8},/obj/item/storage/firstaid/regular,/obj/item/book/manual/wiki/medicine{pixel_x = -6},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bst" = (/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bsu" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bsv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"bsw" = (/turf/open/floor/plasteel/stairs/left,/area/hydroponics)
-"bsx" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Recycler Exterior Access"; req_one_access_txt = "13;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bsy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"bsz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bsA" = (/turf/open/floor/plasteel/stairs/right,/area/hydroponics)
-"bsB" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"bsC" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/camera{c_tag = "Hydroponics - Aft"},/turf/open/floor/plasteel,/area/hydroponics)
-"bsD" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation)
-"bsE" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/hydroponics)
-"bsF" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/grass,/area/hydroponics)
-"bsG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/poster/contraband/borg_fancy_2{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/aft)
-"bsH" = (/obj/structure/table/glass,/obj/item/storage/box/syringes{pixel_y = 4},/turf/open/floor/grass,/area/hydroponics)
-"bsI" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"bsJ" = (/obj/structure/table/glass,/obj/item/reagent_containers/spray/plantbgone{pixel_x = 12; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 2; pixel_y = 9},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 6; pixel_y = 4},/turf/open/floor/grass,/area/hydroponics)
-"bsK" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light,/turf/open/floor/grass,/area/hydroponics)
-"bsL" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/reagentgrinder{pixel_y = 8},/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = -2; pixel_y = -2},/turf/open/floor/plasteel,/area/medical/chemistry)
-"bsM" = (/turf/closed/wall,/area/science/robotics/lab)
-"bsN" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/cable_coil/random,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/screwdriver{pixel_x = -2; pixel_y = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/chemistry)
-"bsO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hallway/secondary/civilian)
-"bsP" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/medical/chemistry)
-"bsQ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/medical/chemistry)
-"bsR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bsS" = (/obj/machinery/door/window/northleft{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bsT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"bsU" = (/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bsV" = (/turf/closed/wall,/area/maintenance/aft)
-"bsW" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/chaplain,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"bsX" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bsY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/aft)
-"bsZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/aft)
-"bta" = (/turf/closed/wall/r_wall,/area/storage/tech)
-"btb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Detective"; departmentType = 5; name = "Detective's Office RC"; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"btc" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Custodial Closet APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/janitor)
-"btd" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bte" = (/obj/structure/sign/warning/vacuum/external,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice)
-"btf" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/medical/medbay/lobby)
-"btg" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bth" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
-"bti" = (/obj/machinery/door/window/eastleft{name = "Waiting Room"},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"btj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"btk" = (/obj/structure/sign/poster/official/nanomichi_ad{pixel_x = 32},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"btl" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"btm" = (/obj/machinery/disposal/bin{name = "Chapel Mailbox"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; name = "Chapel RC"; pixel_x = -32},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"btn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
-"bto" = (/turf/open/floor/plasteel,/area/science/robotics/lab)
-"btp" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"btq" = (/obj/machinery/vending/cigarette,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"btr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bts" = (/obj/effect/decal/cleanable/dirt,/obj/structure/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 1},/turf/open/floor/plasteel,/area/maintenance/aft)
-"btt" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Aft"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian)
-"btu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/hallway/secondary/civilian)
-"btv" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft)
-"btw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/department/eva)
-"btx" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft)
-"bty" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"btz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"btA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"btB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"btC" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"btD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"btE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tech)
-"btF" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"btG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"btH" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"btI" = (/obj/structure/closet/secure_closet/brig{name = "Detainee Locker"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"btJ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/hallway/secondary/civilian)
-"btK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/exit)
-"btL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"btM" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"btN" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/rack,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/stack/cable_coil/random,/obj/item/weldingtool,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"btO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"btP" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"btQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/turf/open/floor/plating,/area/storage/tech)
-"btR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/department/eva)
-"btS" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"btT" = (/turf/closed/wall/r_wall,/area/router)
-"btU" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/medical/medbay/lobby)
-"btV" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/storage/tech)
-"btW" = (/obj/structure/table,/obj/machinery/light,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/quartermaster/office)
-"btX" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"btY" = (/obj/machinery/door/window/eastright{name = "Waiting Room"},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"btZ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router)
-"bua" = (/turf/closed/wall/r_wall,/area/science/robotics/mechbay)
-"bub" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"buc" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"bud" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{id = "router_off"},/turf/open/floor/plating,/area/router)
-"bue" = (/turf/closed/wall/r_wall,/area/router/eva)
-"buf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/structure/plasticflaps,/obj/machinery/door/window/northleft{name = "Showers"; req_one_access_txt = "29;47"},/turf/open/floor/plasteel,/area/science/lab)
-"bug" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/chapel/office)
-"buh" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/maintenance/disposal)
-"bui" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"buj" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/aft)
-"buk" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bul" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft)
-"bum" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft)
-"bun" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"buo" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bup" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"buq" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/router)
-"bur" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bus" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "public_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router)
-"but" = (/turf/closed/wall/mineral/titanium/nosmooth,/area/hallway/primary/central)
-"buu" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"buv" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"buw" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bux" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"buy" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"buz" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"buA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
-"buB" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"buC" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/wirer,/turf/open/floor/plasteel/white,/area/science/circuit)
-"buD" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"buE" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "router"},/turf/open/floor/plating,/area/router)
-"buF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"buG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"buH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"buI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"buJ" = (/obj/item/beacon,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"buK" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"buL" = (/obj/structure/closet/crate/coffin,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"buM" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/button/door{id = "capblast"; name = "Window Blast Door Control"; pixel_x = -6; pixel_y = -3; req_access_txt = "19"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
-"buN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/rust,/area/chapel/main)
-"buO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
-"buP" = (/obj/item/trash/plate,/obj/item/lighter/greyscale,/obj/item/clothing/mask/cigarette/cigar/cohiba,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"buQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"buR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop)
-"buS" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/cmo)
-"buT" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/sign/poster/official/soft_cap_pop_art{pixel_x = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"buU" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chips{pixel_x = 3; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"buV" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/processor,/obj/item/circuitboard/machine/telecomms/bus,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"buW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/janitor)
-"buX" = (/obj/structure/chair/stool,/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"buY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"buZ" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/soulstone/anybody/chaplain,/obj/item/organ/heart,/obj/item/book/granter/spell/smoke/lesser,/obj/item/nullrod,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"bva" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall,/area/janitor)
-"bvb" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bvc" = (/obj/machinery/computer/cargo/request,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/router/eva)
-"bvd" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bve" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction)
-"bvf" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"bvg" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/effect/turf_decal/bot,/obj/machinery/requests_console{department = "EVA Router"; name = "EVA Router RC"; pixel_y = 28},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/router/eva)
-"bvh" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bvi" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bvj" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
-"bvk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bvl" = (/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bvm" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"bvn" = (/obj/machinery/rnd/production/protolathe/department/science,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/lab)
-"bvo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"bvp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint)
-"bvq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"bvr" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"bvs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel)
-"bvt" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bvu" = (/turf/closed/wall/r_wall,/area/chapel/office)
-"bvv" = (/turf/closed/wall/r_wall/rust,/area/hydroponics/garden{name = "Nature Preserve"})
-"bvw" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"bvx" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bvy" = (/turf/open/floor/plasteel/white,/area/science/mixing)
-"bvz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/router/eva)
-"bvA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"bvB" = (/turf/closed/wall/r_wall/rust,/area/router)
-"bvC" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"bvD" = (/obj/machinery/camera{c_tag = "Bar - Starboard"; dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bvE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet,/area/chapel/main)
-"bvF" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bvG" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bvH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/bar)
-"bvI" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/chapel)
-"bvJ" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/head_of_personnel,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"bvK" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bvL" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bvM" = (/obj/machinery/door/airlock/external/glass{name = "External Construction Access"; req_one_access_txt = "10;31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bvN" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel)
-"bvO" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bvP" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bvQ" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"bvR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bvS" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bvT" = (/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bvU" = (/obj/item/caution,/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/biohazard{pixel_x = -32},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bvV" = (/obj/structure/table,/obj/machinery/light/small,/obj/item/storage/pill_bottle/epinephrine,/obj/item/wrench{pixel_x = -8},/obj/item/extinguisher{pixel_x = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bvW" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bvX" = (/obj/machinery/door/airlock/external{name = "External Construction Access"; req_one_access_txt = "10;31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bvY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"bvZ" = (/obj/item/folder,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bwa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva)
-"bwb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/camera{c_tag = "Chapel Air Hookup"; dir = 1},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bwc" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bwd" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bwe" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bwf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bwg" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bwh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/machinery/requests_console{department = "Routing Depot"; name = "Routing Depot RC"; pixel_y = 28},/obj/machinery/button/massdriver{id = "eva_in"; name = "mass driver button (EVA)"; pixel_x = -24},/obj/machinery/button/massdriver{id = "public_in"; name = "mass driver button (Public)"; pixel_x = -24; pixel_y = 8},/turf/open/floor/plasteel,/area/router)
-"bwi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bwj" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bwk" = (/obj/machinery/chem_master,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal)
-"bwl" = (/obj/structure/closet/secure_closet/security,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/sign/poster/official/safety_report{pixel_x = 32},/turf/open/floor/plasteel,/area/security/checkpoint)
-"bwm" = (/obj/structure/sign/departments/science,/turf/closed/wall/r_wall,/area/gateway)
-"bwn" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bwo" = (/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bwp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bwq" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bwr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bws" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/autolathe/secure{name = "public autolathe"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bwt" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bwu" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bwv" = (/obj/machinery/disposal/bin{name = "Mass Driver"},/obj/structure/sign/warning/deathsposal{pixel_x = 32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal)
-"bww" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bwx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/janitor)
-"bwy" = (/obj/machinery/vending/wardrobe/jani_wardrobe,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor)
-"bwz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bwA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"bwB" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/bot_assembly/medbot,/obj/item/clothing/head/hardhat{pixel_x = -2; pixel_y = 6; pressure_resistance = 6},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bwC" = (/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/item/storage/box/mousetraps,/obj/item/light/tube,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/machinery/camera{c_tag = "Routing Depot"},/turf/open/floor/plasteel,/area/router)
-"bwD" = (/obj/structure/table/reinforced,/obj/item/analyzer,/obj/item/wrench,/obj/item/screwdriver,/turf/open/floor/plasteel/white,/area/science/mixing)
-"bwE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bwF" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bwG" = (/obj/item/cigbutt,/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/event_spawn,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bwH" = (/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/mre/menu2/safe,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/glass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bwI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal)
-"bwJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"bwK" = (/obj/machinery/camera{c_tag = "Research - Gateway Chamber"; network = list("ss13","rd")},/obj/machinery/gateway{dir = 1},/turf/open/floor/engine,/area/gateway)
-"bwL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router)
-"bwM" = (/obj/machinery/gateway{dir = 5},/turf/open/floor/engine,/area/gateway)
-"bwN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Toxins Lab - Port"; network = list("ss13","rd")},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"bwO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bwP" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/break_room)
-"bwQ" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 1; id = "router_off"},/turf/open/floor/plating,/area/router)
-"bwR" = (/turf/open/floor/plasteel,/area/engine/break_room)
-"bwS" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bwT" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bwU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bwV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/break_room)
-"bwW" = (/turf/closed/wall,/area/maintenance/disposal)
-"bwX" = (/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bwY" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva)
-"bwZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/obj/item/wirecutters,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/router)
-"bxa" = (/obj/structure/frame/computer,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/router)
-"bxb" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Waste Disposal - Port"; dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bxc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bxd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bxe" = (/obj/item/stack/tile/plasteel{pixel_x = 6; pixel_y = 13},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bxf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "EVA Router"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eva)
-"bxg" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 14},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bxh" = (/obj/machinery/disposal/bin{name = "Corpse Disposal"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bxi" = (/obj/structure/closet/l3closet/janitor,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/item/clothing/gloves/color/purple,/obj/item/clothing/gloves/color/purple,/obj/item/clothing/under/costume/maid,/obj/item/clothing/under/costume/maid,/obj/structure/sign/poster/official/bless_this_spess{pixel_x = -32},/turf/open/floor/plasteel,/area/janitor)
-"bxj" = (/turf/closed/wall/r_wall,/area/maintenance/aft)
-"bxk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bxl" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"bxm" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/closed/wall/r_wall,/area/tcommsat/computer)
-"bxn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxo" = (/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer)
-"bxp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bxq" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer)
-"bxr" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed,/obj/item/radio/off{pixel_x = 4; pixel_y = 4},/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/turf/open/floor/plasteel,/area/janitor)
-"bxs" = (/obj/item/storage/toolbox/mechanical/old,/obj/item/reagent_containers/food/snacks/chips{pixel_x = 3; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/disposal)
-"bxt" = (/obj/machinery/door/airlock/external/glass{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer)
-"bxu" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/broadcaster,/obj/item/circuitboard/machine/telecomms/receiver,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxw" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/aft)
-"bxx" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxy" = (/obj/item/trash/candle,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal)
-"bxz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/station_alert,/obj/structure/sign/poster/official/safety_eye_protection{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper/guides/cogstation/letter_eng,/turf/open/floor/plasteel,/area/engine/break_room)
-"bxA" = (/obj/machinery/announcement_system,/turf/open/floor/plasteel/dark,/area/tcommsat/computer)
-"bxB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/computer/message_monitor{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxC" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small,/turf/open/floor/plating,/area/tcommsat/computer)
-"bxD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/door/airlock/engineering{name = "Telecommunications Chamber"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"bxG" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/disposal)
-"bxH" = (/turf/closed/wall,/area/storage/tech)
-"bxI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxK" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/radio/off,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bxM" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/primary/aft)
-"bxN" = (/obj/structure/rack,/obj/machinery/light/small{dir = 8},/obj/effect/spawner/lootdrop/techstorage/command,/turf/open/floor/plating,/area/storage/tech)
-"bxO" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bxP" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/external{name = "Central Starboard Exterior Access"; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bxQ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxR" = (/obj/effect/turf_decal/bot,/obj/machinery/conveyor_switch{id = "MiningConveyer"},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bxS" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bxT" = (/turf/closed/wall/r_wall,/area/science/xenobiology)
-"bxU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bxV" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bxW" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxY" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bxZ" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"bya" = (/obj/machinery/computer/telecomms/monitor{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"byb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/server)
-"byc" = (/obj/machinery/igniter/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing)
-"byd" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fourcolor,/obj/item/pen/fountain{pixel_x = 2; pixel_y = 6},/obj/item/stamp/hop,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"bye" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"byf" = (/obj/machinery/door/airlock/engineering/glass{name = "Telecommunications Mainframe"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/tcommsat/server)
-"byg" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"byh" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"byi" = (/turf/closed/wall/r_wall,/area/tcommsat/server)
-"byj" = (/turf/open/floor/plasteel,/area/tcommsat/server)
-"byk" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byl" = (/obj/machinery/door/airlock/engineering/glass{name = "Telecommunications Mainframe"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/server)
-"bym" = (/obj/machinery/announcement_system,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byn" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"byo" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/pen,/obj/item/pen{pixel_x = 4; pixel_y = 3},/obj/machinery/camera{c_tag = "Chapel Game Room"; dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"byp" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byq" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byr" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/flashlight/lamp/green,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"bys" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eva)
-"byt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Starboard Exterior Access"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"byu" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/external{name = "Central Starboard Exterior Access"; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"byv" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"byw" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"byx" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byy" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byz" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byA" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byB" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"byC" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"byD" = (/obj/machinery/camera{c_tag = "Medbay - Lobby"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"byE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/button/massdriver{id = "eva_out"; pixel_x = 24; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/eva)
-"byF" = (/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor/auto{dir = 4; id = "EVA"},/turf/open/floor/plating,/area/router/eva)
-"byG" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byH" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byI" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byJ" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byK" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byL" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"byM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Chapel Maintenance"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"byN" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/morgue)
-"byO" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/tile/plasteel{pixel_x = 3; pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"byP" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"byQ" = (/turf/closed/wall,/area/medical/morgue)
-"byR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"byS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"byT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
-"byU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"byV" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"byW" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"byX" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating/airless,/area/space/nearstation)
-"byY" = (/obj/vehicle/ridden/janicart,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/key/janitor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"byZ" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/mass_driver{dir = 4; id = "eva_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/eva)
-"bza" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bzb" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bzc" = (/obj/machinery/light/small{dir = 8},/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/turf/open/floor/plating,/area/storage/tech)
-"bzd" = (/turf/open/floor/plating,/area/storage/tech)
-"bze" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/aft)
-"bzf" = (/obj/structure/janitorialcart,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"bzg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/janitor)
-"bzh" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"bzi" = (/obj/item/cardboard_cutout,/turf/open/floor/plating,/area/maintenance/disposal)
-"bzj" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/flashlight,/obj/item/flashlight,/obj/item/assembly/flash,/obj/item/assembly/flash,/obj/item/clothing/glasses/meson,/turf/open/floor/plating,/area/storage/tech)
-"bzk" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/storage/tech)
-"bzl" = (/obj/structure/closet/secure_closet,/obj/effect/spawner/lootdrop/organ_spawner,/obj/effect/spawner/lootdrop/organ_spawner,/obj/effect/spawner/lootdrop/organ_spawner,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/disposal)
-"bzm" = (/obj/machinery/conveyor{dir = 5; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bzn" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bzo" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bzp" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"bzq" = (/obj/machinery/light{dir = 8},/obj/structure/sign/warning/pods{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bzr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall,/area/hallway/primary/aft)
-"bzs" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bzt" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bzu" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/turf/open/floor/plating/airless,/area/quartermaster/miningoffice)
-"bzv" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/structure/plasticflaps,/turf/open/floor/plating/airless,/area/quartermaster/miningoffice)
-"bzw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bzx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Room"; req_access_txt = "63"},/turf/open/floor/plasteel/dark,/area/security/brig)
-"bzy" = (/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bzz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/gateway)
-"bzA" = (/obj/machinery/power/apc{areastring = "/area/medical/chemistry"; dir = 1; name = "Chemistry APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bzB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bzC" = (/obj/structure/closet/toolcloset,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bzD" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "evablock"; name = "EVA Router"},/turf/open/floor/plating,/area/router/eva)
-"bzE" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{dir = 4; id = "router_off"},/turf/open/floor/plating,/area/router)
-"bzF" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "router_off"},/turf/open/floor/plating,/area/router)
-"bzG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bzH" = (/obj/structure/disposalpipe/segment,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/disposal)
-"bzI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bzJ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bzK" = (/obj/machinery/disposal/bin{name = "Chapel Corpse Delivery"},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bzL" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bzM" = (/obj/structure/window/reinforced/spawner,/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bzN" = (/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bzO" = (/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycler Conveyor Control"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bzP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/router)
-"bzQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bzR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bzS" = (/obj/structure/table,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/gloves/color/latex,/obj/item/healthanalyzer,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bzT" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/central"; dir = 4; name = "Central Port Maintenance APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/port/central)
-"bzU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/machinery/meter,/turf/closed/wall,/area/hallway/primary/aft)
-"bzV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
-"bzW" = (/obj/machinery/vending/assist,/turf/open/floor/plating,/area/storage/tech)
-"bzX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "7;8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"bzY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/aft)
-"bzZ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice)
-"bAa" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bAb" = (/turf/open/floor/plating/airless,/area/science/xenobiology)
-"bAc" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway)
-"bAd" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bAe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/router)
-"bAf" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/science/xenobiology)
-"bAg" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall/r_wall,/area/science/xenobiology)
-"bAh" = (/obj/item/reagent_containers/food/condiment/pack/mustard{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/food/condiment/pack/ketchup{pixel_x = -2; pixel_y = 6},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -5; pixel_y = 7},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 1; pixel_y = 3},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bAi" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel,/area/router)
-"bAj" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/janitor)
-"bAk" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Recycler"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/maintenance/disposal)
-"bAl" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"bAm" = (/obj/effect/decal/cleanable/dirt,/obj/item/cigbutt,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel,/area/router)
-"bAn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"bAo" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bAp" = (/obj/structure/bed,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/bedsheet/purple,/obj/effect/landmark/start/janitor,/turf/open/floor/plasteel,/area/janitor)
-"bAq" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bAr" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bAs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bAt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Maintenance - Starboard"; pixel_x = 22},/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore)
-"bAu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bAv" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/bed,/obj/item/bedsheet/qm,/obj/effect/landmark/start/quartermaster,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bAw" = (/obj/item/paper/fluff/bee_objectives,/obj/item/toy/plush/beeplushie,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"bAx" = (/obj/machinery/conveyor{dir = 1; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bAy" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bAz" = (/obj/machinery/gateway{dir = 8},/turf/open/floor/engine,/area/gateway)
-"bAA" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"bAB" = (/obj/item/beacon,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bAC" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bAD" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/window/eastleft{name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bAE" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/light{dir = 8},/obj/machinery/button/door{id = "chem1"; name = "Shutters Control Button"; pixel_x = -8; pixel_y = 24; req_access_txt = "29"},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bAF" = (/obj/machinery/gateway/centerstation,/turf/open/floor/engine,/area/gateway)
-"bAG" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"bAH" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bAI" = (/obj/machinery/photocopier,/obj/machinery/requests_console{department = "Law Office"; name = "Law Office RC"; pixel_y = 32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"bAJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/clothing/neck/stethoscope,/obj/item/clothing/glasses/hud/health,/obj/item/stamp/cmo,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 1; name = "Chief Medical Officer's Office APC"; pixel_y = 24},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"bAK" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/disposal)
-"bAL" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: WASTE EJECTION"; pixel_x = -32},/turf/open/space/basic,/area/space)
-"bAM" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bAN" = (/obj/machinery/gateway{dir = 4},/turf/open/floor/engine,/area/gateway)
-"bAO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bAP" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
-"bAQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal)
-"bAR" = (/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator Room"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"bAS" = (/turf/closed/wall/r_wall/rust,/area/maintenance/disposal)
-"bAT" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bAU" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/mixing)
-"bAV" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel/white,/area/science/mixing)
-"bAW" = (/obj/structure/sign/poster/official/get_your_legs,/turf/closed/wall,/area/hallway/secondary/exit)
-"bAX" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/item/paper/fluff/cogstation/letter_cap{pixel_x = -2; pixel_y = 4},/obj/item/flashlight/lamp,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bAY" = (/obj/machinery/status_display,/turf/closed/wall,/area/hallway/secondary/exit)
-"bAZ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/chapel/main)
-"bBa" = (/obj/structure/sign/poster/official/help_others,/turf/closed/wall,/area/hallway/secondary/exit)
-"bBb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/grille/broken,/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel)
-"bBc" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/secondary/exit)
-"bBd" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/popcorn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bBe" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/sign/warning/pods{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bBf" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/storage/tech)
-"bBg" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech)
-"bBh" = (/obj/machinery/conveyor{dir = 1; id = "recycler"},/obj/structure/sign/warning/vacuum{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/disposal)
-"bBi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bBj" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/crew_quarters/heads/captain"; dir = 4; name = "Captain's Quarters APC"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
-"bBk" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bBl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/aft)
-"bBm" = (/obj/structure/chair,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
-"bBn" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bBo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"bBp" = (/obj/machinery/conveyor/inverted{dir = 9; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bBq" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bBr" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bBs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"bBt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bBu" = (/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bBv" = (/turf/closed/wall,/area/router)
-"bBw" = (/obj/structure/chair,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
-"bBx" = (/obj/structure/table,/obj/item/storage/toolbox/electrical,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/t_scanner,/turf/open/floor/plating,/area/storage/tech)
-"bBy" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bBz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bBA" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/ore_box,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bBB" = (/obj/machinery/conveyor/auto{id = "router"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 4},/turf/open/floor/plating,/area/router)
-"bBC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bBD" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bBE" = (/obj/structure/grille,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
-"bBF" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bBG" = (/obj/machinery/conveyor/inverted{dir = 10; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bBH" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bBI" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bBJ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology)
-"bBK" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/door{id = "recycleraccess"; name = "Recycler Access Control"; pixel_y = -24},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bBL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bBM" = (/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bBN" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{dir = 1},/turf/open/floor/engine,/area/science/mixing)
-"bBO" = (/turf/closed/wall/r_wall,/area/engine/engine_smes{name = "Power Monitoring"})
-"bBP" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/window/eastright{name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bBQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
-"bBR" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "Computer Core APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bBS" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bBT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bBU" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/sign/departments/cargo{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bBV" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bBW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bBX" = (/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bBY" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "EVA Router"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/eva)
-"bBZ" = (/turf/closed/wall,/area/hallway/secondary/exit)
-"bCa" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
-"bCb" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"bCc" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/router/eva)
-"bCd" = (/obj/effect/landmark/start/captain,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bCe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"bCf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bCg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bCh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central)
-"bCi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bCj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/disposal)
-"bCk" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/closed/wall,/area/maintenance/disposal)
-"bCl" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bCm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bCn" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/eva)
-"bCo" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva)
-"bCp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bCq" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/door/poddoor{id = "recycleraccess"; name = "Recycler Access"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bCr" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bCs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bCt" = (/obj/effect/turf_decal/bot,/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/item/storage/box/engineer{pixel_y = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"bCu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/eva)
-"bCv" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bCw" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/turf/open/floor/plating,/area/router/eva)
-"bCx" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bCy" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/turf/open/floor/plating,/area/router/eva)
-"bCz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary)
-"bCA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bCB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal)
-"bCC" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/eva)
-"bCD" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bCE" = (/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "evablock"; name = "EVA Router"},/turf/open/floor/plating,/area/router/eva)
-"bCF" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai)
-"bCG" = (/obj/item/cigbutt,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bCH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bCI" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bCJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"bCK" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bCL" = (/turf/closed/wall/rust,/area/security/detectives_office)
-"bCM" = (/turf/closed/wall/r_wall/rust,/area/security/detectives_office)
-"bCN" = (/obj/structure/filingcabinet,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bCO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bCP" = (/obj/structure/table/wood,/obj/item/storage/briefcase,/obj/item/taperecorder,/obj/item/radio{pixel_x = -6},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bCQ" = (/obj/structure/table/wood,/obj/machinery/computer/med_data/laptop{dir = 8; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bCR" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "airbridge_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router)
-"bCS" = (/obj/structure/closet,/obj/machinery/camera{c_tag = "Central Plaza - Legal Desk"; dir = 1},/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bCT" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/sorting/mail/flip,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router)
-"bCU" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/maintenance/disposal)
-"bCV" = (/turf/open/floor/plating/airless,/area/maintenance/disposal)
-"bCW" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"bCX" = (/obj/machinery/rnd/production/circuit_imprinter/department/science,/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/lab)
-"bCY" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bCZ" = (/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router)
-"bDa" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bDb" = (/mob/living/simple_animal/mouse/white{desc = "Wubba lubba dub dub."; name = "Rick"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bDc" = (/obj/machinery/vending/security,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bDd" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Aft Maintenance - Port"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"bDe" = (/obj/machinery/disposal/bin{name = "Corpse Delivery"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/dark,/area/chapel/office)
-"bDf" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/service,/turf/open/floor/plating,/area/storage/tech)
-"bDg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/medical,/turf/open/floor/plating,/area/storage/tech)
-"bDh" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/turf/open/floor/plating,/area/storage/tech)
-"bDi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"bDj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/decal/cleanable/dirt,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/chapel)
-"bDk" = (/obj/machinery/light,/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 15},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"bDl" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bDm" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/primary/aft"; dir = 1; name = "Aft Primary Hallway APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft)
-"bDn" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"bDo" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bDp" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"bDq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"bDr" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"bDs" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"bDt" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"bDu" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/book/manual/wiki/barman_recipes,/obj/item/reagent_containers/rag,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bDv" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"bDw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"bDx" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDy" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bDz" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 1},/obj/machinery/camera{c_tag = "Service Hallway - Aft"; pixel_x = 22},/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDA" = (/turf/closed/wall/r_wall,/area/hallway/secondary/service)
-"bDB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"bDC" = (/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/router)
-"bDE" = (/obj/structure/closet/crate/freezer,/obj/item/reagent_containers/food/snacks/store/cheesewheel,/obj/item/reagent_containers/food/snacks/grown/pineapple,/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/bluecherries,/obj/item/reagent_containers/food/snacks/grown/citrus/lime,/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDF" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDG" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDH" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDI" = (/obj/structure/closet/crate/freezer,/obj/effect/spawner/lootdrop/three_course_meal,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"bDK" = (/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/service)
-"bDL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
-"bDM" = (/obj/structure/table/reinforced,/obj/item/transfer_valve{pixel_x = 6},/obj/item/transfer_valve{pixel_x = 6},/obj/item/transfer_valve,/obj/item/transfer_valve,/obj/item/transfer_valve{pixel_x = -6},/obj/item/transfer_valve{pixel_x = -6},/obj/machinery/camera{c_tag = "Toxins Lab - Starboard"; dir = 8; pixel_y = -22},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bDN" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bDO" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bDP" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/circuit,/area/bridge)
-"bDQ" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge)
-"bDR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge)
-"bDS" = (/turf/open/floor/plasteel/stairs,/area/crew_quarters/bar)
-"bDT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/science/robotics/lab)
-"bDU" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"bDV" = (/turf/open/floor/plasteel/stairs/left,/area/crew_quarters/bar)
-"bDW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "AI Chamber"; req_access_txt = "65"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
-"bDX" = (/turf/open/floor/plasteel/stairs/right,/area/crew_quarters/bar)
-"bDY" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar)
-"bDZ" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bEa" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"bEb" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"bEc" = (/obj/structure/table,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/item/radio/off{pixel_x = 7; pixel_y = -3},/obj/item/radio/off{pixel_x = 4; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit,/area/bridge)
-"bEd" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bEe" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/sorting/mail{dir = 4},/turf/open/floor/plating,/area/router)
-"bEf" = (/obj/structure/reagent_dispensers,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"bEg" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"bEh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router)
-"bEi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bEj" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/closet/crate,/obj/machinery/camera{c_tag = "Waste Disposal - Starboard"},/obj/item/stack/tile/noslip/thirty,/obj/structure/sign/poster/official/ue_no{pixel_y = 32},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/disposal)
-"bEk" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bEl" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bEm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"bEn" = (/obj/machinery/computer/card{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/security/checkpoint)
-"bEo" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bEp" = (/turf/closed/wall/r_wall,/area/maintenance/solars/starboard/fore)
-"bEq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bEr" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/crew_quarters/locker"; dir = 8; name = "Locker Room APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"bEs" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/eva"; dir = 4; name = "EVA APC"; pixel_x = 24},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"bEt" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"bEu" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"bEv" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"bEw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Starboard Bow Solar Maintenance"; dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"bEx" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router)
-"bEy" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4},/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"bEz" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"bEA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Starboard Bow Solar Maintenance"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore)
-"bEB" = (/obj/structure/rack,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/item/radio/off{pixel_x = 7; pixel_y = 4},/obj/item/flashlight,/obj/item/crowbar/red,/obj/item/crowbar/red{pixel_x = -6; pixel_y = 4},/obj/item/radio/off{pixel_x = -8},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/camera{c_tag = "Starboard Bow Maintenance - Port"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"bEC" = (/obj/structure/table/glass,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bED" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bEE" = (/obj/structure/table,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/red,/obj/item/clothing/gloves/boxing{pixel_y = 8},/obj/item/clothing/gloves/boxing{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bEF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bEG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"bEH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom)
-"bEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"bEJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bEK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"bEL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/disposal)
-"bEM" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bEN" = (/obj/machinery/computer/communications{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/camera{c_tag = "Bridge - Captain's Quarters"; dir = 8; pixel_y = -22},/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = 30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bEO" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light_switch{pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bEP" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/sign/poster/official/high_class_martini{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bEQ" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal"; dir = 8; name = "Waste Disposal APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/disposal)
-"bER" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"bES" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"bET" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bEU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bEV" = (/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = 26},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"bEW" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room)
-"bEX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"bEY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bEZ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"bFa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/router)
-"bFb" = (/obj/structure/grille,/turf/open/floor/plating,/area/router)
-"bFc" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bFd" = (/obj/structure/closet/crate/trashcart,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bFe" = (/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bFf" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/aiModule/supplied/oxygen{pixel_x = 2; pixel_y = 10},/obj/item/aiModule/supplied/quarantine{pixel_x = 1; pixel_y = 8},/obj/item/aiModule/zeroth/oneHuman{pixel_y = 4},/obj/effect/spawner/lootdrop/aimodule_harmful{pixel_x = -1; pixel_y = 2},/obj/item/aiModule/supplied/protectStation{pixel_x = -2},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bFg" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bFh" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bFi" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bFj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
-"bFk" = (/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
-"bFl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/xenobiology)
-"bFm" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/paper_bin,/obj/item/pen/fourcolor,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bFn" = (/turf/open/floor/plating/asteroid,/area/chapel/main)
-"bFo" = (/obj/machinery/smartfridge/extract/preloaded,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bFp" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
-"bFq" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/slime_scanner,/obj/item/slime_scanner,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bFr" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/science/test_area)
-"bFs" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bFt" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bFu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
-"bFv" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bFw" = (/obj/machinery/monkey_recycler,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/xenobiology"; name = "Xenobiology Lab APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bFx" = (/obj/machinery/mecha_part_fabricator,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"bFy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bFz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/paper/guides/cogstation/janitor,/turf/open/floor/plasteel,/area/janitor)
-"bFA" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bFB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/science/lab)
-"bFC" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bFD" = (/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bFE" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft)
-"bFF" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech)
-"bFG" = (/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bFH" = (/obj/machinery/power/apc{name = "Customs APC"; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bFI" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bFJ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bFK" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFL" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFM" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFN" = (/obj/structure/chair{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bFO" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFP" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFQ" = (/obj/structure/table,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/gloves/boxing/blue{pixel_y = 8},/obj/item/clothing/gloves/boxing/blue{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bFR" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bFS" = (/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bFT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFU" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFV" = (/obj/structure/window/reinforced,/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFW" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"bFX" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bFY" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bFZ" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bGa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bGb" = (/obj/machinery/conveyor/auto{id = "router"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bGc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"bGd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"bGe" = (/mob/living/simple_animal/crab/Coffee,/turf/open/floor/plating/asteroid,/area/chapel/main)
-"bGf" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/main)
-"bGg" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bGh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"bGi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"bGj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"bGk" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/router)
-"bGl" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/contraband/punch_shit{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/fore)
-"bGm" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"bGn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"bGo" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"bGp" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"bGq" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
-"bGr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bGs" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"bGt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bGu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore)
-"bGv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Arcade"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"bGw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Fitness Room"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"bGx" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness)
-"bGy" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/obj/machinery/button/massdriver{id = "eng_in"; name = "mass driver button (Engineering)"; pixel_x = 24; pixel_y = -8},/obj/machinery/button/massdriver{id = "router_out"; name = "mass driver button (Other)"; pixel_x = 24; pixel_y = 12},/turf/open/floor/plasteel,/area/router)
-"bGz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"bGA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bGB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bGC" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Starboard Quarter Maintenance - Starboard"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bGD" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bGE" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bGF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Starboard Quarter Solar Access"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bGG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"bGH" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/port/fore)
-"bGI" = (/turf/closed/wall/r_wall,/area/hallway/primary/central)
-"bGJ" = (/obj/structure/rack,/obj/item/storage/box/bodybags,/obj/item/clothing/gloves/color/grey,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bGK" = (/obj/machinery/conveyor{id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"bGL" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bGM" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bGN" = (/obj/structure/closet/wardrobe/white,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bGO" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"bGP" = (/obj/machinery/mass_driver{dir = 1; id = "secserv"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"bGQ" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation)
-"bGR" = (/obj/structure/closet/wardrobe/grey,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bGS" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"bGT" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet)
-"bGU" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall,/area/maintenance/port/fore)
-"bGV" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/maintenance/port/fore)
-"bGW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/port/fore)
-"bGX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
-"bGZ" = (/obj/structure/closet/crate/internals,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/router/eva)
-"bHa" = (/obj/structure/closet/crate,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router/eva"; dir = 4; name = "EVA Router APC"; pixel_x = 24},/obj/machinery/button/door{id = "evablock"; name = "Router Access Control"; pixel_x = 24; pixel_y = 10; req_access_txt = "19"},/turf/open/floor/plasteel,/area/router/eva)
-"bHb" = (/obj/structure/closet/wardrobe/black,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/structure/window/reinforced/spawner/north,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bHd" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"bHe" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation)
-"bHf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHg" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bHh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main)
-"bHi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"bHj" = (/obj/structure/table,/obj/structure/bedsheetbin/towel,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHk" = (/turf/closed/wall,/area/crew_quarters/locker)
-"bHl" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore)
-"bHm" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/port/fore)
-"bHn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bHo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHp" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bHq" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHr" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHs" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHt" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bHu" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHv" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHw" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHx" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bHz" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bHA" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bHB" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/locker)
-"bHC" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bHD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/aft)
-"bHE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bHF" = (/obj/structure/table/reinforced,/obj/item/assembly/timer{pixel_x = -5},/obj/item/assembly/timer{pixel_y = -7},/obj/item/assembly/timer{pixel_y = 6},/obj/item/assembly/timer{pixel_x = 8},/obj/machinery/airalarm/unlocked{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bHG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/maintenance/aft)
-"bHH" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/sign/poster/contraband/space_cube{pixel_y = 32},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway)
-"bHI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bHJ" = (/obj/item/kirbyplants{icon_state = "plant-03"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bHK" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/morgue)
-"bHL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bHM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/tech)
-"bHN" = (/turf/closed/wall,/area/maintenance/solars/starboard/aft)
-"bHO" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"bHP" = (/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bHQ" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bHR" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bHS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
-"bHT" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bHU" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bHV" = (/obj/machinery/processor/slime,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bHW" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bHX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Bow Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"bHY" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bHZ" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/science/test_area)
-"bIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bIb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bIc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 14},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bId" = (/obj/structure/table,/obj/item/mmi,/obj/item/mmi,/obj/item/storage/box/bodybags,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"bIe" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty{pixel_x = 1},/obj/item/stack/sheet/glass/fifty{pixel_x = 1},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 31; receive_ore_updates = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/robotics/lab)
-"bIf" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/door/airlock/maintenance{name = "Chemistry Maintenance"; req_access_txt = "5; 33"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/chemistry)
-"bIg" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/reagent_containers/food/snacks/chips,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bIh" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery/white,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bIi" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry)
-"bIj" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"bIk" = (/turf/closed/wall/r_wall,/area/science/robotics/lab)
-"bIl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bIm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bIn" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bIo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/evac{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/aft)
-"bIp" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/aft)
-"bIq" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bIr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bIs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bIt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bIu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5;6"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bIv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bIw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bIx" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bIy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "External Solar Access"; req_access_txt = "10;13"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bIz" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bIA" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bIB" = (/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bIC" = (/obj/machinery/conveyor/auto{id = "disposal"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"bID" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"bIE" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
-"bIF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bIG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bIH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bII" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bIJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bIK" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bIL" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bIM" = (/obj/machinery/shower{desc = "The HS-451. Standard Nanotrasen Hygiene Division design, although it looks like this one was installed more recently."; dir = 8; name = "emergency shower"; pixel_y = -4},/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/chemistry)
-"bIN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bIO" = (/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bIP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bIQ" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bIR" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bIS" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bIT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation)
-"bIU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bIV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bIW" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/reagent_containers/food/drinks/bottle/absinthe,/obj/item/stack/spacecash/c20,/obj/item/coin/gold,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"bIX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bIY" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space)
-"bIZ" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bJa" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bJb" = (/obj/machinery/bloodbankgen,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bJc" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bJd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bJe" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bJf" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Maintenance"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/medical/chemistry)
-"bJg" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/box/rxglasses{pixel_x = 2},/obj/item/pen,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bJh" = (/obj/structure/sign/warning/biohazard,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical/morgue)
-"bJi" = (/obj/structure/bodycontainer/morgue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bJj" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bJk" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bJl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bJm" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 1; name = "Information Office APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bJn" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bJo" = (/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"bJp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
-"bJq" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"bJr" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
-"bJs" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bJt" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bJu" = (/obj/effect/turf_decal/loading_area,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/lab"; dir = 8; name = "Research and Development APC"; pixel_x = -24},/turf/open/floor/plasteel/white,/area/science/lab)
-"bJv" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bJw" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bJx" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bJy" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bJz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/circuit)
-"bJA" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Circuitry Lab"; req_access_txt = "47"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/circuit)
-"bJB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bJC" = (/obj/machinery/camera{c_tag = "Library"; network = list("ss13","rd")},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/wood,/area/library)
-"bJD" = (/obj/machinery/disposal/bin{name = "Corpse Disposal Unit"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/red/full,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"bJE" = (/obj/machinery/mecha_part_fabricator,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"bJF" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bJG" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bJH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
-"bJI" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bJJ" = (/obj/machinery/computer/med_data,/obj/structure/window/reinforced/spawner/east,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central)
-"bJK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
-"bJL" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/bot,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central)
-"bJM" = (/obj/machinery/camera/preset/toxins{dir = 4},/obj/item/target,/turf/open/floor/plating/airless,/area/science/test_area)
-"bJN" = (/obj/machinery/clonepod,/obj/effect/turf_decal/bot,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/medical/medbay/central)
-"bJO" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24},/obj/item/storage/firstaid/radbgone,/obj/item/reagent_containers/glass/beaker/synthflesh,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central)
-"bJP" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bJQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bJR" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bJS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"bJT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bJU" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bJV" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 1; name = "euthanization chamber freezer"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bJW" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bJX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bJY" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"bJZ" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/camera{c_tag = "Xenobiology - Main Access"; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bKa" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bKb" = (/obj/machinery/chem_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bKc" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bKd" = (/obj/structure/table,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bKe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/science/robotics/lab)
-"bKf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bKg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bKh" = (/obj/machinery/door/window/westleft{name = "Operating Theatre"; req_access_txt = "45"},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"bKi" = (/obj/machinery/disposal/bin{name = "Morgue Delivery Bin"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bKj" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bKk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue Maintenance"; req_access_txt = "6"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bKl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/plating,/area/router)
-"bKm" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/storage/box/bodybags,/obj/structure/table,/obj/structure/table,/obj/item/bodybag,/obj/item/pen/blue,/obj/item/pen/red{pixel_y = 6},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bKn" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bKo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/quartermaster/miningoffice)
-"bKp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop)
-"bKq" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bKr" = (/obj/item/stack/packageWrap,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/router)
-"bKs" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bKt" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bKu" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bKv" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bKw" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/sign/poster/official/nanotrasen_logo{pixel_y = -32},/turf/open/floor/wood,/area/library)
-"bKx" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bKy" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bKz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/genetics)
-"bKA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/genetics)
-"bKB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bKC" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/genetics)
-"bKD" = (/obj/machinery/door/airlock/external/glass{name = "Mining Dock Ferry"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bKE" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
-"bKF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
-"bKG" = (/obj/machinery/computer/cargo/request{dir = 1},/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = -8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop)
-"bKH" = (/obj/item/beacon,/turf/open/floor/plating/airless,/area/science/test_area)
-"bKI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/engine,/area/science/mixing)
-"bKJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/hop)
-"bKK" = (/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/crew_quarters/heads/hop)
-"bKL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/router)
-"bKM" = (/turf/open/floor/engine,/area/science/xenobiology)
-"bKN" = (/obj/structure/table,/obj/item/storage/backpack/duffelbag/med/surgery,/obj/structure/window/reinforced/spawner/west,/obj/structure/window/reinforced,/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"bKO" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"bKP" = (/obj/machinery/door/window/southright,/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"bKQ" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"bKR" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/library)
-"bKS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bKT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bKU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/wardrobe/gene_wardrobe,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bKV" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/clipboard{pixel_y = 3},/obj/item/paper_bin,/obj/item/hand_labeler,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bKW" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/folder/white,/obj/item/storage/pill_bottle/mannitol{pixel_x = 4},/obj/item/storage/pill_bottle/mutadone,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bKX" = (/obj/structure/table_frame,/obj/item/t_scanner{pixel_x = -4},/obj/machinery/camera{c_tag = "Supply - Warehouse Fore"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bKY" = (/turf/closed/wall,/area/medical/genetics)
-"bKZ" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bLa" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bLb" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/stack/ore/glass,/obj/item/stack/ore/iron,/obj/item/stack/ore/silver,/obj/item/stack/ore/silver,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bLc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bLd" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/science/xenobiology)
-"bLe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hop)
-"bLf" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bLg" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bLh" = (/obj/structure/bed,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/item/bedsheet/captain,/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bLi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"bLj" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bLk" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bLl" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bLm" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bLn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/caution,/obj/item/shovel,/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bLo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bLp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"bLq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bLr" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bLs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bLt" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bLu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bLv" = (/obj/machinery/light,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bLw" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bLx" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/science/mixing)
-"bLy" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/engine,/area/science/xenobiology)
-"bLz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bLA" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/table,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass,/obj/item/flashlight,/obj/item/assembly/health,/obj/item/assembly/voice,/obj/item/assembly/timer,/obj/item/assembly/infra,/obj/item/assembly/igniter,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bLB" = (/obj/machinery/light,/obj/item/target,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/science/test_area)
-"bLC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bLD" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft)
-"bLE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/button/ignition/incinerator/toxmix{pixel_x = -24; pixel_y = 8},/obj/machinery/button/door/incinerator_vent_toxmix{pixel_x = -24; pixel_y = -2},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"bLF" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"bLG" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Research Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bLH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bLI" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"bLJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bLK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bLL" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bLM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/genetics)
-"bLN" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bLO" = (/obj/item/pipe{pixel_x = -3},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/mob/living/simple_animal/bot/cleanbot{auto_patrol = 1; icon_state = "cleanbot1"; name = "Mopficcer Sweepsky"},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bLP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bLQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bLR" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bLS" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bLT" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bLU" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bLV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bLW" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"bLX" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bLY" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bLZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bMa" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bMb" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bMc" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bMd" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bMe" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bMf" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bMg" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"bMh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bMi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"bMj" = (/turf/closed/wall,/area/medical/medbay/central)
-"bMk" = (/turf/closed/wall,/area/medical/virology)
-"bMl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/virology)
-"bMm" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/clothing/under/misc/assistantformal{pixel_y = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"bMn" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Monkey Pen"; req_one_access_txt = "9;39"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMo" = (/obj/structure/closet/l3closet/virology,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMp" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bMq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Quarter Maintenance - Port"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bMr" = (/obj/machinery/vending/wardrobe/viro_wardrobe,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMs" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMt" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bMu" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMv" = (/turf/open/floor/grass,/area/medical/virology)
-"bMw" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology)
-"bMx" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bMy" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bMz" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router"; dir = 4; name = "Router APC"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 19},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/router)
-"bMA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/router)
-"bMC" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMD" = (/obj/structure/flora/tree/palm,/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/medical/virology)
-"bME" = (/obj/structure/flora/tree/palm,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/grass,/area/medical/virology)
-"bMF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/southright{name = "Cloning Access"; req_one_access_txt = "9;45"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bMG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bMH" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/crowbar,/obj/machinery/requests_console{department = "Mining"; name = "Mining RC"; pixel_x = -30},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bMI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 15},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router)
-"bMJ" = (/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMK" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation)
-"bML" = (/obj/structure/flora/tree/palm,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology)
-"bMM" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
-"bMN" = (/obj/structure/closet/l3closet/virology,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMO" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMP" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bMR" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/rust,/area/router)
-"bMT" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMU" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bMV" = (/obj/machinery/light,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology)
-"bMW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router)
-"bMX" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bMY" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
-"bMZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
-"bNa" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
-"bNb" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
-"bNc" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/virologist,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNd" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos)
-"bNe" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/door/window/northleft{name = "AI Upload Chamber"; req_one_access_txt = "65"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
-"bNf" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/router)
-"bNg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNi" = (/obj/effect/landmark/blobstart,/turf/open/floor/grass,/area/medical/virology)
-"bNj" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNk" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bNl" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/turf/open/floor/plating,/area/router)
-"bNm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/paper_bin,/obj/item/pen/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNn" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/mass_driver{dir = 4; id = "router_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router)
-"bNo" = (/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"bNp" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"bNq" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"bNr" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/structure/bedsheetbin,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"bNs" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bNu" = (/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/medical/virology)
-"bNv" = (/obj/structure/sink{dir = 1; pixel_y = 25},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"bNw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNx" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNy" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNz" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNA" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNB" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/item/clothing/gloves/color/latex,/obj/item/healthanalyzer,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNC" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bND" = (/obj/machinery/computer/pandemic,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNE" = (/obj/machinery/computer/station_alert{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos)
-"bNF" = (/turf/open/floor/plasteel/stairs,/area/medical/medbay/central)
-"bNG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"bNH" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"bNI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/departments/evac,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"bNJ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit)
-"bNK" = (/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft)
-"bNL" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/aft)
-"bNM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel,/area/maintenance/port/fore)
-"bNN" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/router/eva)
-"bNO" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bNP" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"bNQ" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"bNR" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"bNS" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/aft)
-"bNT" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port/fore)
-"bNU" = (/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft)
-"bNV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bNW" = (/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/exit)
-"bNX" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit)
-"bNY" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/exit)
-"bNZ" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit)
-"bOa" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"bOc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space/basic,/area/solar/starboard/aft)
-"bOd" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/aft)
-"bOe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/starboard/aft)
-"bOg" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOh" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOi" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOk" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/aft)
-"bOl" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOm" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOn" = (/obj/machinery/door/airlock/external/glass{name = "Shuttle Maintenance Access"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/docking,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"bOp" = (/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bOq" = (/obj/machinery/power/tracker,/obj/structure/cable,/turf/open/floor/plating/airless,/area/solar/starboard/aft)
-"bOr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/closed/wall/r_wall,/area/science/mixing)
-"bOs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/bz,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"bOt" = (/obj/structure/table,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/gateway)
-"bOu" = (/obj/structure/table/reinforced,/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 30; receive_ore_updates = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bOv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/mixing)
-"bOw" = (/obj/structure/lattice,/obj/item/reagent_containers/food/drinks/bottle/grappa,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"bOx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"})
-"bOy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"bOz" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bOA" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"bOB" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/router/eva)
-"bOC" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/router/eva)
-"bOD" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/obj/machinery/sparker/toxmix{pixel_x = 25},/turf/open/floor/engine/vacuum,/area/science/mixing)
-"bOE" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
-"bOF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bOG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bOH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bOI" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/computer/security/telescreen{dir = 1; name = "Test Chamber Monitor"; network = list("xeno"); pixel_y = 2},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bOJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/pet/cat/space,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bOK" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northright{name = "Secure Xenobiological Containment"; req_one_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bOL" = (/obj/machinery/computer/card{dir = 8},/obj/machinery/keycard_auth{pixel_x = 8; pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"bOM" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/science/xenobiology)
-"bON" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bOO" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/science/explab)
-"bOP" = (/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/science/xenobiology)
-"bOQ" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
-"bOR" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/card/id/captains_spare,/obj/item/hand_tele,/obj/item/disk/nuclear,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
-"bOS" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/storage/photo_album/Captain,/obj/item/camera{pixel_y = -6},/obj/item/stamp/captain,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
-"bOT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/engine,/area/science/xenobiology)
-"bOU" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/science/xenobiology)
-"bOV" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/eva)
-"bOW" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/engine,/area/science/xenobiology)
-"bOX" = (/obj/structure/table/reinforced,/obj/item/electropack,/obj/item/assembly/signaler,/turf/open/floor/engine,/area/science/xenobiology)
-"bOY" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/camera{c_tag = "Customs - Aft"; dir = 4},/obj/structure/window/reinforced/spawner,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"bOZ" = (/obj/structure/bed,/obj/item/bedsheet/purple,/turf/open/floor/engine,/area/science/xenobiology)
-"bPa" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology)
-"bPb" = (/obj/structure/table/reinforced,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/turf/open/floor/engine,/area/science/xenobiology)
-"bPc" = (/obj/structure/chair/comfy/black,/turf/open/floor/engine,/area/science/xenobiology)
-"bPd" = (/obj/structure/table/reinforced,/obj/item/book/random/triple,/turf/open/floor/engine,/area/science/xenobiology)
-"bPe" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/engine,/area/science/xenobiology)
-"bPf" = (/obj/machinery/light,/turf/open/floor/engine,/area/science/xenobiology)
-"bPg" = (/obj/structure/chair{dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
-"bPh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
-"bPi" = (/obj/structure/chair{dir = 8},/turf/open/floor/engine,/area/science/xenobiology)
-"bPj" = (/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,/obj/machinery/light,/turf/open/floor/engine,/area/science/xenobiology)
-"bPk" = (/obj/structure/table/reinforced,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/suit/apron/surgical,/turf/open/floor/engine,/area/science/xenobiology)
-"bPl" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/book/manual/wiki/research_and_development,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bPm" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bPn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bPo" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating/airless,/area/space/nearstation)
-"bPp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/structure/window/reinforced/spawner/north,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
-"bPq" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/mineral/stacking_machine{input_dir = 2},/turf/open/floor/plating,/area/maintenance/disposal)
-"bPr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bPs" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
-"bPt" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/bridge)
-"bPu" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"bPv" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/t_scanner{pixel_x = -6; pixel_y = 4},/obj/item/t_scanner{pixel_x = -4},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"bPw" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft)
-"bPx" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/primary)
-"bPy" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
-"bPz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"bPA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bPB" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"bPC" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Waste In"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"bPD" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Escape Hall - Fore"; dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bPE" = (/obj/structure/table/glass,/obj/item/clipboard,/obj/item/storage/crayons,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bPF" = (/obj/structure/table/glass,/obj/item/storage/fancy/cigarettes,/obj/item/lighter{pixel_x = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bPG" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bPH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bPI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bPJ" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"bPK" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bPL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"bPM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/tech)
-"bPN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
-"bPO" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/red,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
-"bPP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/medbay/central)
-"bPQ" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bPR" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bPS" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bPT" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit)
-"bPU" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
-"bPV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"bPW" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/vehicle/ridden/atv,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bPX" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 9},/turf/open/space/basic,/area/space/nearstation)
-"bPY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bPZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/sorting/mail{sortType = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bQa" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bQb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/motion{c_tag = "AI Foyer"; network = list("minisat"); pixel_x = 22},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = 24; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"bQc" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bQd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bQe" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation)
-"bQf" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"bQg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sci"; location = "market"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bQh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bQi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bQj" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/machinery/light_switch{pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bQk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bQl" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bQm" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bQn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bQo" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"bQp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/maintenance/aft)
-"bQq" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/structure/table/wood,/obj/machinery/airalarm{pixel_y = 24},/obj/item/modular_computer/laptop/preset/civilian,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper/guides/cogstation/letter_atmos,/turf/open/floor/plasteel,/area/engine/break_room)
-"bQr" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bQs" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"bQt" = (/obj/machinery/conveyor/auto{dir = 5; id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bQu" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bQv" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bQw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bQx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bQy" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bQz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bQA" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bQB" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/weldingtool,/obj/item/wrench/medical,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bQC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bQD" = (/obj/machinery/power/apc{name = "Tech Storage APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/tech)
-"bQE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft)
-"bQF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"bQH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"bQI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bQJ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/power/apc{name = "Medbay Treatment Center APC"; pixel_y = -24},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bQK" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/atmospheric_technician,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"bQL" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bQM" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room)
-"bQN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation)
-"bQO" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation)
-"bQP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bQQ" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab)
-"bQR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/evac{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/aft)
-"bQS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation)
-"bQT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{frequency = 1447; name = "Station Intercom (AI Private)"; pixel_y = 24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/status_display{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bQU" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"bQV" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation)
-"bQW" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/turf/open/floor/plating,/area/router)
-"bQX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bQY" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bQZ" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/landmark/start/scientist,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bRa" = (/obj/item/cigbutt,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"bRb" = (/obj/machinery/door/window/southleft{name = "Captain's Equipment"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
-"bRc" = (/obj/machinery/suit_storage_unit/captain,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
-"bRd" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/storage"; dir = 4; name = "Canister Storage APC"; pixel_x = 24},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"bRe" = (/obj/machinery/computer/security/wooden_tv,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bRf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bRg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bRh" = (/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"bRi" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bRj" = (/obj/machinery/atmospherics/components/trinary/filter/flipped,/turf/open/floor/plasteel/white,/area/science/mixing)
-"bRk" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/science/mixing)
-"bRl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/router)
-"bRm" = (/obj/structure/closet/bombcloset,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bRn" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"bRo" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation)
-"bRp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation)
-"bRq" = (/obj/machinery/portable_atmospherics/scrubber/huge/movable,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bRr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bRs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bRt" = (/obj/structure/closet/wardrobe/miner,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/miningoffice"; dir = 8; name = "Mining Office APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bRu" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bRv" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation)
-"bRw" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bRx" = (/obj/structure/table,/obj/item/circuitboard/machine/cyborgrecharger,/obj/item/disk/design_disk,/obj/machinery/camera/motion{c_tag = "Computer Core"; dir = 1; network = list("minisat")},/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
-"bRy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bRz" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bRA" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bRB" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bRC" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
-"bRD" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/bridge)
-"bRE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router)
-"bRF" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"bRG" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"bRH" = (/obj/structure/chair/sofa/right,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"bRI" = (/turf/closed/wall/r_wall,/area/medical/medbay/central)
-"bRJ" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/assistant,/obj/machinery/status_display{pixel_y = 32},/obj/machinery/camera{c_tag = "Medbay - Waiting Room"; network = list("ss13","rd")},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"bRK" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/vacuum,/area/engine/atmos)
-"bRL" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bRM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/science/research{name = "Research Sector"})
-"bRN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/medium,/area/science/research{name = "Research Sector"})
-"bRO" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bRP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"bRQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"bRR" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bRS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bRT" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin{name = "Lab Delivery"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bRU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"bRV" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark/side{dir = 9},/area/science/robotics/lab)
-"bRW" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bRX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bRY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bRZ" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library)
-"bSa" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/storage/belt/medolier,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bSb" = (/turf/open/floor/engine/n2o,/area/engine/atmos)
-"bSc" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bSd" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel/dark/side{dir = 1},/area/science/robotics/lab)
-"bSe" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark/side{dir = 1},/area/science/robotics/lab)
-"bSf" = (/obj/structure/table,/obj/item/analyzer,/obj/item/healthanalyzer,/obj/item/plant_analyzer,/obj/item/aicard,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/turf/open/floor/plating,/area/storage/tech)
-"bSg" = (/obj/machinery/rnd/production/techfab/department/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bSh" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/medbay/central)
-"bSi" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/n2o,/area/engine/atmos)
-"bSj" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/obj/machinery/camera{c_tag = "Xenobiology - Kill Chamber"; dir = 4},/turf/open/floor/circuit/telecomms,/area/science/xenobiology)
-"bSk" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "AI Access"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSl" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bSm" = (/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"bSn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
-"bSo" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
-"bSp" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
-"bSq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"bSr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSt" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"bSv" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
-"bSw" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"})
-"bSx" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plasteel,/area/engine/break_room)
-"bSy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bSz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 11},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router)
-"bSA" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/central)
-"bSB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/hallway/primary/central)
-"bSC" = (/turf/closed/wall,/area/science/lab)
-"bSD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/router)
-"bSE" = (/turf/closed/wall/r_wall,/area/science/lab)
-"bSF" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router)
-"bSG" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/lab)
-"bSH" = (/obj/structure/sign/departments/science,/turf/closed/wall/r_wall,/area/science/lab)
-"bSI" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/router)
-"bSJ" = (/obj/structure/closet/crate/science,/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/science/circuit"; dir = 1; name = "Circuitry Lab APC"; pixel_y = 24},/turf/open/floor/plasteel/white,/area/science/circuit)
-"bSK" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/white,/area/science/lab)
-"bSL" = (/turf/open/floor/plasteel/white,/area/science/lab)
-"bSM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel/white,/area/science/lab)
-"bSN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/item/folder/white,/obj/item/disk/design_disk,/obj/item/disk/design_disk,/obj/item/disk/tech_disk,/obj/item/disk/tech_disk,/turf/open/floor/plasteel/white,/area/science/lab)
-"bSO" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "AI Access"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bSP" = (/obj/machinery/computer/rdconsole/core,/turf/open/floor/plasteel,/area/science/lab)
-"bSQ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab)
-"bSR" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/science/lab)
-"bSS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
-"bST" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
-"bSU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
-"bSV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"bSW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bSX" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28; pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bSY" = (/obj/structure/table,/obj/item/stock_parts/micro_laser{pixel_x = 4},/obj/item/stock_parts/micro_laser{pixel_x = 4},/obj/item/stock_parts/scanning_module{pixel_x = -6},/obj/item/stock_parts/scanning_module{pixel_x = -6},/obj/item/stock_parts/capacitor,/obj/item/stock_parts/capacitor,/turf/open/floor/plasteel/white,/area/science/lab)
-"bSZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab)
-"bTa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
-"bTb" = (/turf/open/floor/plasteel,/area/science/lab)
-"bTc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/lab)
-"bTd" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
-"bTe" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab)
-"bTf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab)
-"bTg" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/science/robotics/mechbay"; dir = 1; name = "Mech Bay APC"; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
-"bTh" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab)
-"bTi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 5},/area/science/robotics/lab)
-"bTj" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/science/lab)
-"bTk" = (/obj/item/rack_parts,/obj/structure/table_frame,/obj/item/flashlight,/obj/item/flashlight,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 1; name = "Warehouse APC"; pixel_y = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bTl" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/white,/area/science/lab)
-"bTm" = (/obj/machinery/disposal/bin,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab)
-"bTn" = (/obj/effect/turf_decal/delivery,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab)
-"bTo" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/debugger,/turf/open/floor/plasteel/white,/area/science/circuit)
-"bTp" = (/obj/machinery/vending/wardrobe/law_wardrobe,/obj/effect/turf_decal/bot,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bTq" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/circuit)
-"bTr" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/circuit)
-"bTs" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/circuit)
-"bTt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/central)
-"bTu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bTw" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTx" = (/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 14},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bTy" = (/obj/item/kirbyplants,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTz" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bTA" = (/obj/structure/filingcabinet/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bTB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
-"bTC" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bTD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bTE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bTF" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bTG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/circuit)
-"bTH" = (/turf/open/floor/engine/plasma,/area/engine/atmos)
-"bTI" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/plasma,/area/engine/atmos)
-"bTJ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"bTK" = (/turf/open/floor/engine/co2,/area/engine/atmos)
-"bTL" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/co2,/area/engine/atmos)
-"bTM" = (/obj/structure/table,/obj/machinery/light,/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 6},/obj/item/storage/toolbox/mechanical,/obj/machinery/camera{c_tag = "Research - Development Lab"; dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_y = -30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/science/lab)
-"bTN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/science/circuit)
-"bTO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"bTP" = (/obj/machinery/disposal/bin,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit)
-"bTQ" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel/white,/area/science/circuit)
-"bTR" = (/turf/closed/wall/r_wall,/area/science/circuit)
-"bTS" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/item/stock_parts/cell/high/plus,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bTT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/hallway/primary/central)
-"bTU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bTV" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bTW" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
-"bTX" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bTY" = (/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
-"bTZ" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
-"bUa" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics - Entrance"},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/engine/atmos)
-"bUb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bUc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bUd" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bUe" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating/airless,/area/router/aux)
-"bUf" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/sorting)
-"bUg" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"bUh" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bUi" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bUj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bUk" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bUl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bUm" = (/obj/structure/closet/crate/internals,/obj/item/tank/internals/emergency_oxygen/double,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bUn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/hallway/primary/aft)
-"bUo" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/space/nearstation)
-"bUp" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{id = "router"},/turf/open/floor/plating,/area/router)
-"bUq" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft)
-"bUr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/hallway/primary/aft)
-"bUs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bUt" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/dark/side{dir = 4},/area/hallway/primary/central)
-"bUu" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/gateway)
-"bUv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/aft)
-"bUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bUx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"bUy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bUz" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/aft)
-"bUA" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/solars/port)
-"bUB" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/engine/engine_smes"; dir = 1; name = "Power Monitoring APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"bUC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bUD" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bUE" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/aft)
-"bUF" = (/obj/machinery/doppler_array/research/science{dir = 8},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/mixing)
-"bUG" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/storage/primary)
-"bUH" = (/obj/machinery/shieldgen,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bUI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bUJ" = (/obj/effect/landmark/event_spawn,/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/science/lab)
-"bUK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Quartermaster's Office"; req_access_txt = "31;41"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bUL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bUM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/qm)
-"bUN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/door/airlock/engineering{name = "Primary Tool Storage"; req_access_txt = "11"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
-"bUO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/power/apc{areastring = "/area/storage/primary"; dir = 1; name = "Primary Tool Storage APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/primary)
-"bUP" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/quartermaster/sorting)
-"bUQ" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "DeliveryDoor"; name = "Cargo Delivery Door Control"; pixel_x = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bUR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/mob/living/simple_animal/bot/firebot,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bUS" = (/obj/structure/closet/secure_closet/quartermaster,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/item/clothing/suit/space/eva,/obj/item/clothing/head/helmet/space/eva,/obj/item/paper/fluff/cogstation/letter_qm,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"bUT" = (/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1},/obj/structure/filingcabinet/filingcabinet,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bUU" = (/obj/item/beacon,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bUV" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"bUW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/aft"; dir = 1; name = "Starboard Quarter Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bUX" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bUY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/item/grown/bananapeel,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router)
-"bUZ" = (/obj/structure/reagent_dispensers/watertank,/obj/item/wirecutters,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bVa" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/router)
-"bVb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/horizontal,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"bVc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bVd" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bVe" = (/obj/machinery/photocopier,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"bVf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring"; dir = 1},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"bVg" = (/obj/machinery/power/emitter,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bVh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bVi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bVj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"bVk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bVl" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bVm" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bVn" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"bVo" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bVp" = (/obj/machinery/computer/card/minor/rd{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"bVq" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bVr" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bVs" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bVt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bVu" = (/obj/effect/decal/cleanable/dirt,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/router)
-"bVv" = (/obj/structure/sign/departments/xenobio{pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"bVw" = (/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bVx" = (/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bVy" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"bVz" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher{pixel_x = -4},/obj/item/crowbar/red{pixel_x = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bVA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/router)
-"bVB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bVC" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "AI SMES Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bVD" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bVE" = (/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/atmos)
-"bVF" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bVG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bVH" = (/obj/effect/landmark/event_spawn,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/janitor)
-"bVI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVK" = (/obj/item/restraints/legcuffs/beartrap,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"bVL" = (/obj/effect/turf_decal/delivery,/obj/structure/noticeboard/rd{pixel_y = 28},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bVM" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bVN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
-"bVO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bVP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bVQ" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVR" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bVS" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bVT" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bVU" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/lawoffice)
-"bVV" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"bVW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/aft)
-"bVX" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"bVY" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Primary Tool Storage Desk"; req_access_txt = "11"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/primary)
-"bVZ" = (/obj/machinery/power/apc{name = "Cargo Bay APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bWa" = (/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"})
-"bWb" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWc" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWd" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/poster/official/wtf_is_co2{pixel_y = 32},/turf/open/floor/plasteel,/area/science/explab)
-"bWe" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/turf/open/floor/plasteel,/area/bridge)
-"bWf" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWg" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Law Office"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"bWh" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"bWi" = (/obj/structure/table/wood,/obj/item/cartridge/lawyer{pixel_x = 2; pixel_y = 8},/obj/item/stamp/law,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"bWj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"bWk" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"bWl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Toxins Storage"; req_access_txt = "7;8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/science/mixing)
-"bWm" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "AI SMES Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bWn" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bWo" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWp" = (/obj/machinery/atmospherics/miner/n2o,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engine/atmos)
-"bWq" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Routing Depot - Aft Exterior"; pixel_x = 22},/turf/open/space/basic,/area/space/nearstation)
-"bWr" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Research Entrance"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWs" = (/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bWu" = (/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bWv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation)
-"bWw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/lawoffice)
-"bWx" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWy" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWz" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWA" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWB" = (/obj/structure/rack,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWC" = (/obj/machinery/shower{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWD" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Medbay"},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bWE" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWG" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"bWH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/central)
-"bWI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bWJ" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"bWK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plating,/area/engine/atmos)
-"bWL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWM" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/camera{c_tag = "Central Hall - AI Access"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWN" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
-"bWO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bWP" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Computer Core"; req_access_txt = "30"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bWQ" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating/airless,/area/space/nearstation)
-"bWR" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"})
-"bWS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing)
-"bWT" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWU" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWV" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWW" = (/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWX" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bWY" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"bWZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/hallway/primary/aft)
-"bXa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/multitool{pixel_y = 4},/obj/item/book/manual/wiki/robotics_cyborgs,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bXb" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bXc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"bXd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
-"bXe" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos)
-"bXf" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/button/door{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"; pixel_x = 24; pixel_y = -6; req_access_txt = "11"},/obj/machinery/button/door{name = "Privacy Shutters"; pixel_x = 24; pixel_y = 6},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"bXg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/closed/wall/r_wall,/area/science/mixing)
-"bXh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXi" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bXj" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
-"bXk" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bXl" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXm" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bXn" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bXo" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/router)
-"bXq" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"bXr" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Research Fore"; dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXs" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"bXt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft)
-"bXu" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft)
-"bXv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft)
-"bXw" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bXx" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXy" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXz" = (/obj/machinery/power/apc{name = "Medbay Lobby APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/aft)
-"bXA" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXB" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXC" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bXD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bXE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bXF" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/checkpoint/supply)
-"bXG" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"bXH" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hydroponics)
-"bXI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
-"bXJ" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXK" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/machinery/light,/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/maintenance/aft)
-"bXM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router)
-"bXN" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft)
-"bXO" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/camera{c_tag = "Xenobiology - Fore"; dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bXP" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/space/nearstation)
-"bXQ" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXR" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos)
-"bXS" = (/obj/structure/closet/bombcloset,/obj/machinery/camera{c_tag = "Toxins Lab - Access"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/mixing)
-"bXT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bXU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/research{name = "Research Sector"})
-"bXV" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/space/nearstation)
-"bXW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bXX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bXY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bXZ" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/paper_bin,/obj/item/radio/headset/headset_sci,/obj/item/radio/headset/headset_sci,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYa" = (/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bYc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/research{name = "Research Sector"})
-"bYd" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/central)
-"bYe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bYf" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 8; id = "router"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router)
-"bYg" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/science/mixing)
-"bYh" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bYi" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/recharger,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bYk" = (/obj/machinery/vending/wardrobe/science_wardrobe,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYl" = (/obj/structure/lattice,/obj/structure/disposalpipe/sorting/mail/flip{sortType = 6},/turf/open/space/basic,/area/space/nearstation)
-"bYm" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYn" = (/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bYo" = (/obj/structure/disposalpipe/segment,/obj/machinery/computer/mech_bay_power_console,/turf/open/floor/circuit/green,/area/science/robotics/mechbay)
-"bYp" = (/turf/open/floor/plasteel/recharge_floor,/area/science/robotics/mechbay)
-"bYq" = (/obj/machinery/light/small{dir = 1},/obj/machinery/mech_bay_recharge_port{dir = 8},/turf/open/floor/circuit/green,/area/science/robotics/mechbay)
-"bYr" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYs" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Toxins Lab Access"; req_access_txt = "7;8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing)
-"bYt" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bYu" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYv" = (/turf/closed/wall,/area/science/robotics/mechbay)
-"bYw" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
-"bYy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
-"bYz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bYA" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"bYC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft)
-"bYD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bYE" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bYF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/machinery/recharge_station,/turf/open/floor/circuit/green,/area/science/robotics/mechbay)
-"bYG" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/machinery/sleeper{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"bYH" = (/obj/structure/sign/poster/contraband/kss13{pixel_y = -32},/obj/structure/cable,/obj/machinery/recharge_station,/turf/open/floor/circuit/green,/area/science/robotics/mechbay)
-"bYI" = (/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bYJ" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/storage/belt/medical,/obj/item/clothing/neck/stethoscope,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"bYK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"bYL" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bYM" = (/obj/machinery/vending/wardrobe/cargo_wardrobe,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"bYN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage)
-"bYO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYP" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bYQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft)
-"bYR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft)
-"bYS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
-"bYT" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bYU" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bYV" = (/obj/machinery/rnd/destructive_analyzer,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/lab)
-"bYW" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bYX" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bYY" = (/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
-"bYZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
-"bZa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/disks,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"bZb" = (/obj/structure/table,/obj/machinery/button/door{id = "RDServer"; layer = 3.6; name = "RD Server Lockup Control"; pixel_x = -24},/obj/item/circuitboard/machine/rdserver,/obj/item/disk/tech_disk,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
-"bZc" = (/obj/machinery/computer/robotics{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"})
-"bZd" = (/obj/effect/landmark/blobstart,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bZe" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
-"bZf" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bZg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bZh" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms)
-"bZi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"bZj" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bZk" = (/obj/machinery/shower{dir = 4},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"bZl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=upload"; location = "med"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZn" = (/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"bZo" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"bZp" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"bZq" = (/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"bZr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/central)
-"bZs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Bathroom Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/crew_quarters/toilet/restrooms)
-"bZt" = (/turf/closed/wall,/area/maintenance/starboard/aft)
-"bZu" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bZv" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/machinery/camera{c_tag = "Fire Suppression Storage"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bZw" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/office)
-"bZx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fire Suppression Storage"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bZy" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"bZz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research/glass{name = "Xenobiology Kill Room"; req_access_txt = "47"},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"bZA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/library)
-"bZB" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bZC" = (/obj/machinery/computer/libraryconsole,/obj/structure/table/wood,/turf/open/floor/carpet,/area/library)
-"bZD" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/science/xenobiology)
-"bZE" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bZF" = (/turf/open/floor/wood,/area/library)
-"bZG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/warning/fire{pixel_x = -32; pixel_y = 32},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"bZH" = (/turf/closed/wall,/area/library)
-"bZI" = (/obj/machinery/air_sensor/atmos/mix_tank,/turf/open/floor/engine/vacuum,/area/engine/atmos)
-"bZJ" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/photocopier,/turf/open/floor/carpet,/area/library)
-"bZK" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library)
-"bZL" = (/obj/machinery/air_sensor/atmos/nitrous_tank,/turf/open/floor/engine/n2o,/area/engine/atmos)
-"bZM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"bZN" = (/obj/structure/closet/crate/freezer,/obj/item/rack_parts,/obj/item/rack_parts,/obj/item/wrench,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"bZO" = (/obj/machinery/air_sensor/atmos/toxin_tank,/turf/open/floor/engine/plasma,/area/engine/atmos)
-"bZP" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos)
-"bZQ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bZR" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/atmos)
-"bZS" = (/turf/closed/wall/r_wall,/area/library)
-"bZT" = (/obj/structure/table,/obj/item/book/manual/wiki/robotics_cyborgs{pixel_x = -3; pixel_y = -2},/obj/item/book/manual/ripley_build_and_repair{pixel_x = 3; pixel_y = 2},/obj/item/mmi/posibrain,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"bZU" = (/obj/structure/table/wood,/obj/machinery/door/window/northright{name = "Library Desk Window"; req_access_txt = "37"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"bZV" = (/obj/structure/table/wood,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"bZW" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/mixing)
-"bZX" = (/obj/structure/table/wood,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"bZY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/mixing)
-"bZZ" = (/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"caa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/white,/area/science/mixing)
-"cab" = (/obj/structure/bookcase/random/adult{name = "Forbidden Knowledge"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"cac" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/science/mixing)
-"cad" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/white,/area/science/mixing)
-"cae" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light,/obj/item/storage/firstaid/toxin,/turf/open/floor/plasteel/white,/area/science/mixing)
-"caf" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation)
-"cag" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cah" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cai" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"caj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cak" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
-"cal" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos)
-"cam" = (/obj/machinery/door/poddoor/incinerator_atmos_main,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"can" = (/obj/machinery/power/turbine{dir = 8},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"cao" = (/obj/machinery/power/compressor{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"cap" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = -32; pixel_y = 32},/obj/machinery/igniter/incinerator_atmos,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"caq" = (/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"car" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"cas" = (/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine/vacuum,/area/engine/atmos)
-"cat" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input,/turf/open/floor/engine/vacuum,/area/engine/atmos)
-"cau" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"cav" = (/turf/closed/wall/r_wall,/area/science/explab)
-"caw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/explab)
-"cax" = (/turf/closed/wall,/area/science/explab)
-"cay" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos)
-"caz" = (/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
-"caA" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/science/explab)
-"caB" = (/obj/structure/closet/bombcloset,/turf/open/floor/plasteel,/area/science/explab)
-"caC" = (/obj/structure/table,/obj/item/wrench,/obj/item/clothing/suit/fire/firefighter,/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel,/area/science/explab)
-"caD" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal)
-"caE" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/explab)
-"caF" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos)
-"caG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab)
-"caH" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"caI" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/science/circuit)
-"caJ" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos)
-"caK" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos)
-"caL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos)
-"caM" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/engine/atmos)
-"caN" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/engine/atmos)
-"caO" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab)
-"caP" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/explab)
-"caQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Medbay Lobby"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side,/area/medical/medbay/lobby)
-"caR" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/kirbyplants{icon_state = "plant-06"},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"caS" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos)
-"caT" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/science/explab)
-"caU" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/science/explab)
-"caV" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 1"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
-"caW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"caX" = (/turf/open/floor/engine,/area/science/explab)
-"caY" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/engine,/area/science/explab)
-"caZ" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 2"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology)
-"cba" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/closed/wall/r_wall,/area/science/explab)
-"cbb" = (/turf/closed/wall/r_wall,/area/science/storage)
-"cbc" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/stack/sheet/metal/ten,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/screwdriver,/obj/item/screwdriver,/obj/item/multitool,/obj/item/multitool,/obj/machinery/camera{c_tag = "Research - Circuitry Lab"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cbd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/item/clothing/ears/earmuffs,/obj/item/radio,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cbe" = (/obj/structure/table/reinforced,/obj/item/clothing/mask/gas,/turf/open/floor/engine,/area/science/explab)
-"cbf" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/obj/machinery/sleeper{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cbg" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine,/area/science/storage)
-"cbh" = (/obj/machinery/rnd/experimentor,/turf/open/floor/engine,/area/science/explab)
-"cbi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
-"cbj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"cbk" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 8; name = "Quartermaster's Office APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"cbl" = (/obj/structure/table/reinforced,/obj/item/healthanalyzer,/turf/open/floor/engine,/area/science/explab)
-"cbm" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay/central)
-"cbn" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/science/storage)
-"cbo" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/science/xenobiology)
-"cbp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain)
-"cbq" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/pen,/turf/open/floor/engine,/area/science/explab)
-"cbr" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cbs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cbt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/explab)
-"cbu" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage)
-"cbv" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line,/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel,/area/science/explab)
-"cbw" = (/turf/open/floor/plasteel/dark,/area/science/explab)
-"cbx" = (/obj/structure/table/reinforced,/obj/item/storage/box/syringes,/obj/item/pen/blue,/turf/open/floor/engine,/area/science/explab)
-"cby" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cbz" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/reagent_containers/dropper,/obj/item/pen/red,/turf/open/floor/engine,/area/science/explab)
-"cbA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/storage/eva)
-"cbB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/misc_lab{name = "Research Observatory"})
-"cbC" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage)
-"cbD" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cbE" = (/turf/closed/wall/r_wall,/area/science/misc_lab{name = "Research Observatory"})
-"cbF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cbG" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"cbH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/storage/eva)
-"cbI" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"cbJ" = (/obj/structure/table/reinforced,/obj/item/analyzer,/obj/item/t_scanner,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/supermatter"; dir = 4; name = "Thermo-Electric Generator APC"; pixel_x = 24},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"cbK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/sign/departments/chemistry{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cbL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cbM" = (/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/item/storage/box/lights/mixed,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/structure/cable{icon_state = "1-10"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cbN" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cbO" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cbP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/mixing)
-"cbQ" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/meat/slab/spider,/obj/item/reagent_containers/food/snacks/meat/slab/xeno,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"cbR" = (/obj/structure/cable{icon_state = "1-10"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"cbS" = (/obj/machinery/conveyor{dir = 4; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cbT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cbU" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/atmos"; name = "Atmospherics APC"; pixel_y = -28},/obj/structure/cable,/turf/open/floor/plasteel,/area/engine/atmos)
-"cbV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/window/reinforced/spawner,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
-"cbW" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
-"cbX" = (/obj/structure/table,/obj/item/aicard,/obj/item/disk/tech_disk,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/circuit,/area/bridge)
-"cbY" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
-"cbZ" = (/obj/machinery/computer/slot_machine,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"cca" = (/obj/machinery/computer/slot_machine,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"ccb" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/medium,/area/crew_quarters/bar)
-"ccc" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux)
-"ccd" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Robotics Lab"; dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab)
-"cce" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/science/circuit)
-"ccf" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"ccg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cch" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/turf/open/floor/plating,/area/router)
-"cci" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/mass_driver{id = "workshop_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router)
-"ccj" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/turf/open/floor/plating,/area/router)
-"cck" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ccl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/maintenance/department/chapel)
-"ccm" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/robotics/lab)
-"ccn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/turf/open/floor/plating,/area/router)
-"cco" = (/obj/machinery/conveyor/auto{id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"ccp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"ccq" = (/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/nanomichi_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"ccr" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating/airless,/area/router/aux)
-"ccs" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cct" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/science/robotics/mechbay)
-"ccu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"ccv" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/airlock/mining{name = "Mining Office"; req_one_access_txt = "10;24;48"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"ccw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"ccx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"ccy" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router)
-"ccz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"ccA" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"ccB" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/folder/white,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"ccC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"ccD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"ccE" = (/obj/machinery/mass_driver{id = "eng_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router)
-"ccF" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/flashlight,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/office)
-"ccG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/engine/atmos)
-"ccH" = (/obj/machinery/mass_driver{dir = 8; id = "disposal_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"ccI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ccJ" = (/obj/machinery/conveyor{dir = 8; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"ccK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"ccL" = (/obj/effect/landmark/event_spawn,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/rnd/bepis,/turf/open/floor/engine,/area/science/explab)
-"ccM" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main)
-"ccN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"ccO" = (/obj/structure/grille,/obj/structure/disposalpipe/sorting/mail{dir = 8},/turf/open/floor/plating/airless,/area/router/aux)
-"ccP" = (/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux)
-"ccQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/courtroom)
-"ccR" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/courtroom)
-"ccS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/courtroom)
-"ccT" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"ccU" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"ccV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/aft)
-"ccW" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"ccX" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"ccY" = (/obj/structure/cable,/obj/effect/landmark/start/librarian,/obj/machinery/power/apc{areastring = "/area/library"; dir = 4; name = "Library APC"; pixel_x = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"ccZ" = (/obj/structure/closet/cardboard,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cda" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"cdb" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/open/floor/plating/airless,/area/router/aux)
-"cdc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry)
-"cdd" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/hallway/secondary/exit)
-"cde" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
-"cdf" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cdg" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdh" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cdi" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/router/aux)
-"cdj" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/microwave,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdk" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdm" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/photocopier,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper/guides/cogstation/disposals,/turf/open/floor/plasteel,/area/engine/break_room)
-"cdn" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cdo" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating/airless,/area/space/nearstation)
-"cdp" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"cdq" = (/obj/machinery/mass_driver{id = "sq_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"cdr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
-"cds" = (/obj/effect/turf_decal/bot,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdt" = (/turf/closed/wall/r_wall,/area/router/eng)
-"cdu" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdw" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdx" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"cdy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall,/area/engine/break_room)
-"cdz" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdA" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room)
-"cdB" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/sign/warning/enginesafety,/turf/closed/wall,/area/engine/break_room)
-"cdC" = (/turf/closed/wall,/area/engine/break_room)
-"cdD" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_y = 30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cdE" = (/obj/structure/table/wood,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"cdF" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"cdG" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "engblock"; name = "Engineering Router"},/turf/open/floor/plating,/area/router/eng)
-"cdH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/engine/break_room)
-"cdI" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"cdJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
-"cdL" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room)
-"cdM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access_txt = "56"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cdO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/turf/open/floor/plasteel,/area/engine/break_room)
-"cdP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/camera{c_tag = "Aft Hall - Primary Tool Storage"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cdQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room)
-"cdR" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/sign/poster/contraband/hacking_guide{pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
-"cdS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/break_room)
-"cdT" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_access_txt = "10;24"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cdU" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "eng"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "engblock"; name = "Engineering Router"},/turf/open/floor/plating,/area/router/eng)
-"cdV" = (/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"cdW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
-"cdX" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cdY" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cdZ" = (/turf/closed/wall/r_wall,/area/medical/medbay/lobby)
-"cea" = (/obj/effect/turf_decal/delivery,/obj/machinery/photocopier,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Cargo RC"; pixel_y = 30},/obj/machinery/camera{c_tag = "Supply - Delivery Office Aft"; network = list("ss13","rd")},/obj/item/paper/guides/cogstation/disposals,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ceb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics3"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab)
-"cec" = (/obj/structure/table/glass,/obj/item/paicard,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"ced" = (/obj/machinery/computer/med_data{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cee" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cef" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"ceg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"ceh" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/storage/tech)
-"cei" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cej" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cek" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"cel" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cem" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/window/eastright{name = "Medbay Desk"; req_access_txt = "5"},/obj/item/folder/white,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cen" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/circuit,/area/bridge)
-"ceo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/bridge)
-"cep" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Starboard Bow"; dir = 1; network = list("tcomms"); pixel_x = 22},/turf/open/space/basic,/area/space)
-"ceq" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall/rust,/area/engine/teg_hot)
-"cer" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "eng_out"; name = "Router Driver"},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/router/eng)
-"ces" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "eng"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/router/eng)
-"cet" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"ceu" = (/obj/machinery/vending/snack/random,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"cev" = (/obj/machinery/vending/games,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"cew" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "service"},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/router/eng)
-"cex" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"cey" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Arcade"},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"cez" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"ceA" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"ceB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"ceC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/solars/port)
-"ceD" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 13; id = "ferry_home"; name = "port bay 2"; width = 5},/turf/open/space/basic,/area/space)
-"ceE" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"ceF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"ceG" = (/obj/machinery/mass_driver{dir = 4; id = "trash"; name = "Disposal Driver"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ceH" = (/obj/structure/fans/tiny,/obj/machinery/door/poddoor{id = "trash"; name = "Disposal Bay Door"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ceI" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"ceJ" = (/obj/machinery/power/solar_control{dir = 4; name = "Starboard Quarter Solar Control"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"ceK" = (/obj/structure/grille,/turf/open/floor/plating,/area/router/eng)
-"ceL" = (/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/item/destTagger,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/router/eng)
-"ceM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/massdriver{id = "eng_out"; pixel_x = -24; pixel_y = 24},/obj/machinery/button/door{id = "engblock"; name = "Router Access Control"; pixel_x = -24; pixel_y = 32; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eng)
-"ceN" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/router/eng)
-"ceO" = (/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eng)
-"ceP" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/router/eng)
-"ceQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-5"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"ceR" = (/obj/machinery/door/poddoor{id = "TEGMixVent"; name = "Mixing Chamber Vent"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"ceS" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/starboard/central)
-"ceT" = (/obj/effect/turf_decal/delivery,/obj/machinery/computer/cargo/request{dir = 4},/obj/machinery/light/small,/obj/machinery/requests_console{department = "Engineering Router"; name = "Engineering Router RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/router/eng)
-"ceU" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/obj/structure/fireaxecabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/engine/atmos)
-"ceV" = (/turf/open/floor/plasteel,/area/router/eng)
-"ceW" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/eng)
-"ceX" = (/obj/effect/turf_decal/delivery,/obj/machinery/power/apc{name = "Engineering Router APC"; pixel_y = -24},/obj/machinery/light/small,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/router/eng)
-"ceY" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"ceZ" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_access_txt = "10;24"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cfa" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfb" = (/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/carpet/blue,/area/medical/medbay/central)
-"cfc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/hallway/primary/aft)
-"cfd" = (/obj/structure/closet/crate/wooden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cfe" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall - Starboard"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cff" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfg" = (/obj/structure/chair{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/research_director,/obj/machinery/camera{c_tag = "Research Director's Office - Port"; network = list("ss13","rd")},/obj/machinery/keycard_auth{pixel_x = -8; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"cfh" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cfi" = (/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cfj" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cfk" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cfl" = (/turf/closed/wall,/area/engine/engine_smes{name = "Power Monitoring"})
-"cfm" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall,/area/engine/engine_smes{name = "Power Monitoring"})
-"cfn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
-"cfo" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 1},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfq" = (/obj/structure/lattice/catwalk,/turf/open/floor/plating/airless,/area/space/nearstation)
-"cfr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/door/airlock/external/glass{name = "Mixing Chamber Access"; req_one_access_txt = "10;24"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/engine/teg_hot)
-"cfs" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos)
-"cft" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Engineering - Mixing Chamber"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/teg_hot)
-"cfu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"cfv" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cfw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Engineering Construction Area"; dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cfx" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cfy" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
-"cfz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cfA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfB" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfD" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation)
-"cfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"cfF" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/teg_hot)
-"cfG" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech)
-"cfH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/sparker{id = "TEGMixIgniter"; pixel_x = 24},/obj/effect/decal/cleanable/ash,/obj/effect/decal/remains/human,/turf/open/floor/engine/vacuum,/area/engine/teg_hot)
-"cfJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"cfK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/teg_hot)
-"cfL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/airlock/atmos{name = "Atmospherics Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cfM" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cfN" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cfO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cfP" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cfQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/library)
-"cfR" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cfS" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"cfT" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cfU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/break_room)
-"cfV" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/atmos)
-"cfW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/plasma/reinforced/spawner/north,/obj/structure/window/plasma/reinforced/spawner,/obj/structure/lattice,/turf/open/space/basic,/area/engine/teg_hot)
-"cfX" = (/obj/item/pipe,/obj/structure/cable{icon_state = "2-5"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"cfY" = (/obj/machinery/light/small{dir = 4},/obj/item/stack/sheet/metal,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"cfZ" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/stairs/right,/area/science/research{name = "Research Sector"})
-"cga" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cgb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Mixing Chamber Access"; req_one_access_txt = "10;24"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/engine/teg_hot)
-"cgc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/storage/primary)
-"cgd" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal)
-"cge" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/atmos)
-"cgf" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cgg" = (/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cgh" = (/obj/machinery/pipedispenser,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos)
-"cgi" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"cgj" = (/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cgk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cgl" = (/obj/machinery/button/door{id = "TEGMixVent"; name = "Mixing Chamber Vent"; pixel_y = 24; req_access_txt = "10"},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "atmos mix to burn"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cgm" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/caution/stand_clear{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cgn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cgo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cgp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/button/ignition{id = "TEGMixIgniter"; name = "Mix Igniter"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cgq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cgr" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cgt" = (/obj/structure/rack,/obj/item/caution,/obj/item/caution,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cgu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cgv" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cgw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cgx" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cgy" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/rust,/area/maintenance/solars/starboard/aft)
-"cgz" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/atmos)
-"cgA" = (/obj/machinery/pipedispenser/disposal,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/atmos)
-"cgB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cgC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/central)
-"cgD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/teg_hot)
-"cgE" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cgF" = (/obj/structure/grille,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
-"cgG" = (/obj/structure/grille,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
-"cgH" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"cgI" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"cgJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"cgK" = (/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"cgL" = (/obj/machinery/computer/rdservercontrol{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
-"cgM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cgN" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"cgO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"cgP" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"})
-"cgQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
-"cgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cgS" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cgT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/disposal)
-"cgU" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "manual mix to burn"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cgV" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cgW" = (/obj/docking_port/stationary{dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; roundstart_template = /datum/map_template/shuttle/mining/delta; width = 7},/turf/open/space/basic,/area/space)
-"cgX" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cgY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cgZ" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cha" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 1},/turf/open/floor/plating,/area/maintenance/disposal)
-"chb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"chc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"chd" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"che" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"chf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"chg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"chh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/tcommsat/computer)
-"chi" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer)
-"chj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"chk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"chl" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"chm" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall/r_wall/rust,/area/hydroponics/garden{name = "Nature Preserve"})
-"chn" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal/incinerator"; dir = 8; name = "Incinerator APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cho" = (/turf/closed/wall/r_wall/rust,/area/maintenance/department/eva)
-"chp" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"chq" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel/dark,/area/engine/atmos)
-"chr" = (/obj/machinery/atmospherics/components/binary/valve/digital,/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"chs" = (/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cht" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"chu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"chv" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"chw" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"chx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos)
-"chy" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"chz" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"chA" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"chB" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"chC" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"chD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"chE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/teg_cold)
-"chF" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/table,/obj/item/analyzer,/obj/item/pipe_dispenser,/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"chG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"chH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall/rust,/area/maintenance/fore)
-"chI" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/meter,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"chJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security)
-"chK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/open/floor/plating,/area/engine/teg_cold)
-"chL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"chM" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos)
-"chN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"chO" = (/obj/structure/table,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 7},/obj/item/clothing/glasses/welding,/obj/item/multitool,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos)
-"chP" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/lawoffice)
-"chQ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"chR" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/mixing"; dir = 1; name = "Toxins Lab APC"; pixel_y = 24},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage)
-"chS" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/atmos)
-"chT" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/engine,/area/science/storage)
-"chU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/wood,/area/library)
-"chV" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"chW" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"chX" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"chY" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/obj/machinery/light{dir = 8},/obj/item/storage/hypospraykit/fire,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/wrench,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"chZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cia" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cib" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cic" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
-"cid" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/analyzer,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cie" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_cold)
-"cif" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cig" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cih" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cii" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cij" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westleft{name = "Science Desk"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/lab)
-"cik" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "router_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cil" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cim" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 11},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cin" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"cio" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/closed/wall,/area/science/robotics/mechbay)
-"cip" = (/obj/machinery/mass_driver{id = "cargo_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"ciq" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"cir" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"cis" = (/obj/structure/sign/warning/vacuum{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cit" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"ciu" = (/obj/structure/barricade/wooden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/ripped{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/port/fore)
-"civ" = (/obj/structure/girder/displaced,/turf/open/floor/plating,/area/maintenance/port/fore)
-"ciw" = (/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore)
-"cix" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/port/fore)
-"ciy" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore)
-"ciz" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/item/reagent_containers/food/drinks/trophy,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"ciB" = (/obj/structure/frame/computer,/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/maintenance/port/fore)
-"ciC" = (/obj/structure/table,/obj/item/paper/pamphlet/gateway,/turf/open/floor/plasteel/white,/area/gateway)
-"ciD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"ciE" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"ciF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"ciG" = (/obj/machinery/conveyor{dir = 4; id = "disposal_off"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ciH" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/machinery/meter,/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"ciI" = (/turf/closed/wall/r_wall/rust,/area/quartermaster/warehouse)
-"ciJ" = (/turf/closed/wall/rust,/area/quartermaster/warehouse)
-"ciK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"ciL" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/primary)
-"ciM" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ciN" = (/obj/structure/table/reinforced,/obj/item/storage/box/donkpockets{pixel_y = 4},/obj/machinery/door/poddoor/preopen{id = "kitchenlock"; name = "Kitchen Lockup"},/obj/machinery/door/window/northleft{name = "Kitchen Slider"; req_access_txt = "28"},/obj/machinery/door/window/southleft{name = "Bar Slider"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/kitchen)
-"ciO" = (/obj/machinery/mass_driver{dir = 4; id = "disposal_out"; name = "Router Driver"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ciP" = (/obj/effect/turf_decal/delivery,/obj/item/weldingtool,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"ciQ" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"ciR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/airlock/security{name = "Cargo Security Checkpoint"; req_access_txt = "63"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"ciS" = (/obj/machinery/conveyor/auto{dir = 9; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ciT" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/closet/radiation,/obj/machinery/firealarm{dir = 4; pixel_x = -28; pixel_y = -4},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"ciU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"ciV" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ciW" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 11},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"ciX" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ciY" = (/obj/structure/table,/obj/item/storage/toolbox/emergency,/obj/item/wrench,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/engine/teg_hot"; dir = 8; name = "Hot Loop APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"ciZ" = (/obj/machinery/atmospherics/components/binary/valve/digital,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cja" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cjb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cjc" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/door/poddoor{name = "Disposal Router"},/turf/open/floor/plating,/area/maintenance/disposal)
-"cjd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cje" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cjf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Cargo Detainment Cell"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"cjg" = (/obj/machinery/conveyor/auto{dir = 1; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"cjh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cji" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal)
-"cjj" = (/turf/closed/wall,/area/crew_quarters/theatre/mime)
-"cjk" = (/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
-"cjl" = (/obj/structure/closet/crate/wooden/toy,/obj/item/toy/figure/mime,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime)
-"cjm" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service)
-"cjn" = (/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom)
-"cjo" = (/obj/structure/table,/obj/item/flashlight/seclite,/turf/open/floor/plating,/area/maintenance/port/fore)
-"cjp" = (/turf/closed/wall/r_wall,/area/crew_quarters/theatre/mime)
-"cjq" = (/turf/closed/wall/rust,/area/maintenance/port/central)
-"cjr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/science/server{name = "Computer Core"})
-"cjs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cjt" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; dir = 1; name = "Cargo Office APC"; pixel_y = 24},/obj/structure/sign/poster/contraband/scum{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cju" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24},/obj/item/clothing/ears/earmuffs,/obj/item/extinguisher{pixel_x = -12; pixel_y = -2},/obj/machinery/camera{c_tag = "Engineering - Hot Loop"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cjv" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/library)
-"cjw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/library)
-"cjx" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/library)
-"cjy" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/port/central)
-"cjz" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cjA" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cjB" = (/obj/item/stack/cable_coil/cut/red,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"cjC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/mask/cigarette,/obj/structure/sign/poster/official/twelve_gauge{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cjD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/maintenance/department/eva)
-"cjE" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation)
-"cjF" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation)
-"cjG" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"cjH" = (/obj/structure/lattice,/obj/structure/sign/warning/electricshock{pixel_x = -32},/turf/open/space/basic,/area/space/nearstation)
-"cjI" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"cjJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"cjK" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_cold)
-"cjL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"cjM" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/storage/toolbox/mechanical,/obj/item/radio/off,/obj/item/multitool{pixel_x = -6},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/department/eva)
-"cjN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/camera{c_tag = "Security - Visitation Area"; dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"cjO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore)
-"cjP" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cjQ" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"cjR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_one_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hos)
-"cjS" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"cjT" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/landmark/start/security_officer,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig)
-"cjU" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"cjV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Engineering Sector"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cjW" = (/obj/structure/bed,/obj/machinery/light_switch{pixel_y = -24},/obj/item/bedsheet/hos,/obj/effect/landmark/start/head_of_security,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/button/door{id = "hos"; name = "HoS Office Shutters"; pixel_y = -32; pixel_x = -5},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"cjX" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 9},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/engine/teg_cold)
-"cjY" = (/obj/machinery/computer/station_alert{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/keycard_auth{pixel_x = 8; pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cjZ" = (/obj/item/beacon,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva)
-"cka" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"ckb" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab)
-"ckc" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft/secondary"; dir = 8; name = "Aft Air Hookup APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"ckd" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cke" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/library)
-"ckf" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"ckg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva)
-"ckh" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"cki" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ckj" = (/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"ckk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Research Maintenance"; dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
-"ckl" = (/turf/open/space/basic,/area/space/station_ruins)
-"ckm" = (/turf/closed/wall/r_wall,/area/engine/teg_cold)
-"ckn" = (/obj/machinery/door/airlock/external/glass{name = "External Solar Access"; req_access_txt = "10;13"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"cko" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/engine/engineering"; dir = 4; name = "Engine Room APC"; pixel_x = 24},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"ckp" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/chemist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"ckq" = (/obj/structure/closet/crate/hydroponics,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse)
-"ckr" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cks" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"ckt" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cku" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"ckv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Warehouse"; req_one_access_txt = "10;31"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"ckw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"ckx" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cky" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"ckz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/item/pipe_dispenser,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"ckA" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"ckB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/engineering,/obj/machinery/light_switch{pixel_x = -24},/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/camera{c_tag = "Engineering - Cold Loop"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"ckC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve/digital{name = "gas to cold loop"},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"ckD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/sign/warning/fire{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"ckE" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"ckF" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/teg_cold"; dir = 4; name = "Cold Loop APC"; pixel_x = 24},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"ckG" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ckH" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"ckI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva)
-"ckJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/teg_hot)
-"ckK" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"ckL" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"ckM" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"ckN" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/science/xenobiology)
-"ckO" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"ckP" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ckQ" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ckR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/science/lab)
-"ckS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"ckT" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ckU" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ckV" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ckW" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ckX" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"ckY" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva)
-"ckZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/storage/eva)
-"cla" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"clb" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"clc" = (/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cld" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cle" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/misc_lab"; dir = 1; name = "Research Observatory APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"clf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 3"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
-"clg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"clh" = (/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cli" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology)
-"clj" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/xenobiology)
-"clk" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology)
-"cll" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology)
-"clm" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/space/nearstation)
-"cln" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation)
-"clo" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation)
-"clp" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/xenobiology)
-"clq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology)
-"clr" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/xenobiology)
-"cls" = (/obj/structure/window/reinforced/spawner,/obj/structure/grille,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/space/nearstation)
-"clt" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology)
-"clu" = (/obj/machinery/door/window/northleft{name = "Library Desk Door"; req_access_txt = "37"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"clv" = (/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"clw" = (/obj/effect/landmark/start/librarian,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"clx" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cly" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"clz" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"clA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"clB" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"clC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"clD" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clE" = (/obj/machinery/ntnet_relay,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clF" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clG" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clH" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
-"clI" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clJ" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clK" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clL" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clM" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clN" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server)
-"clO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"; req_access_txt = "10"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
-"clP" = (/obj/structure/table,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"clQ" = (/obj/structure/table,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"clR" = (/obj/structure/table,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"clS" = (/obj/structure/table,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"clT" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/micro_laser,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"clU" = (/obj/structure/table,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/scanning_module,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"clV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/camera{c_tag = "Supply - Security Post"; dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"clW" = (/turf/closed/wall/rust,/area/storage/tech)
-"clX" = (/turf/closed/wall/rust,/area/maintenance/starboard/aft)
-"clY" = (/obj/effect/turf_decal/stripes/line,/obj/structure/closet/firecloset,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"clZ" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/chair{dir = 4},/obj/machinery/camera{c_tag = "Escape Hall - Port"; dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cma" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Escape Hall - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cmb" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Supply - Mining Dock"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cmc" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Quarter Solar Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"cmd" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cme" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"cmf" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cmg" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cmh" = (/obj/structure/sign/warning/radiation,/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"cmi" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cmj" = (/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cmk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cml" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"cmm" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
-"cmn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cmo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"cmp" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cmq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cmr" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cms" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cmt" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cmu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable,/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cmv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cmw" = (/obj/machinery/camera{c_tag = "Engineering - Gravity Generator"; dir = 1},/turf/open/floor/engine,/area/engine/gravity_generator)
-"cmx" = (/obj/machinery/light,/turf/open/floor/engine,/area/engine/gravity_generator)
-"cmy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/exit)
-"cmz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/secondary/exit)
-"cmA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"cmB" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northright{name = "Emergency Shower"},/turf/open/floor/plasteel,/area/medical/chemistry)
-"cmC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"cmD" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cmE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cmF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
-"cmG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cmH" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Cargo Router"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cmI" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cmJ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/door/airlock/external/glass{name = "Mining Dock"; req_one_access_txt = "10;24;48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cmK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cmL" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/aft)
-"cmM" = (/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cmN" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/lawoffice)
-"cmO" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Engineering"},/turf/open/floor/plasteel,/area/engine/break_room)
-"cmP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"cmQ" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 4"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology)
-"cmR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"cmS" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cmT" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/folder/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/window/northright{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"cmU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cmV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cmW" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/requests_console{department = "Cargo"; name = "Cargo RC"; pixel_x = -30},/obj/machinery/camera{c_tag = "Supply - Quartermaster's Office"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"cmX" = (/obj/machinery/light/small,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"cmY" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop"; req_one_access_txt = "10;24"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cmZ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/machinery/atmospherics/components/unary/cryo_cell{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cna" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/window/reinforced/spawner/east,/obj/machinery/atmospherics/components/unary/cryo_cell{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cnb" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/beakers{pixel_x = -4},/obj/item/storage/box/syringes{pixel_x = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cnc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cnd" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cne" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cnf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cng" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"cnh" = (/obj/machinery/door/airlock/engineering{name = "Cold Loop"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cni" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cnj" = (/obj/machinery/camera{c_tag = "Research - Observatory"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cnk" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cnl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1; pixel_x = 5},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cnm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/gateway)
-"cnn" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"cno" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cnp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge)
-"cnq" = (/obj/structure/disposalpipe/segment{dir = 10},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/port/central)
-"cnr" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cns" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cnt" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/door/poddoor{name = "Disposal Router"},/turf/open/floor/plating,/area/maintenance/disposal)
-"cnu" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/gateway)
-"cnv" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/structure/frame/computer,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cnw" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cnx" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cny" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cnz" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/sign/departments/chemistry{pixel_y = 32},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cnA" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cnB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"cnC" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/engine,/area/science/explab)
-"cnD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology)
-"cnE" = (/obj/docking_port/stationary{dir = 2; dwidth = 9; height = 22; id = "emergency_home"; name = "CogStation Escape Dock"; width = 29},/turf/open/space/basic,/area/space)
-"cnF" = (/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore)
-"cnK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cnO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/storage)
-"cnS" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/aft; dir = 1; name = "Starboard Quarter Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft)
-"cnT" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing)
-"cnU" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing)
-"cnV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/engine,/area/science/storage)
-"cnW" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library)
-"cnX" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cnY" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cnZ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/holopad,/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"coa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cob" = (/obj/structure/closet/l3closet/virology,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/virology)
-"coc" = (/obj/machinery/camera{c_tag = "Medbay - Reception"; dir = 4},/turf/open/floor/plasteel/stairs,/area/medical/medbay/central)
-"cod" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/light,/obj/structure/window/reinforced/spawner/east,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby)
-"coe" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Medbay Morgue"; dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"cof" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cog" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
-"coh" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"})
-"coi" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"coj" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cok" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"col" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"com" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/end{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/medical/chemistry)
-"con" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/station_engineer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/storage/primary)
-"coo" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/storage/primary)
-"cop" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/chief)
-"coq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cor" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cos" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Workshop"; req_access_txt = "11"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cot" = (/obj/machinery/computer/apc_control{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cou" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/chief_engineer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cov" = (/obj/structure/sign/warning/nosmoking{pixel_y = -32},/turf/closed/wall,/area/medical/medbay/central)
-"cow" = (/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_one_access_txt = "10;48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cox" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"coy" = (/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/obj/effect/turf_decal/stripes/line,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"coz" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"coA" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Aft Maintenance - Starboard Quarter"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/aft)
-"coB" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Aft Hallway - MedSci Port"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"coC" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera{c_tag = "Aft Maintenance - Starboard Bow"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/aft)
-"coD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"coE" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Aft Hall - MedSci Starboard"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"coF" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/landmark/start/assistant,/obj/machinery/camera{c_tag = "Aft Hall - Workshop"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"coG" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research - Experimentation Lab"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/explab)
-"coH" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"coI" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway)
-"coJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Virology Access"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/medical/virology)
-"coK" = (/obj/machinery/camera{c_tag = "Medbay - Monkey Pen"; dir = 4},/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology)
-"coL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=cargo"; location = "eng2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"coM" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"coN" = (/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"coO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/camera{c_tag = "Central Hall"; dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
-"coP" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/machinery/camera{c_tag = "Central Plaza - Port"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"coQ" = (/obj/machinery/camera{c_tag = "Central Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"coR" = (/obj/machinery/camera{c_tag = "Ferry Docking Bay"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"coS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Ferry Docking Bay - Starboard"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"coT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"coU" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Front Desk"; dir = 1},/turf/open/floor/plasteel,/area/security/main)
-"coV" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/camera{c_tag = "Medbay Entrance"; dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"coW" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/engineering,/obj/machinery/camera{c_tag = "Technical Storage"; dir = 4},/turf/open/floor/plating,/area/storage/tech)
-"coX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/camera{c_tag = "Medbay - Operating Theatre"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"coY" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/machinery/camera{c_tag = "Medbay - Cryogenics"; dir = 1},/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker/cryoxadone,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"coZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cpa" = (/obj/structure/closet/crate/radiation,/obj/item/storage/firstaid/radbgone,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpb" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel,/area/medical/virology)
-"cpc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cpd" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/fitness)
-"cpe" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/engine,/area/science/explab)
-"cpf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cpg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cph" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"cpi" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"cpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cpk" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpl" = (/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cpm" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/lawoffice)
-"cpn" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cpo" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpp" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "cargo"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Cargo Router"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cpq" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"})
-"cpr" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cps" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"cpt" = (/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
-"cpu" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/holopad,/turf/open/floor/wood,/area/library)
-"cpv" = (/obj/structure/table,/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cpw" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/poster/official/space_cops{pixel_y = 32},/turf/open/floor/plasteel/white,/area/science/robotics/lab)
-"cpx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
-"cpy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cpz" = (/turf/closed/wall/r_wall,/area/medical/virology)
-"cpA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpB" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space)
-"cpC" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space/station_ruins)
-"cpD" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/engine,/area/science/storage)
-"cpE" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/disposal)
-"cpF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva)
-"cpH" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/directions/engineering{dir = 4; pixel_y = -24},/obj/structure/sign/directions/supply{dir = 4; pixel_y = -32},/obj/structure/sign/directions/evac{dir = 4; pixel_y = -40},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cpI" = (/obj/machinery/chem_dispenser,/obj/effect/turf_decal/stripes/end{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/medical/chemistry)
-"cpJ" = (/turf/closed/wall/r_wall/rust,/area/quartermaster/office)
-"cpK" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cpL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cpM" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cpN" = (/obj/structure/closet/secure_closet/atmospherics,/obj/item/cartridge/atmos,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/atmos)
-"cpO" = (/obj/structure/closet/secure_closet/atmospherics,/obj/item/cartridge/atmos,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/atmos)
-"cpP" = (/obj/machinery/camera{c_tag = "Research - Gateway Atrium"; dir = 1},/turf/open/floor/plasteel/white,/area/gateway)
-"cpQ" = (/obj/machinery/vending/wardrobe/atmos_wardrobe,/obj/effect/turf_decal/stripes/line{dir = 6; layer = 2.03},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/atmos)
-"cpR" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/electronics/apc,/obj/item/electronics/apc,/obj/item/electronics/airalarm,/obj/item/electronics/airalarm,/obj/item/electronics/firelock,/obj/item/electronics/firelock,/obj/item/electronics/firealarm,/obj/item/electronics/firealarm,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpT" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpV" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cpW" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cpX" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos)
-"cpY" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot)
-"cpZ" = (/obj/structure/table,/obj/item/tank/internals/air,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/dark,/area/engine/teg_hot)
-"cqa" = (/obj/machinery/autolathe,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqb" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cqc" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqd" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/hostile/retaliate/goose{check_friendly_fire = 1; desc = "It may not be as wise as an owl, but the Head of Security's pet is far more dangerous."; faction = list("neutral","silicon","turret","station"); name = "Officer Snooty"},/turf/open/floor/plasteel,/area/security/main)
-"cqe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=eng1"; location = "sci"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cqf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cqg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cqh" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cqi" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
-"cqj" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cqk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=med"; location = "cargo"},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cql" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=eng2"; location = "evac"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cqm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/item/storage/box/disks_nanite,/obj/item/book/manual/wiki/research_and_development{pixel_x = 4; pixel_y = -8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cqn" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqo" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Warehouse"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqr" = (/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/central"; name = "Central Starboard Maintenance APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboard/central)
-"cqs" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table/wood,/obj/item/clipboard,/obj/item/paper/guides/jobs/engi/solars,/obj/item/pen,/obj/machinery/camera{c_tag = "Engineering Foyer - Port"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqt" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/noticeboard/qm{dir = 4; pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cqu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqw" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqx" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/modular_computer/console/preset/engineering,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/table/wood,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cqA" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/absinthe,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"cqC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqE" = (/obj/machinery/conveyor_switch{id = "EngiCargoConveyer"},/obj/machinery/button/door{id = "EngiDeliverDoor"; name = "Engineering Delivery Door Control"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqF" = (/obj/effect/turf_decal/delivery,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cqG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqH" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main)
-"cqI" = (/obj/structure/chair/stool,/obj/effect/landmark/start/atmospheric_technician,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqJ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqK" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/plaques/atmos{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/break_room)
-"cqL" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqN" = (/turf/closed/wall/rust,/area/maintenance/department/security)
-"cqO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cqP" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cqQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cqR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cqS" = (/obj/machinery/computer/rdconsole/experiment{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = -30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/explab)
-"cqT" = (/obj/effect/turf_decal/stripes/line,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cqU" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cqV" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"cqW" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/window/reinforced/spawner,/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cqX" = (/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Shuttle"; width = 12},/turf/open/space/basic,/area/space)
-"cqY" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/status_display{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cqZ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cra" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Auxiliary Tool Storage"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools)
-"crb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/engine/teg_cold)
-"crc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"crd" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/item/destTagger,/obj/item/destTagger,/obj/item/destTagger,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/obj/machinery/button/massdriver{id = "cargo_out"; pixel_x = -8; pixel_y = -4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cre" = (/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_one_access_txt = "10;48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"crf" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
-"crg" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/airlock/medical/glass{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"crh" = (/obj/machinery/mass_driver{dir = 1; id = "cargo_out"; name = "Router Driver"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cri" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel,/area/engine/break_room)
-"crj" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"crk" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
-"crl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"crm" = (/obj/machinery/door/firedoor,/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/machinery/door/poddoor{id = "EngiDeliverDoor"; name = "Engineering Delivery Door"},/turf/open/floor/plating,/area/engine/teg_cold)
-"crn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/medical/chemistry)
-"cro" = (/turf/closed/wall/r_wall/rust,/area/maintenance/starboard/aft)
-"crp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/storage/tech)
-"crq" = (/obj/structure/closet/crate/freezer,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/medical/morgue"; dir = 4; name = "Morgue APC"; pixel_x = 24},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"crr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Fore"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"crs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"crt" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"cru" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"crv" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"crw" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"crx" = (/obj/machinery/camera{c_tag = "Engine Room - Port Quarter"; dir = 1},/obj/structure/cable,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cry" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10; pixel_x = -5},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random{pixel_x = -2; pixel_y = -2},/obj/item/stack/cable_coil/random{pixel_x = 2; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/camera{c_tag = "Robotics - Surgery"; dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"crz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/camera/motion{c_tag = "Telecomms Satellite"; dir = 1; network = list("tcomms")},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"crA" = (/obj/machinery/aug_manipulator,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"crB" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port"; dir = 8; network = list("tcomms")},/turf/open/space/basic,/area/space/nearstation)
-"crC" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior Starboard"; dir = 4; network = list("tcomms")},/turf/open/space/basic,/area/space/nearstation)
-"crD" = (/obj/machinery/camera/motion{c_tag = "Telecomms Server Room"; dir = 1; network = list("tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server)
-"crE" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port Quarter"; network = list("tcomms")},/turf/open/space/basic,/area/space)
-"crF" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Starboard Quarter"; network = list("tcomms"); pixel_x = 22},/turf/open/space/basic,/area/space)
-"crG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating/airless,/area/science/test_area)
-"crH" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating/airless,/area/science/test_area)
-"crI" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/science/mixing)
-"crJ" = (/obj/structure/window/reinforced,/obj/machinery/mass_driver{dir = 8; id = "toxinsdriver"},/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/science/mixing)
-"crK" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/science/test_area)
-"crL" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/science/test_area)
-"crM" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/science/test_area)
-"crN" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology)
-"crO" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel,/area/science/xenobiology)
-"crP" = (/obj/structure/lattice,/turf/closed/wall,/area/hallway/secondary/entry)
-"crQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"crR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"crS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Pod"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"crT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"crU" = (/obj/effect/turf_decal/stripes/line,/obj/item/crowbar,/obj/structure/sign/poster/official/safety_internals{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"crV" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"crW" = (/obj/machinery/computer/rdconsole/robotics{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"crX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"crY" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"crZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/hallway/primary/aft)
-"csa" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/sign/warning/pods{pixel_x = -32; pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
-"csb" = (/obj/structure/sign/warning/pods{pixel_x = 32; pixel_y = 32},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry)
-"csc" = (/obj/structure/fans/tiny/invisible,/obj/docking_port/stationary{dir = 2; dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/space/basic,/area/space)
-"csd" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cse" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/clipboard,/obj/item/paper/monitorkey,/obj/item/pen/fountain,/obj/item/stamp/ce,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 5; name = "Chief Engineer's RC"; pixel_y = -32},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"csf" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director's RC"; pixel_y = -32; receive_ore_updates = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"csg" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office)
-"csh" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"csi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/turf/open/floor/plating,/area/medical/chemistry)
-"csj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"csk" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/explab)
-"csl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor)
-"csm" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
-"csn" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/main)
-"cso" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"csp" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"csq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Cold Loop"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"csr" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = 30},/turf/open/floor/plasteel,/area/bridge)
-"css" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"cst" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/teg_cold)
-"csu" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway)
-"csv" = (/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/item/storage/toolbox/mechanical,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/paper/guides/cogstation/letter_supp,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"csw" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main)
-"csx" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/cable{icon_state = "1-2"},/obj/item/paper/fluff/cogstation/letter_rd,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"csy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/xmastree,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main)
-"csz" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"csA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Visitation"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main)
-"csB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"csC" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"})
-"csD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge)
-"csE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop)
-"csF" = (/obj/structure/bed,/obj/effect/landmark/start/research_director,/obj/item/bedsheet/rd,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"csG" = (/obj/machinery/holopad,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice)
-"csH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library)
-"csI" = (/obj/structure/table/wood,/obj/machinery/light_switch{pixel_x = 4; pixel_y = -24},/obj/item/flashlight/lamp/green,/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = -6; pixel_y = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"csJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"csK" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/window/northright{name = "Medbay Desk"; req_access_txt = "5"},/obj/item/clipboard,/obj/item/clothing/glasses/hud/health,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/pen,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"csL" = (/obj/effect/landmark/xmastree/rdrod,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"csM" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"csN" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"csO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"csP" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"csQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"csR" = (/turf/open/floor/engine,/area/science/storage)
-"csS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"csT" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/circuit)
-"csU" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/storage/tech)
-"csV" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_y = 8; req_access_txt = "29"; pixel_x = -24},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab)
-"csW" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"csX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"csY" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"csZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cta" = (/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/xenobiology)
-"ctb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/explab)
-"ctc" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ctd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cte" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ctf" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ctg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cth" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cti" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ctj" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/mixing)
-"ctk" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/atmos)
-"ctl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/white/full,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/engine/workshop)
-"ctm" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/sorting/mail/flip{sortType = 2},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ctn" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/obj/item/paper/guides/cogstation/letter_chief,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cto" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ctp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ctq" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ctr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office)
-"cts" = (/obj/structure/rack,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel/white,/area/gateway)
-"ctt" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"ctu" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/machinery/camera{c_tag = "Supply - Cargo Office"; dir = 1},/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/storage/box/disks,/turf/open/floor/plasteel,/area/quartermaster/office)
-"ctv" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"ctw" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office)
-"ctx" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cty" = (/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"ctz" = (/obj/structure/table,/obj/item/stamp/qm,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "4-8"},/obj/item/coin/silver{pixel_x = -12},/obj/item/key{pixel_x = 8; pixel_y = 4},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"ctA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "31;48"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"ctB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"ctC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"ctD" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology)
-"ctE" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/modular_computer/console/preset/engineering,/obj/structure/cable{icon_state = "1-2"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/engine/workshop)
-"ctF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology)
-"ctG" = (/turf/closed/wall,/area/engine/workshop)
-"ctH" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"ctI" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/engine,/area/science/explab)
-"ctJ" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/engine/workshop)
-"ctK" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
-"ctL" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 5"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology)
-"ctM" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 6"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology)
-"ctN" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ctO" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/sign/warning/biohazard{pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/virology)
-"ctP" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ctQ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/science/xenobiology)
-"ctR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"ctS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/warning/biohazard{pixel_x = -32; pixel_y = 32},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"ctT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/machinery/camera{c_tag = "Xenobiology - Aft"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"ctU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"ctV" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/secondary/exit"; name = "Escape Shuttle Hallway APC"; pixel_y = -28},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit)
-"ctW" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ctX" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/engine/workshop)
-"ctY" = (/obj/structure/sign/departments/xenobio{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"ctZ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cua" = (/obj/structure/chair/comfy/black{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cub" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cuc" = (/obj/machinery/door/airlock/virology/glass{name = "Monkey Pen"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cud" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Xenobiology - Aft Access"; dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cue" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cuf" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cug" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cuh" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cui" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cuj" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cuk" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cul" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cum" = (/obj/structure/rack,/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cun" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/meat/steak,/obj/machinery/camera{c_tag = "Xenobiology - Test Chamber"; dir = 1},/turf/open/floor/engine,/area/science/xenobiology)
-"cuo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/aft)
-"cup" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cuq" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cur" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cus" = (/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cut" = (/obj/docking_port/stationary{dir = 2; dwidth = 7; height = 9; id = "whiteship_home"; name = "SS13: Merchant Dock"; width = 13},/turf/open/space/basic,/area/space)
-"cuu" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/engine/workshop)
-"cuv" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cuw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop)
-"cux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
-"cuy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
-"cuz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation)
-"cuA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"cuB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"cuC" = (/obj/structure/lattice/catwalk,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"cuD" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
-"cuE" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
-"cuF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop)
-"cuG" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation)
-"cuH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop)
-"cuI" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table,/obj/machinery/airalarm{pixel_y = 24},/obj/item/storage/toolbox/emergency,/obj/item/screwdriver,/turf/open/floor/plasteel,/area/engine/workshop)
-"cuJ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/storage/toolbox/mechanical,/obj/item/screwdriver,/turf/open/floor/plasteel,/area/engine/workshop)
-"cuK" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/engine/workshop"; dir = 1; name = "Engineering Workshop APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/workshop)
-"cuL" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/workshop)
-"cuM" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop)
-"cuN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall,/area/engine/workshop)
-"cuO" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/primary)
-"cuP" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cuQ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/gateway)
-"cuR" = (/turf/closed/wall,/area/router/air)
-"cuS" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "workshop_out"; name = "Router Driver"},/turf/open/floor/plating,/area/engine/workshop)
-"cuT" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor{id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
-"cuU" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/sign/poster/official/build{pixel_x = -32},/turf/open/floor/plasteel,/area/engine/workshop)
-"cuV" = (/turf/open/floor/plasteel,/area/engine/workshop)
-"cuW" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cuX" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay"; req_access_txt = "5"},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cuY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"cuZ" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab)
-"cva" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/engine/workshop)
-"cvb" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/engine/workshop)
-"cvc" = (/obj/structure/chair/stool,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop)
-"cvd" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop)
-"cve" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"cvf" = (/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cvg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop)
-"cvh" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/computer/rdconsole/production{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop)
-"cvi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/workshop)
-"cvj" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/conveyor{id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cvk" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cvl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/router/air)
-"cvm" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Airbridge Router APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/router/air)
-"cvn" = (/obj/structure/table,/obj/item/destTagger,/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/router/air)
-"cvo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology)
-"cvp" = (/obj/effect/turf_decal/bot,/obj/machinery/computer/cargo/request,/obj/machinery/camera{c_tag = "Airbridge Router"; pixel_x = 22},/obj/machinery/requests_console{department = "Airbridge Router"; name = "Airbridge Router RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/router/air)
-"cvq" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor{dir = 1; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
-"cvr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/workshop)
-"cvs" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/medical/virology)
-"cvt" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 10},/area/science/robotics/lab)
-"cvu" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cvv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/requests_console{department = "Genetics"; name = "Genetics RC"; pixel_x = 30},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cvw" = (/obj/structure/closet,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/wrench/medical,/obj/item/screwdriver,/obj/item/stock_parts/cell/high/plus,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"cvx" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/emergency,/obj/item/hypospray/mkii/tricord,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cvy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"cvz" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cvA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/securearea{pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cvB" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cvC" = (/obj/machinery/computer/nanite_cloud_controller,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"})
-"cvD" = (/obj/effect/turf_decal/delivery,/obj/machinery/rnd/server,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cvE" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/poddoor{id = "RDServer"; name = "RD Server Lockup"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cvF" = (/obj/item/caution,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cvG" = (/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cvH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Toxins Mixing Lab"; req_access_txt = "7;8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/science/mixing)
-"cvI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/computer/telecomms/server{dir = 1; network = "tcommsat"},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"cvJ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"cvK" = (/obj/structure/chair/sofa/right,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge)
-"cvL" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cvM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/gateway)
-"cvN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cvO" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cvP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/janitor)
-"cvQ" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab)
-"cvR" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{sortType = 23},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cvS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"cvT" = (/obj/structure/extinguisher_cabinet,/turf/closed/wall,/area/medical/medbay/central)
-"cvU" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/reagent_dispensers/virusfood{pixel_x = -32},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cvV" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cvW" = (/obj/structure/chair/comfy/black,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cvX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cvY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cvZ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/clipboard,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/stamp,/obj/machinery/door/window/southright{name = "Customs Desk"; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"cwa" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/structure/window/reinforced/spawner,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"cwb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
-"cwc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/button/door{id = "cargoblock"; name = "Router Access Control"; pixel_x = -24; pixel_y = 24; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cwd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cwe" = (/obj/structure/closet/secure_closet/exile,/turf/open/floor/plasteel/white,/area/gateway)
-"cwf" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cwg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology)
-"cwh" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cwi" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cwj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
-"cwk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge)
-"cwl" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/book/manual/wiki/infections,/obj/item/folder/white,/obj/machinery/requests_console{department = "Virology"; name = "Virology RC"; pixel_x = -32},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cwm" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cwn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cwo" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table,/obj/machinery/microwave,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cwp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
-"cwq" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop"; req_one_access_txt = "10;24"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cwr" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop)
-"cws" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cwt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"cwu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cwv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/maintenance/disposal)
-"cww" = (/turf/closed/wall/r_wall,/area/engine/atmos)
-"cwx" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/white/full,/turf/open/floor/plasteel,/area/engine/atmos)
-"cwy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cwz" = (/obj/structure/transit_tube/curved{dir = 8},/turf/open/space/basic,/area/space)
-"cwA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos)
-"cwB" = (/turf/open/floor/plasteel,/area/engine/atmos)
-"cwC" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cwD" = (/obj/structure/transit_tube/diagonal/topleft,/turf/open/space/basic,/area/space)
-"cwE" = (/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop)
-"cwF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cwG" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/effect/landmark/event_spawn,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
-"cwH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/toilet/restrooms)
-"cwI" = (/obj/structure/transit_tube/horizontal,/turf/open/space/basic,/area/space)
-"cwJ" = (/obj/structure/lattice,/obj/structure/transit_tube/horizontal,/turf/open/space/basic,/area/space/nearstation)
-"cwK" = (/obj/structure/transit_tube/crossing/horizontal,/turf/open/space/basic,/area/space)
-"cwL" = (/obj/structure/transit_tube/horizontal,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos)
-"cwM" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/structure/transit_tube/station/reverse/flipped,/obj/structure/transit_tube_pod{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"cwN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"cwO" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cwP" = (/obj/structure/bed,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/chief_engineer,/obj/item/bedsheet/ce,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/chief"; dir = 4; name = "Chief Engineer's Office APC"; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief)
-"cwQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/primary)
-"cwR" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
-"cwS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Warehouse"; req_access_txt = "11"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
-"cwT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
-"cwU" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central)
-"cwV" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cwW" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cwX" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cwY" = (/obj/effect/landmark/event_spawn,/obj/machinery/air_sensor/atmos/toxins_mixing_tank,/turf/open/floor/engine/vacuum,/area/science/mixing)
-"cwZ" = (/obj/structure/table,/obj/item/storage/box/beanbag,/obj/item/gun/ballistic/revolver/doublebarrel,/obj/item/storage/hypospraykit/toxin,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar)
-"cxa" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 6},/turf/open/space/basic,/area/space/nearstation)
-"cxb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"cxc" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"cxd" = (/obj/machinery/computer/monitor,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cxe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cxf" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cxg" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cxh" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cxi" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Engineering - Primary Tool Storage"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
-"cxj" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/reagent_dispensers/foamtank,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
-"cxk" = (/obj/structure/tank_dispenser,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary)
-"cxl" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/storage/primary)
-"cxm" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"cxn" = (/obj/machinery/portable_atmospherics/scrubber,/obj/item/t_scanner{pixel_x = -4},/obj/item/pipe,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/quartermaster/warehouse)
-"cxo" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Supply - Warehouse Aft"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cxp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cxq" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cxr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cxs" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/item/storage/toolbox/electrical,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cxt" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cxu" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cxv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cxw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cxx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Warehouse"; req_one_access_txt = "10;31"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse)
-"cxy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/quartermaster/storage)
-"cxz" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Mining Office"; req_access_txt = "48"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cxB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Cargo Office"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxE" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cxF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxI" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/junction{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxK" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cxN" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxO" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cxP" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxR" = (/obj/effect/landmark/start/shaft_miner,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cxS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cxT" = (/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/paper/guides/cogstation/letter_supp,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cxU" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cxV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cxW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/office)
-"cxX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cxY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cxZ" = (/obj/effect/turf_decal/delivery,/obj/machinery/button/door{id = "MiningConveyorBlastDoor"; name = "Mining Conveyor Access"; pixel_x = 8; pixel_y = -24; req_one_access_txt = "10;24;48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cya" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cyb" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cyc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Mining Dock"; req_one_access_txt = "10;24;48"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cyd" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cye" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cyf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cyg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cyh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Mining Office Maintenance"; req_one_access_txt = "10;24;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningoffice)
-"cyi" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cyj" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cyk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cyl" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cym" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cyn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cyo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
-"cyp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/workshop)
-"cyq" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/power/apc{dir = 4; name = "Restrooms APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"cyr" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cys" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cyt" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/purple,/obj/machinery/power/apc{areastring = "/area/science/robotics/lab"; dir = 8; name = "Robotics Lab APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cyu" = (/obj/structure/closet/wardrobe/chemistry_white{anchored = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cyv" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
-"cyw" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"cyx" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cyy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Medbay Lobby"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side,/area/medical/medbay/lobby)
-"cyz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
-"cyA" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cyB" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/official/medical_green_cross{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cyC" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cyD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cyE" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cyF" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cyG" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
-"cyH" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cyI" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cyJ" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"cyK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cyL" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cyM" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cyN" = (/obj/machinery/chem_dispenser/apothecary,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
-"cyO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
-"cyP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
-"cyQ" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
-"cyR" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
-"cyS" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
-"cyT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
-"cyU" = (/obj/machinery/camera{c_tag = "Aft Maintenance - Central Starboard"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft)
-"cyV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"cyW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cyX" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cyY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"cyZ" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"cza" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"czb" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/paicard,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit)
-"czc" = (/obj/structure/chair{dir = 8},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit)
-"czd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/aft)
-"cze" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway)
-"czg" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/mob/living/simple_animal/hostile/retaliate/bat,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"czh" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"czi" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/landmark/start/chief_medical_officer,/obj/item/bedsheet/cmo,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"czj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft)
-"czk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft)
-"czl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/exit)
-"czm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czp" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czq" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/coffee,/obj/item/pen/blue,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czr" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"czu" = (/obj/machinery/suit_storage_unit/cmo,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"czv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"czw" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"czx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"czy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"czz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/engine,/area/gateway)
-"czA" = (/obj/machinery/modular_computer/console/preset/research{dir = 8},/obj/item/reagent_containers/food/drinks/coffee,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"czB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"czC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"czD" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"czE" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"czF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"czG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"czH" = (/obj/machinery/button/door{id = "robotics2"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"czI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"czJ" = (/obj/item/beacon,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"czK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"czL" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"czM" = (/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; name = "Chemistry RC"; pixel_x = 30; pixel_y = 0; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"czN" = (/obj/structure/closet/crate/trashcart,/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel)
-"czO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"czP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
-"czQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"czR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/department/chapel)
-"czS" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"czT" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"czU" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/janitor)
-"czV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal)
-"czW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
-"czX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/rust,/area/maintenance/disposal)
-"czY" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/janitor)
-"czZ" = (/obj/effect/landmark/start/janitor,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/janitor)
-"cAa" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/chair/sofa/right,/obj/item/reagent_containers/food/drinks/bottle/vermouth/empty,/obj/item/reagent_containers/food/snacks/grown/cannabis{pixel_x = -4; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"cAb" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/chair/sofa/left,/obj/item/storage/box/hug/medical,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"cAc" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/central)
-"cAd" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"cAe" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/janitor)
-"cAf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor)
-"cAg" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor)
-"cAh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Custodial Closet"; req_access_txt = "12;26"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor)
-"cAi" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"cAj" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"cAk" = (/obj/effect/turf_decal/stripes/line,/obj/item/reagent_containers/pill/floorpill,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/glass,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 1},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"cAl" = (/obj/effect/turf_decal/stripes/line,/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/item/camera,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"cAm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cAn" = (/obj/structure/disposalpipe/junction/flip,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"cAo" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cAp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
-"cAq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"cAr" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/maintenance/disposal)
-"cAs" = (/obj/structure/mopbucket,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/janitor)
-"cAt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/southleft{name = "Cloning Access"; req_one_access_txt = "9;45"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cAu" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"cAv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/medical/medbay/central)
-"cAw" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/soap,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/reagent_containers/spray/cleaner{pixel_x = 4; pixel_y = -1},/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/spray/cleaner{pixel_x = -8; pixel_y = 4},/obj/machinery/requests_console{department = "Custodial Closet"; name = "Custodial RC"; pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"cAx" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/landmark/start/janitor,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor)
-"cAy" = (/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cAz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal)
-"cAA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall,/area/storage/primary)
-"cAB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cAC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cAD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation Room A"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cAE" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/caution,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cAF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"cAG" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cAH" = (/obj/structure/table,/obj/item/storage/box/beakers,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cAI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cAJ" = (/obj/structure/table/wood,/obj/item/storage/book/bible/booze,/obj/item/beacon{pixel_y = -8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"cAK" = (/obj/machinery/computer/med_data,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cAL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/detectives_office)
-"cAM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"cAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"cAO" = (/obj/effect/landmark/start/detective,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"cAP" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/lighter{pixel_x = -4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster/security_unit{pixel_y = -30},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 1},/obj/item/reagent_containers/food/drinks/bottle/hcider{pixel_x = 3; pixel_y = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"cAQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor)
-"cAR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"cAS" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway)
-"cAT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/aft)
-"cAU" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cAV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cAW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cAX" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cAY" = (/obj/machinery/door/airlock{name = "Catering"; req_one_access_txt = "25;28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar)
-"cAZ" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cBa" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop)
-"cBb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main)
-"cBc" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cBe" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBg" = (/obj/structure/chair,/obj/effect/turf_decal/tile/neutral,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBh" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBi" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBj" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/station_engineer,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cBl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Power Monitoring"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"})
-"cBm" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/rnd/production/techfab/department/engineering,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
-"cBn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"cBo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBp" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cBq" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"cBr" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"cBs" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"cBt" = (/obj/structure/closet/l3closet/scientist,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"cBu" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/sign/departments/security{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBv" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore)
-"cBx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"cBy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"cBz" = (/obj/structure/filingcabinet/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"cBA" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/camera{c_tag = "Aft Hall - Fore"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cBB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/engine/workshop)
-"cBC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"})
-"cBD" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cBE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/central)
-"cBG" = (/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cBH" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cBI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cBJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/power/apc{name = "Engineering Foyer APC"; pixel_y = -24},/obj/item/storage/firstaid/regular,/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cBK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBL" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cBM" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"cBN" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"cBO" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"cBP" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"cBQ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"cBR" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"cBS" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"cBT" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cBU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/crew_quarters/bar)
-"cBV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"cBW" = (/obj/structure/sign/plaques/golden{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"cBX" = (/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"cBY" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet/green,/area/crew_quarters/bar)
-"cBZ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cCa" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/sign/departments/security{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cCc" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCd" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/sleeper{dir = 8},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"})
-"cCe" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cCf" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Central Maintenance - Fore"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/central)
-"cCg" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft)
-"cCi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Monkey Pen"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cCl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/medical/virology)
-"cCm" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCn" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port/fore)
-"cCo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology)
-"cCp" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port/fore)
-"cCq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central)
-"cCr" = (/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/medical/virology)
-"cCs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/office)
-"cCt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Chapel Confessions"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/chapel/main)
-"cCu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
-"cCv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cCw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology)
-"cCx" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/caution,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation Room B"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cCA" = (/obj/machinery/computer/security/wooden_tv,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"cCB" = (/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office)
-"cCC" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main)
-"cCD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cCE" = (/obj/machinery/portable_atmospherics/canister/water_vapor,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction/flip,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/janitor)
-"cCF" = (/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycler Conveyor Control"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plating,/area/maintenance/disposal)
-"cCG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cCH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cCI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cCJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/wood,/area/library)
-"cCK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/library)
-"cCL" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cCM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge1"; location = "router"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cCN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/hallway/primary/central)
-"cCO" = (/obj/structure/table,/obj/machinery/airalarm{pixel_y = 24},/obj/item/hand_labeler,/obj/item/reagent_containers/glass/bottle/formaldehyde,/obj/item/paper/guides/jobs/medical/morgue,/obj/item/paper/guides/cogstation/cdn_med{pixel_x = -6; pixel_y = 1},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"cCP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
-"cCQ" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/light,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cCR" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"cCS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cCT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/aft)
-"cCU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cCV" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security)
-"cCW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"cCX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos)
-"cCY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cCZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cDa" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cDb" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/glasses/science,/obj/item/pen,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cDc" = (/obj/structure/table,/obj/machinery/light,/obj/structure/bedsheetbin,/obj/item/clothing/glasses/hud/health,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cDd" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cDe" = (/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/medical/virology)
-"cDf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology)
-"cDg" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cDh" = (/obj/machinery/computer/card/minor/cmo{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/keycard_auth{pixel_x = -24},/obj/item/paper/guides/cogstation/letter_cmo,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"cDi" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/crate/solarpanel_small,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/storage/primary)
-"cDj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"cDk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/port/fore)
-"cDl" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cDm" = (/obj/structure/plasticflaps,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cDn" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/router/air)
-"cDo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/air)
-"cDp" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"cDq" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"cDr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom)
-"cDs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark/side,/area/bridge)
-"cDt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain)
-"cDu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain)
-"cDv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"cDw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
-"cDx" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/structure/extinguisher_cabinet{pixel_x = 6; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain)
-"cDy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/hor)
-"cDz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/checkpoint/supply)
-"cDA" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/newscaster/security_unit{pixel_x = 30},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"cDB" = (/obj/item/storage/secure/safe{pixel_x = -24},/obj/machinery/light{dir = 8},/obj/structure/dresser,/obj/item/storage/lockbox/medal,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"cDC" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain)
-"cDD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/security{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/security/checkpoint/supply"; dir = 4; name = "Cargo Security Checkpoint APC"; pixel_x = 24},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"cDE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
-"cDF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
-"cDG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
-"cDH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway)
-"cDI" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/gateway)
-"cDJ" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"cDK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/gateway)
-"cDL" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/obj/machinery/camera{c_tag = "Medbay - Apothecary"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cDM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/table/glass,/obj/item/book/manual/wiki/chemistry,/obj/item/book/manual/wiki/chemistry{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/turf/open/floor/plasteel,/area/medical/chemistry)
-"cDN" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/gateway)
-"cDO" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cDP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cDQ" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cDR" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cDS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"cDT" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red{pixel_x = 3},/turf/open/floor/plasteel,/area/gateway)
-"cDU" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"cDV" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/gateway)
-"cDW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"cDX" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cDY" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor)
-"cDZ" = (/obj/structure/table,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"cEa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
-"cEb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Research Director's Office"; req_access_txt = "30"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor)
-"cEc" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEe" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEj" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEk" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEl" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEm" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEn" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEo" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEr" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEs" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEt" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab)
-"cEx" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab)
-"cEz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEA" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab)
-"cEC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/science/lab)
-"cED" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/lab)
-"cEE" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Aft Maintenance APC"; pixel_x = -26},/turf/open/floor/plating,/area/maintenance/aft)
-"cEF" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEG" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cEJ" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab)
-"cEL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/science/lab)
-"cEM" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cEO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"cEP" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab)
-"cEQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cER" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Locker Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cES" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cET" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cEU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Locker Room"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cEV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cEW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cEX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cEY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cEZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFd" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFe" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFg" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cFh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFi" = (/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFj" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFk" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFl" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFm" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFn" = (/obj/structure/closet/l3closet,/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFo" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFq" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFs" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFt" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Medbay - Port"; dir = 4},/obj/machinery/power/apc{areastring = "/area/medical/medbay/central"; dir = 8; name = "Medbay APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFw" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/window/westright{name = "Treatment Center"; req_access_txt = "5"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFz" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/healthanalyzer,/obj/item/clothing/neck/stethoscope,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cFA" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 5},/obj/item/storage/box/syringes{pixel_x = -4},/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cFB" = (/obj/machinery/vending/snack/teal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"cFC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/medical/medbay/central)
-"cFD" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFF" = (/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"cFG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"cFH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Break Room"; req_access_txt = "5"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFI" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet/blue,/area/medical/medbay/central)
-"cFL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"cFM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"cFN" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central)
-"cFO" = (/obj/structure/closet/crate/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFP" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/item/reagent_containers/pill/patch/styptic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet/blue,/area/medical/medbay/central)
-"cFQ" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet/blue,/area/medical/medbay/central)
-"cFR" = (/obj/structure/closet/crate/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cFT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"cFU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cFV" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/multitool{pixel_x = 3},/obj/item/multitool{pixel_x = 3},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = -1},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 4},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cFW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/robotics/lab)
-"cFX" = (/obj/machinery/chem_heater,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
-"cFY" = (/turf/open/floor/plasteel,/area/router/air)
-"cFZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/button/massdriver{id = "airbridge_out"; pixel_x = -8; pixel_y = 24},/turf/open/floor/plasteel,/area/router/air)
-"cGa" = (/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
-"cGb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "MedSci Router"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cGc" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cGd" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Medbay Locker Room"; dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cGe" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/item/reagent_containers/blood/OMinus{pixel_x = 4; pixel_y = 3},/obj/item/reagent_containers/food/drinks/coffee{pixel_x = 6},/obj/item/storage/box/masks{pixel_x = -4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cGf" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
-"cGg" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
-"cGh" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/window/reinforced/spawner,/obj/machinery/mass_driver{dir = 4; id = "airbridge_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router/air)
-"cGi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cGj" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cGk" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cGl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cGm" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cGn" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cGo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/science/research{name = "Research Sector"})
-"cGp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cGq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGr" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cGt" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cGu" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"})
-"cGv" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cGy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGz" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cGA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGC" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cGF" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/engine,/area/science/storage)
-"cGG" = (/obj/machinery/power/apc{areastring = "/area/science/storage"; dir = 4; name = "Toxins Storage APC"; pixel_x = 24},/obj/structure/cable,/turf/open/floor/engine,/area/science/storage)
-"cGH" = (/obj/machinery/camera{c_tag = "Toxins Lab - Storage"; dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/engine,/area/science/storage)
-"cGI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/chair/office/light,/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel,/area/medical/chemistry)
-"cGJ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/science/storage)
-"cGK" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine,/area/science/storage)
-"cGL" = (/obj/structure/table,/obj/item/extinguisher,/obj/item/storage/toolbox/mechanical,/obj/item/wrench,/obj/item/clothing/mask/gas,/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/turf/open/floor/engine,/area/science/storage)
-"cGM" = (/obj/structure/tank_dispenser,/turf/open/floor/engine,/area/science/storage)
-"cGN" = (/obj/structure/closet/l3closet,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cGO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cGP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/storage)
-"cGQ" = (/obj/machinery/door/airlock/research{name = "Plasma Canister Storage"; req_access_txt = "7;8"},/turf/open/floor/engine,/area/science/storage)
-"cGR" = (/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cGS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cGT" = (/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cGU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5;6"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"cGV" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/science/storage)
-"cGW" = (/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/science/storage)
-"cGX" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit)
-"cGY" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cGZ" = (/turf/open/floor/plating/airless,/area/science/storage)
-"cHa" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/warning/fire{pixel_x = -32},/obj/machinery/camera{c_tag = "Toxins Lab - Plasma Storage"; dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/science/storage)
-"cHb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit)
-"cHc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cHd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cHe" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit)
-"cHf" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel/white,/area/science/circuit)
-"cHg" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cHh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cHi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit)
-"cHj" = (/obj/structure/table,/obj/item/storage/hypospraykit/toxin{pixel_x = -5},/obj/item/storage/hypospraykit/fire{pixel_x = 5},/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/explab)
-"cHk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab)
-"cHl" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab)
-"cHm" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab)
-"cHn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab)
-"cHo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHq" = (/obj/structure/closet/firecloset,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHt" = (/obj/structure/disposalpipe/junction,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHu" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHv" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Research - Experimentation Hall"; dir = 8; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/explab)
-"cHy" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/science/explab)
-"cHz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/science/explab)
-"cHA" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHB" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHC" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/science/explab"; dir = 4; name = "Experimentation Lab APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/item/beacon,/turf/open/floor/engine,/area/science/explab)
-"cHE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/engine,/area/science/explab)
-"cHF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/engine,/area/science/explab)
-"cHG" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHH" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab)
-"cHJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/science/explab)
-"cHK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cHL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cHM" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cHN" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cHO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cHP" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cHQ" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cHR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_one_access_txt = "9;45"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"cHS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cHT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/rust,/area/medical/morgue)
-"cHU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cHV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"cHW" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel,/area/medical/chemistry)
-"cHX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"cHY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft)
-"cHZ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "Airbridge Router"},/turf/open/floor/plating,/area/router/air)
-"cIa" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft)
-"cIb" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/storage/firstaid/radbgone,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cIc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft)
-"cId" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft)
-"cIe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft)
-"cIf" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft)
-"cIg" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cIh" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
-"cIi" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
-"cIj" = (/obj/structure/chair,/obj/effect/landmark/start/geneticist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cIk" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cIl" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cIm" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cIn" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cIo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab Maintenance"; req_access_txt = "9"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/medical/genetics)
-"cIp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft)
-"cIq" = (/obj/structure/window/reinforced/spawner,/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor{dir = 1; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
-"cIr" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28; pixel_y = -4},/obj/machinery/light_switch{pixel_x = -24; pixel_y = 10},/turf/open/floor/plasteel,/area/engine/workshop)
-"cIs" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos)
-"cIt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cIu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cIv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIx" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/camera{c_tag = "Aft Hall"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIA" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIB" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIC" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cID" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIE" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIF" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIG" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIH" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cII" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIK" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIL" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Engineering Sector"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIQ" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIS" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIU" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=evac"; location = "eng1"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cIZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cJa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cJb" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cJc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cJd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cJe" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"cJg" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"cJh" = (/obj/structure/table,/obj/structure/bedsheetbin/towel,/obj/machinery/camera{c_tag = "Aft Restrooms"; dir = 8; pixel_y = -22},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"cJi" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office)
-"cJj" = (/obj/machinery/computer/security/mining,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cJk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop)
-"cJl" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Engine Room - Starboard Quarter"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cJm" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos)
-"cJn" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"cJo" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
-"cJp" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"cJq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/suit_storage_unit/engine,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"cJr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 5},/turf/open/space/basic,/area/space/nearstation)
-"cJs" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"cJt" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"cJu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
-"cJv" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Engineering Router"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"cJw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cJx" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 1},/turf/open/space/basic,/area/space/nearstation)
-"cJy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/rnd/production/circuit_imprinter,/turf/open/floor/plasteel,/area/engine/workshop)
-"cJz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/warehouse)
-"cJA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"cJB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"})
-"cJC" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cJD" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cJE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cJF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cJG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable{icon_state = "0-8"},/obj/structure/table,/obj/machinery/light/small,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/engine/gravity_generator"; dir = 4; name = "Gravity Generator APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"cJH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos)
-"cJI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"cJJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cJK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cJM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cJN" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cJO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"})
-"cJP" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cJQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"cJR" = (/obj/machinery/door/airlock/engineering{name = "Canister Storage"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cJS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cJT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cJU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cJV" = (/obj/structure/plasticflaps,/obj/machinery/door/poddoor{id = "DeliveryDoor"; name = "Delivery Door"},/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cJW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cJX" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cJY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"cJZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cKa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cKb" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cKc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Canister Storage"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"})
-"cKd" = (/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/sorting)
-"cKe" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "Airbridge Router"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/air)
-"cKf" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/air)
-"cKg" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/vending/engivend,/turf/open/floor/plasteel,/area/storage/primary)
-"cKh" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cKi" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/medical{name = "Apothecary"; req_access_txt = "5"},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central)
-"cKj" = (/obj/structure/closet/secure_closet/CMO,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/paper/guides/cogstation/letter_cmo,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"cKk" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cKl" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby)
-"cKm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/medical/medbay/central)
-"cKn" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cKo" = (/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 9},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cKp" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cKq" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue)
-"cKr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cKs" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cKt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cKu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cKv" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cKw" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/science/xenobiology)
-"cKx" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating/airless,/area/science/xenobiology)
-"cKy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/xenobiology)
-"cKz" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cKA" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cKB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cKC" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chief_medical_officer,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"cKD" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cKE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore)
-"cKF" = (/obj/effect/turf_decal/delivery,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cKG" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/wardrobe/yellow,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"cKH" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cKI" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/science/mixing)
-"cKJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/mixing)
-"cKK" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/mixing)
-"cKL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing)
-"cKM" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing)
-"cKN" = (/obj/structure/table/reinforced,/obj/item/assembly/signaler{pixel_x = -4},/obj/item/assembly/signaler,/obj/item/assembly/signaler{pixel_y = 8},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/science/mixing)
-"cKO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cKP" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/sign/departments/custodian{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/aft)
-"cKQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output,/turf/open/floor/engine/vacuum,/area/engine/atmos)
-"cKR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input,/turf/open/floor/engine/n2o,/area/engine/atmos)
-"cKS" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output,/turf/open/floor/engine/n2o,/area/engine/atmos)
-"cKT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input,/turf/open/floor/engine/plasma,/area/engine/atmos)
-"cKU" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output,/turf/open/floor/engine/plasma,/area/engine/atmos)
-"cKV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input,/turf/open/floor/engine/co2,/area/engine/atmos)
-"cKW" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output,/turf/open/floor/engine/co2,/area/engine/atmos)
-"cKX" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
-"cKY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
-"cKZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation)
-"cLa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation)
-"cLb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating,/area/engine/atmos)
-"cLc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/atmos)
-"cLd" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
-"cLe" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos)
-"cLf" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos)
-"cLg" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/open/floor/plasteel,/area/engine/atmos)
-"cLh" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cLi" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
-"cLj" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos)
-"cLk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "CO2 Outlet Pump"},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos)
-"cLl" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cLm" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
-"cLn" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 8},/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/turf/open/floor/plasteel,/area/storage/primary)
-"cLo" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/engine/atmos)
-"cLp" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
-"cLq" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/engine/atmos)
-"cLr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/storage/primary)
-"cLs" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"cLt" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos)
-"cLu" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos)
-"cLv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos)
-"cLw" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos)
-"cLx" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos)
-"cLy" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos)
-"cLz" = (/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/turf/open/floor/plasteel,/area/storage/primary)
-"cLA" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera{c_tag = "Virology - Starboard"; dir = 8; pixel_y = -22},/obj/machinery/power/apc{areastring = "/area/medical/virology"; dir = 4; name = "Virology Lab APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"cLB" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/air)
-"cLC" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/camera{c_tag = "Virology - Port"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cLD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cLE" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel,/area/router/air)
-"cLF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cLG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cLH" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"cLI" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cLJ" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/router/air)
-"cLK" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor{id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
-"cLL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cLM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cLN" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cLO" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
-"cLP" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/syringes,/obj/item/hand_labeler,/obj/item/radio/headset/headset_med,/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology)
-"cLQ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/obj/machinery/door/poddoor{name = "Airbridge Router"},/turf/open/floor/plating,/area/router/air)
-"cLR" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "workshop_in"; name = "Router Driver"},/turf/open/floor/plating,/area/engine/workshop)
-"cLS" = (/obj/machinery/light,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cLT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/medical/virology)
-"cLU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/turf/open/floor/plating/airless,/area/medical/virology)
-"cLV" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cLW" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"cLX" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
-"cLY" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"cLZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
-"cMa" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"cMb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
-"cMc" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMd" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "N2 to Airmix"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMe" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer)
-"cMg" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMi" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/atmos)
-"cMj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{dir = 1},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"cMk" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"cMl" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMm" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMn" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "N2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMo" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"cMq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMr" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMs" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"cMt" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"cMu" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator)
-"cMv" = (/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = -24; pixel_y = 8},/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = -40; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"cMw" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "Waste Release"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMx" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMy" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Nitrogen Outlet"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMz" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Atmospherics - Starboard Aft"; dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMA" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/engine/atmos)
-"cMB" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "O2 to Airmix"},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"cMD" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
-"cME" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
-"cMF" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
-"cMG" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator)
-"cMH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
-"cMI" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos)
-"cMJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos)
-"cMK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/computer)
-"cML" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
-"cMM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
-"cMN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
-"cMO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
-"cMP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/floor/plating/airless,/area/engine/atmos)
-"cMQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"cMR" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation)
-"cMS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space/basic,/area/space/nearstation)
-"cMT" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
-"cMU" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 8; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
-"cMV" = (/obj/machinery/conveyor{dir = 10; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop)
-"cMW" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/tool,/turf/open/floor/plasteel,/area/engine/workshop)
-"cMX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/multitool,/obj/item/multitool,/turf/open/floor/plasteel,/area/engine/workshop)
-"cMY" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/machinery/camera{c_tag = "Engineering - Workshop"; dir = 1},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/item/t_scanner,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/engine/workshop)
-"cMZ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/engine/workshop)
-"cNa" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair,/obj/effect/landmark/start/station_engineer,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop)
-"cNb" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop)
-"cNc" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/item/storage/toolbox/electrical,/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop)
-"cNd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/crate/engineering,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop)
-"cNe" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop)
-"cNf" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/workshop)
-"cNg" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/engine/workshop)
-"cNh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "Airbridge Router"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/air)
-"cNi" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/air)
-"cNj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/air)
-"cNk" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/router/air)
-"cNl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/router/air)
-"cNm" = (/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
-"cNn" = (/obj/machinery/conveyor{dir = 10; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air)
-"cNo" = (/turf/closed/wall/rust,/area/engine/workshop)
-"cNp" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{name = "Workshop Desk"; req_access_txt = "11"},/obj/item/paper_bin,/obj/item/pen,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop)
-"cNq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Workshop Desk"; req_access_txt = "11"},/obj/item/folder/yellow,/turf/open/floor/plasteel,/area/engine/workshop)
-"cNr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/engine/workshop)
-"cNs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall,/area/engine/workshop)
-"cNt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/engine/workshop)
-"cNu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/engineering{name = "Engineering Workshop"; req_access_txt = "11"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/workshop)
-"cNv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/closed/wall,/area/engine/workshop)
-"cNw" = (/turf/closed/wall/r_wall,/area/router/air)
-"cNx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cNy" = (/turf/closed/wall/r_wall,/area/quartermaster/miningdock/airless)
-"cNz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningdock/airless)
-"cNA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office)
-"cNB" = (/turf/open/floor/plating,/area/quartermaster/miningdock/airless)
-"cNC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms)
-"cND" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/miningoffice)
-"cNE" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNF" = (/obj/item/shovel,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNH" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNI" = (/turf/open/floor/plating/airless,/area/router/aux)
-"cNJ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/machinery/camera{c_tag = "Medbay - Starboard"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cNK" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/engine/teg_hot)
-"cNL" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/engine/teg_cold)
-"cNM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNN" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNO" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/frame/computer{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningdock/airless)
-"cNQ" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/router/aux)
-"cNR" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNS" = (/obj/machinery/power/apc{name = "Mining Dock APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNT" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNU" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/plasteel/fifty,/turf/open/floor/plating,/area/quartermaster/miningdock/airless)
-"cNV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cNW" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Supply - Mining Exterior"; dir = 4},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
-"cNX" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
-"cNY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Refinery"; req_access_txt = "48"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cNZ" = (/obj/machinery/door/airlock/external/glass{name = "Refinery"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless)
-"cOa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cOb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
-"cOc" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Supply - Refinery Exterior"; pixel_x = 22},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
-"cOd" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby)
-"cOe" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
-"cOg" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
-"cOh" = (/obj/structure/lattice,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
-"cOi" = (/obj/machinery/conveyor_switch{id = "MiningConveyer"},/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOj" = (/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOk" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOl" = (/turf/closed/wall/r_wall,/area/quartermaster/miningdock/airless/no_grav)
-"cOm" = (/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav)
-"cOn" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOo" = (/obj/structure/table,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOp" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOq" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cOr" = (/obj/machinery/light/small,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOs" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOt" = (/obj/structure/closet/crate,/obj/item/stack/rods/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOu" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOv" = (/obj/item/storage/toolbox/emergency,/obj/structure/table,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav)
-"cOw" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
-"cOx" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router/medsci"; dir = 1; name = "MedSci Router APC"; pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/router/medsci)
-"cOy" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/router/medsci)
-"cOz" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/router/medsci)
-"cOA" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/router/medsci)
-"cOB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/medsci)
-"cOC" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light_switch{pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/medsci)
-"cOD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft)
-"cOE" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/router/medsci)
-"cOF" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/router/medsci)
-"cOG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/router/medsci)
-"cOH" = (/obj/machinery/computer/cargo/request{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/router/medsci)
-"cOI" = (/turf/closed/wall/r_wall,/area/router/medsci)
-"cOJ" = (/obj/machinery/conveyor{id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci)
-"cOK" = (/obj/structure/table/reinforced,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/machinery/light,/obj/machinery/button/massdriver{id = "medsci_out"; pixel_x = -8; pixel_y = 8},/obj/machinery/requests_console{department = "MedSci Router"; name = "MedSci Router RC"; pixel_y = -32},/turf/open/floor/plating,/area/router/medsci)
-"cOL" = (/obj/machinery/conveyor{dir = 1; id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci)
-"cOM" = (/turf/closed/wall/r_wall,/area/janitor/aux)
-"cON" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Auxiliary Custodial Closet"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/janitor/aux)
-"cOO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/janitor/aux)
-"cOP" = (/obj/machinery/mass_driver{id = "medsci_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/medsci)
-"cOQ" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/janitor/aux"; dir = 1; name = "Auxiliary Custodial Closet APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/janitor/aux)
-"cOR" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/janitor/aux)
-"cOS" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/storage/box/lights/mixed,/obj/item/light/tube,/obj/item/radio/off,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/janitor/aux)
-"cOT" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "MedSci Router"},/turf/open/floor/plating,/area/router/medsci)
-"cOU" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "MedSci Router"},/obj/machinery/conveyor{dir = 1; id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci)
-"cOV" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/storage/box/mousetraps,/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/janitor/aux)
-"cOW" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/janitor/aux)
-"cOX" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/janitor/aux)
-"cOY" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/janitor/aux)
-"cOZ" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Custodial Closet - Auxiliary"; dir = 1},/turf/open/floor/plasteel,/area/janitor/aux)
-"cPa" = (/obj/structure/mopbucket,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/janitor/aux)
-"cPb" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/janitor/aux)
-"cPc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/virology)
-"cPd" = (/obj/machinery/conveyor{id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPe" = (/obj/machinery/mass_driver{dir = 1; id = "sq_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPf" = (/obj/machinery/conveyor/auto,/turf/open/floor/plating/airless,/area/router/aux)
-"cPg" = (/obj/machinery/mass_driver{dir = 1; id = "medsci_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPh" = (/obj/machinery/conveyor{dir = 1; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPi" = (/obj/machinery/conveyor{dir = 1; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPj" = (/obj/machinery/conveyor{dir = 9; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPk" = (/obj/machinery/conveyor{dir = 8; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPl" = (/obj/machinery/mass_driver{dir = 8; id = "viro_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPm" = (/obj/machinery/conveyor{dir = 8; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPn" = (/obj/machinery/conveyor{dir = 10; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPo" = (/obj/machinery/conveyor{dir = 4; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPp" = (/obj/machinery/mass_driver{dir = 4; id = "viro_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPq" = (/obj/machinery/conveyor{dir = 4; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux)
-"cPr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hydroponics/lobby)
-"cPs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge)
-"cPt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs)
-"cPu" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/break_room)
-"cPv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay)
-"cPw" = (/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay)
-"cPx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cPy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/contraband/lusty_xenomorph{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft)
-"cPz" = (/obj/structure/lattice,/obj/structure/transit_tube/curved{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"cPA" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"cPB" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/transit_tube/crossing/horizontal,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"cPC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/transit_tube/horizontal,/turf/open/floor/plasteel,/area/engine/atmos)
-"cPD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos)
-"cPE" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation)
-"cPF" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation)
-"cPG" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Supply - Warehouse Exterior"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation)
-"cPH" = (/obj/machinery/conveyor_switch{id = "EngiCargoConveyer"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/quartermaster/sorting"; dir = 8; name = "Delivery Office APC"; pixel_x = -26},/turf/open/floor/plasteel,/area/quartermaster/sorting)
-"cPI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
-"cPJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
-"cPK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Engineering Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
-"cPL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Engineering Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room)
-"cPM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/machinery/recharger,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_x = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply)
-"cPN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cPO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/aft)
-"cPP" = (/obj/effect/landmark/start/paramedic,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
-"cPQ" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/medical/genetics"; dir = 8; name = "Genetics Lab APC"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft)
-"cPR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
-"cPS" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "CMO's Office"; req_access_txt = "40"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo)
-"cPT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo)
-"cPU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cPV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cPW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cPX" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/xenobiology)
-"cPY" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/xenobiology)
-"cPZ" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology)
-"cQb" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQc" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQd" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQe" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology)
-"cQg" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
-"cQh" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQi" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQj" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
-"cQk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology)
-"cQl" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQm" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology)
-"cQp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQq" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQr" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/machinery/button/door{id = "xenobio4"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQs" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
-"cQt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQu" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
-"cQv" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQw" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQx" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQy" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
-"cQz" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQB" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
-"cQC" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/button/door{id = "xenobio5"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQD" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQE" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQF" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology)
-"cQH" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "xenobio7"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQI" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology)
-"cQJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology)
-"cQK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology)
-"cQL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/science/xenobiology)
-"cQM" = (/obj/machinery/door/window/southright{name = "Secure Xenobiological Containment"; req_one_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology)
-"cQN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology)
-"cQO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology)
-"cQP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/science/xenobiology)
-"cQQ" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
-"cQR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/bridge)
-"cQS" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"cQT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"cQU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"cQV" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/bridge)
-"cQW" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/machinery/camera{c_tag = "Bridge - Port Quarter"; dir = 1},/obj/machinery/keycard_auth{pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
-"cQX" = (/obj/machinery/photocopier,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
-"cQY" = (/obj/structure/reagent_dispensers/water_cooler,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge)
-"cQZ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/bridge)
-"cRa" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/machinery/door/poddoor{id = "MiningConveyorBlastDoor"; name = "Asteroid Mining Load Door"},/turf/open/floor/plating/airless,/area/quartermaster/miningoffice)
-"cRb" = (/obj/machinery/computer/cloning,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/item/paper/guides/jobs/medical/cloning{pixel_x = -4},/obj/item/paper/fluff/cogstation/cloner{pixel_x = 6},/turf/open/floor/plasteel,/area/medical/medbay/central)
-"cRc" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/door/airlock/research{name = "Aft Observatory"; req_access_txt = "47"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cRd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/research{name = "Aft Observatory"; req_access_txt = "47"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"})
-"cRe" = (/obj/machinery/computer/upload/ai{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai)
-"cRf" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/flasher{id = "ID"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai)
-"cRg" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel/white/corner,/area/engine/atmos)
-"cRh" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/turretid{control_area = "/area/science/server"; icon_state = "control_stun"; name = "Computer Core turret control"; pixel_x = -3; pixel_y = -23; req_access_txt = "65"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"})
-"cRi" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab)
-"cRj" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/dark/side{dir = 6},/area/science/robotics/lab)
-"cRk" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_y = 3; pixel_x = 4},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_x = -6; pixel_y = 6},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/button/door{id = "robotics3"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cRl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"cRm" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/stripes/red/full,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/poster/official/cleanliness{pixel_y = -32},/obj/machinery/disposal/bin{name = "Corpse Disposal Unit"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"})
-"cRn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"cRo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"cRp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab)
-"cRq" = (/obj/machinery/rnd/production/circuit_imprinter/department/science,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cRr" = (/obj/machinery/droneDispenser,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/effect/turf_decal/stripes/line{dir = 5; layer = 2.03},/turf/open/floor/plasteel,/area/science/robotics/lab)
-"cVq" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
-"cVO" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"dpO" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"dVR" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
-"dYm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/science/storage)
-"eCy" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/engine/atmos)
-"eIh" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "N2O Outlet Pump"},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos)
-"eKM" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"eTZ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"eUF" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/space/basic,/area/space/nearstation)
-"fgS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Plasma Outlet Pump"},/turf/open/floor/plasteel,/area/engine/atmos)
-"fkx" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"frb" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation)
-"fti" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"fui" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/turf/open/space/basic,/area/space)
-"fuE" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation)
-"fuR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 30},/turf/open/floor/plasteel,/area/science/mixing)
-"fIw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
-"guK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space)
-"gDY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Fuel Pipe to Incinerator"},/obj/machinery/light,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"gGG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"gVV" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine,/area/science/storage)
-"hcR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/closed/wall/r_wall,/area/bridge)
-"hiV" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer)
-"hlo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
-"hlV" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation)
-"hDz" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"hFa" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage)
-"hKC" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
-"hMZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Pure to Port"},/turf/open/floor/plasteel,/area/engine/atmos)
-"hXk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"})
-"ifC" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/orange/visible,/turf/open/space/basic,/area/space/nearstation)
-"iAW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"iQY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/atmos)
-"jiZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/atmos)
-"jml" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
-"jon" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"jyu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation)
-"jMO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"jXo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos)
-"kxw" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/open/space/basic,/area/space)
-"kzb" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/bridge)
-"kOG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos)
-"lcD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Air to Port"},/turf/open/floor/plasteel,/area/engine/atmos)
-"lRy" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"mkx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"mqB" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"mxW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation)
-"mBP" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/science/mixing)
-"mEa" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
-"mIm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/engine,/area/science/storage)
-"mIT" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation)
-"mKP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer)
-"mNN" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"ntC" = (/obj/machinery/atmospherics/components/binary/pump{name = "Port to Fuel Pipe"},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"nvn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos)
-"nAF" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Port"},/turf/open/floor/plasteel,/area/engine/atmos)
-"nBM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
-"nEX" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos)
-"nLV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
-"ony" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos)
-"opd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation)
-"oMB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/atmos)
-"pgu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation)
-"prx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"qeq" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/space/basic,/area/space/nearstation)
-"qgO" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/atmos)
-"qlJ" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation)
-"qvB" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"qHL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plating,/area/engine/atmos)
-"qWY" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste In"},/turf/open/floor/plasteel,/area/engine/atmos)
-"rdF" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos)
-"rTW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 6},/turf/open/space/basic,/area/space/nearstation)
-"rUl" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos)
-"sdp" = (/obj/structure/reagent_dispensers/foamtank,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"sHB" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"sRD" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos)
-"sVC" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation)
-"tjb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"})
-"tpQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/open/space/basic,/area/space/nearstation)
-"tuF" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/atmos)
-"tyI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos)
-"tXV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/turf/open/floor/plasteel,/area/engine/atmos)
-"tZj" = (/obj/structure/tank_dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos)
-"tZC" = (/obj/machinery/atmospherics/pipe/manifold4w/orange/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos)
-"urj" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge)
-"uwK" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"})
-"uAY" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/engine/atmos)
-"uVD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos)
-"vcb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos)
-"vsO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/atmos)
-"vxU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/engine/atmos)
-"wbu" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/closed/wall/r_wall,/area/engine/atmos)
-"wPS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation)
-"wWH" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos)
-"xcO" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix Outlet Pump"},/turf/open/floor/plasteel,/area/engine/atmos)
-"xjk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"xkC" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos)
-"xoj" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/plasteel,/area/engine/atmos)
-"xxP" = (/turf/closed/wall,/area/quartermaster/storage)
-"xCy" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos)
-"xKr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aaa" = (
+/turf/open/space/basic,
+/area/space)
+"aab" = (
+/obj/structure/sign/poster/official/anniversary_vintage_reprint,
+/turf/closed/wall/r_wall,
+/area/science/research{
+ name = "Research Sector"
+ })
+"aac" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"aad" = (
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/rec_center)
+"aae" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 4;
+ height = 12;
+ id = "arrivals_stationary";
+ name = "cog arrivals";
+ roundstart_template = /datum/map_template/shuttle/arrival/cog;
+ width = 9
+ },
+/turf/open/space/basic,
+/area/space)
+"aaf" = (
+/turf/closed/wall,
+/area/science/test_area)
+"aag" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/stairs/medium,
+/area/hallway/secondary/entry)
+"aah" = (
+/obj/structure/sign/warning/electricshock,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"aai" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall/rust,
+/area/maintenance/fore)
+"aaj" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/port/fore)
+"aak" = (
+/obj/machinery/conveyor/auto{
+ id = "pb"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"aal" = (
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"aam" = (
+/obj/structure/table,
+/obj/item/storage/box/lights/mixed,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aan" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/ai_monitored/security/armory)
+"aao" = (
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard/fore)
+"aap" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aaq" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aar" = (
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "pb"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"aas" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced/spawner/north,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"aat" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/observatory";
+ dir = 1;
+ name = "Observatory APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aau" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/port/fore";
+ dir = 8;
+ name = "Port Bow Maintenance APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aav" = (
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "solar"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"aaw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/test_area)
+"aax" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"aay" = (
+/obj/structure/sign/warning/electricshock,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"aaz" = (
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/ai_monitored/security/armory)
+"aaA" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"aaB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/kitchen/backroom";
+ dir = 1;
+ name = "Kitchen Coldroom APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"aaC" = (
+/obj/structure/closet/secure_closet/lethalshots,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/storage/box/firingpins,
+/obj/item/storage/box/firingpins,
+/obj/effect/spawner/lootdrop/armory_contraband/metastation,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"aaD" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"aaE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera{
+ c_tag = "Port Bow Maintenance - Fore";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aaF" = (
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"aaG" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/stairs/left,
+/area/security/brig)
+"aaH" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Armory Motion Sensor";
+ pixel_x = 22
+ },
+/obj/structure/rack,
+/obj/item/gun/energy{
+ pixel_y = -6
+ },
+/obj/item/gun/energy{
+ pixel_y = -3
+ },
+/obj/item/gun/energy,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"aaI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aaJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"aaK" = (
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/port)
+"aaL" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/space/basic,
+/area/solar/port)
+"aaM" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/solar/port)
+"aaN" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aaO" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"aaP" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"aaQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"aaR" = (
+/obj/machinery/vending/snack/random,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aaS" = (
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aaT" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"aaU" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"aaV" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"aaW" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aaX" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aaY" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8;
+ sortType = 21
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"aaZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aba" = (
+/obj/machinery/door/airlock/external{
+ name = "Arrival Shuttle Airlock"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"abb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"abc" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"abd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"abe" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"abf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"abg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"abh" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/solar/port)
+"abi" = (
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/port)
+"abj" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"abk" = (
+/obj/structure/closet/crate/secure/gear{
+ name = "Grenade Crate"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/storage/box/teargas{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"abl" = (
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/structure/rack,
+/obj/item/gun/energy/laser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"abm" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"abn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/gun/ballistic/shotgun/riot{
+ pixel_y = 6
+ },
+/obj/item/gun/ballistic/shotgun/riot,
+/obj/item/gun/ballistic/shotgun/riot{
+ pixel_y = -6
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"abo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"abp" = (
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"abq" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"abr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"abs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"abt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"abu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"abv" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"abw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/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
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"abx" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/port)
+"aby" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"abz" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"abA" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"abB" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre/clown)
+"abC" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre/clown)
+"abD" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"abE" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"abF" = (
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "sb_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"abG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/storage/box/trackimp{
+ pixel_x = 4
+ },
+/obj/item/storage/box/chemimp{
+ pixel_x = -4
+ },
+/obj/item/storage/lockbox/loyalty,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"abH" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"abI" = (
+/obj/structure/table,
+/obj/structure/mirror{
+ icon_state = "mirror_broke";
+ pixel_x = -24
+ },
+/obj/item/storage/briefcase,
+/obj/item/circuitboard/machine/vending/donksofttoyvendor,
+/obj/item/storage/pill_bottle/happy,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/paper/fluff/cogstation/cluwne,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"abJ" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "sb_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"abK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"abL" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"abM" = (
+/turf/closed/wall/r_wall,
+/area/router/aux)
+"abN" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/checker,
+/area/hallway/secondary/entry)
+"abO" = (
+/obj/structure/chair/comfy/brown,
+/obj/item/beacon,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"abP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/item/gun/energy/ionrifle{
+ pixel_y = 4
+ },
+/obj/item/gun/energy/temperature/security{
+ pixel_y = -4
+ },
+/obj/item/clothing/suit/armor/laserproof,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"abQ" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"abR" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"abS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/brig)
+"abT" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/dorms/purple";
+ name = "Crew Quarters A APC";
+ pixel_y = -26
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"abU" = (
+/obj/machinery/space_heater,
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/dorms/blue";
+ name = "Crew Quarters B APC";
+ pixel_y = -26
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"abV" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"abW" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/router/aux)
+"abX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint)
+"abY" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"abZ" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "sb_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"aca" = (
+/obj/machinery/conveyor{
+ dir = 5;
+ id = "pb_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acb" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"acc" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "solitarylock";
+ name = "Brig Lockdown"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"acd" = (
+/obj/machinery/button/door{
+ id = "armory";
+ name = "Armory Blast Door Control";
+ pixel_x = -28;
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"ace" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "pb_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acf" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "pb_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acg" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"ach" = (
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aci" = (
+/turf/closed/wall,
+/area/medical{
+ name = "Medical Booth"
+ })
+"acj" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "solar_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"ack" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/shield/riot{
+ pixel_x = -6
+ },
+/obj/item/shield/riot{
+ pixel_x = -6
+ },
+/obj/item/shield/riot{
+ pixel_x = -6
+ },
+/obj/item/clothing/mask/gas/sechailer/swat{
+ pixel_x = -4
+ },
+/obj/item/clothing/mask/gas/sechailer/swat{
+ pixel_x = -4
+ },
+/obj/item/clothing/mask/gas/sechailer/swat{
+ pixel_x = -4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"acl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_one_access_txt = "3"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"acm" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aco" = (
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"acp" = (
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"acq" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ id = "solar_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acr" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4;
+ sortType = 7
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acs" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"act" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"acu" = (
+/obj/structure/table,
+/obj/machinery/light,
+/obj/machinery/recharger,
+/obj/item/assembly/signaler{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/assembly/signaler{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/assembly/signaler{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/electropack{
+ pixel_x = -10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"acv" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"acw" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"acx" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/gun/energy/e_gun/advtaser{
+ pixel_y = 6
+ },
+/obj/item/gun/energy/e_gun/advtaser,
+/obj/item/gun/energy/e_gun/advtaser{
+ pixel_y = -6
+ },
+/obj/structure/rack,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"acz" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "sb_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acA" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "sb_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acB" = (
+/obj/machinery/conveyor{
+ dir = 6;
+ id = "sb_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ id = "armory";
+ name = "Armory"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"acD" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"acE" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"acF" = (
+/turf/closed/wall,
+/area/crew_quarters/lounge)
+"acG" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "pb_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acH" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"acI" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"acJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor{
+ id = "solar_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acK" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/medical{
+ name = "Medical Booth"
+ })
+"acL" = (
+/obj/machinery/door/poddoor{
+ id = "executionspaceblast"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"acM" = (
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_x = -32
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"acN" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"acO" = (
+/obj/structure/sign/warning/electricshock,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"acP" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"acQ" = (
+/turf/closed/wall,
+/area/crew_quarters/theatre/clown)
+"acR" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-16"
+ },
+/turf/open/floor/plasteel/checker,
+/area/hallway/secondary/entry)
+"acS" = (
+/obj/machinery/atmospherics/components/binary/valve/digital/on,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"acT" = (
+/obj/structure/table/reinforced,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"acU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/sign/warning/securearea{
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera{
+ c_tag = "Armory Access";
+ network = list("ss13","rd")
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"acV" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"acW" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/deliveryChute,
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"acX" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"acY" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"acZ" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ada" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/security/armory)
+"adb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"adc" = (
+/obj/machinery/conveyor{
+ id = "sb_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"add" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/observatory)
+"ade" = (
+/obj/machinery/atmospherics/components/binary/valve/digital/on,
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"adf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/observatory)
+"adg" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"adh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/observatory)
+"adi" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"adj" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/observatory)
+"adk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/conveyor{
+ id = "solar_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"adl" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"adm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Maintenance";
+ req_one_access_txt = "12;46"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"adn" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/entry)
+"ado" = (
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard/fore)
+"adp" = (
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"adq" = (
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/entry)
+"adr" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-16"
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"ads" = (
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"adt" = (
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"adu" = (
+/obj/structure/sign/warning{
+ name = "\improper CONSTRUCTION AREA";
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"adv" = (
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"adw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "solar"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"adx" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"ady" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating/airless,
+/area/solar/starboard/fore)
+"adz" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"adA" = (
+/obj/effect/turf_decal/tile/red,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"adB" = (
+/obj/structure/sign/poster/official/enlist{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"adC" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/observatory)
+"adD" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/vending/security,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"adE" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/obj/machinery/syndicatebomb/training,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"adF" = (
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"adG" = (
+/obj/machinery/mass_driver{
+ id = "serv_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"adH" = (
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "solar"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"adI" = (
+/obj/machinery/disposal/bin{
+ name = "Service Delivery"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"adJ" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/closet,
+/obj/item/clothing/under/misc/staffassistant,
+/obj/item/clothing/under/misc/staffassistant,
+/obj/item/clothing/under/misc/staffassistant,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"adK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/stairs/medium,
+/area/security/brig)
+"adL" = (
+/obj/machinery/mass_driver{
+ id = "starboard_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"adM" = (
+/turf/closed/wall,
+/area/crew_quarters/observatory)
+"adN" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"adO" = (
+/obj/structure/noticeboard{
+ dir = 4;
+ pixel_x = -27
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"adP" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"adQ" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"adR" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/storage/box/beakers,
+/obj/item/hand_labeler,
+/obj/item/folder/white{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/stamp/denied{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/stamp,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"adS" = (
+/turf/closed/wall,
+/area/construction)
+"adT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/construction)
+"adU" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"adV" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/starboard/fore";
+ dir = 1;
+ name = "Starboard Bow Maintenance APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"adW" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs/right,
+/area/security/brig)
+"adX" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"adY" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"adZ" = (
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"aea" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aeb" = (
+/obj/structure/table,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aec" = (
+/turf/closed/wall/r_wall,
+/area/construction)
+"aed" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aee" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/space/basic,
+/area/solar/port)
+"aef" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aeg" = (
+/obj/structure/sign/warning/electricshock,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"aeh" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aei" = (
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/secondary/entry";
+ dir = 8;
+ name = "Arrival Shuttle Hallway APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aej" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on,
+/turf/open/floor/plating/airless,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aek" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ael" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aem" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aen" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aeo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/circuitboard/machine/sleeper,
+/obj/structure/frame/machine,
+/turf/open/floor/plasteel,
+/area/construction)
+"aep" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aeq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aer" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aes" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aet" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aeu" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aev" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/fore)
+"aew" = (
+/turf/closed/wall/r_wall,
+/area/security/prison)
+"aex" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/storage/hypospraykit/regular,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aey" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aez" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aeA" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aeB" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/toilet/fitness";
+ name = "Fitness Toilets APC";
+ pixel_y = -26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aeC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aeD" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aeE" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel,
+/area/construction)
+"aeF" = (
+/obj/structure/table,
+/obj/item/assembly/infra,
+/obj/item/assembly/voice{
+ pixel_x = 4;
+ pixel_y = 12
+ },
+/obj/item/assembly/health{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/open/floor/plating,
+/area/construction)
+"aeG" = (
+/obj/item/stack/tile/plasteel{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/construction";
+ dir = 1;
+ name = "Construction Area APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/construction)
+"aeH" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aeI" = (
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aeJ" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/security/prison)
+"aeK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"aeL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aeM" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aeN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Router";
+ req_one_access_txt = "1"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aeO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aeP" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/fore)
+"aeQ" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aeR" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aeS" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aeT" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aeU" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aeV" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/suit/straight_jacket,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aeW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Construction Area";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plasteel,
+/area/construction)
+"aeX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aeY" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet/fitness)
+"aeZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"afa" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"afb" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afc" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afd" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"afe" = (
+/obj/machinery/door/airlock,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aff" = (
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"afg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital/on,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"afh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/highcap/fifteen_k{
+ areastring = /area/maintenance/solars/starboard/fore;
+ dir = 4;
+ name = "Starboard Bow Solars APC";
+ pixel_x = 28
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"afi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"afj" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afk" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afl" = (
+/obj/effect/landmark/secequipment,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"afm" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/construction)
+"afn" = (
+/obj/machinery/biogenerator,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"afo" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/landmark/start/mime,
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/theatre/mime";
+ dir = 4;
+ name = "Mime's Office APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/theatre/mime)
+"afp" = (
+/turf/open/floor/plating,
+/area/construction)
+"afq" = (
+/obj/structure/table,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"afr" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/camera{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"afs" = (
+/obj/machinery/flasher{
+ id = "executionflash";
+ pixel_x = -25
+ },
+/obj/structure/chair/e_chair,
+/obj/effect/decal/cleanable/ash{
+ pixel_y = -8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aft" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"afu" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afv" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"afx" = (
+/obj/machinery/computer/holodeck{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afy" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afz" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afA" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"afB" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afC" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"afD" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/port/fore)
+"afE" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall,
+/area/crew_quarters/theatre/clown)
+"afF" = (
+/obj/machinery/sparker{
+ id = "executionburn";
+ pixel_x = 25
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"afG" = (
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/obj/item/paper/guides/jobs/hydroponics,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"afH" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security RC";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"afI" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afJ" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/plant_analyzer,
+/obj/item/cultivator,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"afK" = (
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"afL" = (
+/obj/machinery/door/airlock,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afM" = (
+/obj/structure/closet/crate/internals,
+/obj/machinery/camera{
+ c_tag = "Construction Area";
+ pixel_x = 22
+ },
+/obj/item/flashlight,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/turf/open/floor/plating,
+/area/construction)
+"afN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afO" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel/checker,
+/area/hallway/secondary/entry)
+"afP" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"afR" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/table/reinforced,
+/obj/item/paicard,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"afS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"afT" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"afU" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/stairs/left,
+/area/hallway/secondary/entry)
+"afV" = (
+/obj/structure/closet/crate,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/clothing/gloves/color/white,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/structure/sign/poster/contraband/red_rum{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"afW" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"afX" = (
+/obj/item/cigbutt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/machinery/camera{
+ c_tag = "Port Bow Maintenance - Aft";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"afY" = (
+/obj/item/seeds/carrot,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"afZ" = (
+/obj/machinery/disposal/bin{
+ name = "Brig Catering"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5;
+ layer = 2.03
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/kitchen)
+"aga" = (
+/obj/structure/table,
+/obj/item/paper/fluff/holodeck/disclaimer,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agb" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"agd" = (
+/obj/structure/fans/tiny/invisible,
+/obj/docking_port/stationary{
+ dwidth = 1;
+ height = 4;
+ name = "escape pod loader";
+ roundstart_template = /datum/map_template/shuttle/escape_pod/default;
+ width = 3
+ },
+/turf/open/space/basic,
+/area/space)
+"age" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"agf" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"agg" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"agh" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"agi" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"agj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Observatory Access"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"agk" = (
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agl" = (
+/obj/machinery/disposal/bin{
+ name = "Bar Catering"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6;
+ layer = 2.03
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/plasteel,
+/area/crew_quarters/kitchen)
+"agm" = (
+/obj/structure/table,
+/obj/item/sharpener,
+/obj/item/kitchen/knife,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"agn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall,
+/area/crew_quarters/lounge)
+"ago" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"agp" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agq" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"agr" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ags" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"agt" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agu" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"agv" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"agw" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/displaycase/labcage{
+ desc = "A glass lab container for storing smelly creatures.";
+ name = "stinky panda containment";
+ start_showpiece_type = /mob/living/simple_animal/pet/redpanda/stinky
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"agx" = (
+/mob/living/simple_animal/bot/floorbot,
+/turf/open/floor/plating,
+/area/construction)
+"agy" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"agz" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"agA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/warning{
+ name = "\improper CONSTRUCTION AREA";
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"agB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"agC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"agD" = (
+/obj/machinery/seed_extractor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"agE" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"agF" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/camera{
+ c_tag = "Observatory Viewing Area";
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agG" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/theatre/mime)
+"agH" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"agI" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/tower,
+/obj/item/seeds/amanita,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"agJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Maintenance";
+ req_one_access_txt = "12;46"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"agK" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agL" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating/airless,
+/area/solar/port)
+"agM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agN" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agO" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agP" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"agQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"agR" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agS" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/suit_storage_unit/engine,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"agU" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 3
+ },
+/obj/item/assembly/timer{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/t_scanner{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/t_scanner,
+/obj/item/assembly/igniter{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/structure/sign/poster/contraband/missing_gloves{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"agV" = (
+/obj/machinery/newscaster{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"agW" = (
+/turf/closed/wall/r_wall,
+/area/security/processing)
+"agX" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ name = "Starboard Bow Solar Exterior Airlock";
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"agY" = (
+/obj/structure/table,
+/obj/item/storage/crayons,
+/obj/item/toy/beach_ball/holoball,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"agZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"aha" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ahb" = (
+/obj/machinery/processor,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ahc" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 8
+ },
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ahd" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ahe" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"ahf" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Labor Camp Shuttle Airlock"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"ahg" = (
+/turf/closed/wall/r_wall,
+/area/security/warden)
+"ahh" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"ahi" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 28
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ahj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Fore Maintenance - Fore";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahk" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/processing)
+"ahl" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"ahm" = (
+/obj/structure/falsewall/reinforced,
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"ahn" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aho" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"ahp" = (
+/obj/machinery/gulag_item_reclaimer{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"ahq" = (
+/turf/open/floor/plasteel,
+/area/security/processing)
+"ahr" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/ambrosia,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"ahs" = (
+/obj/machinery/light,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Kitchen";
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aht" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/item/storage/box/disks,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ahu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hydroponics)
+"ahv" = (
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_x = 32
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ahw" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ahx" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ahy" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "solitarylock";
+ name = "Brig Lockdown"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"ahz" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness)
+"ahA" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"ahB" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Bathroom Stall"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"ahC" = (
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"ahD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/fore";
+ dir = 1;
+ name = "Fore Maintenance APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ahF" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/structure/mirror{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"ahG" = (
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"ahH" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"ahI" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/fitness";
+ name = "Fitness Room APC";
+ pixel_y = -26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahJ" = (
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"ahK" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ahL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/observatory)
+"ahM" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"ahN" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ahO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"ahP" = (
+/turf/closed/wall,
+/area/maintenance/solars/starboard/fore)
+"ahQ" = (
+/obj/structure/closet/lasertag/blue,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"ahR" = (
+/obj/item/beacon,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"ahS" = (
+/obj/structure/closet/cabinet,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"ahT" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/storage/bag/plants,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ahU" = (
+/obj/machinery/vending/wardrobe/chef_wardrobe,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ahV" = (
+/obj/structure/closet/lasertag/red,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"ahW" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"ahX" = (
+/obj/machinery/deepfryer,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ahY" = (
+/obj/machinery/vending/autodrobe,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"ahZ" = (
+/obj/structure/table/glass,
+/obj/item/storage/toolbox/emergency{
+ pixel_y = 4
+ },
+/obj/item/radio/off,
+/obj/machinery/camera{
+ c_tag = "Arrival Shuttle Hallway"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/hallway/secondary/entry)
+"aia" = (
+/obj/effect/landmark/start/cook,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aib" = (
+/obj/structure/table/glass,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/hallway/secondary/entry)
+"aic" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"aid" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/cotton,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"aie" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aif" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"aig" = (
+/obj/machinery/camera{
+ c_tag = "Observatory Holodeck";
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aih" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aii" = (
+/obj/structure/closet,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/gps,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aij" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aik" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ail" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aim" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ain" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/processing)
+"aio" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"aip" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aiq" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/space/basic,
+/area/solar/port)
+"air" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stack/cable_coil/red{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/stack/cable_coil/red,
+/obj/item/screwdriver,
+/obj/item/multitool{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"ais" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"ait" = (
+/obj/machinery/vending/dinnerware,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aiu" = (
+/obj/effect/landmark/start/mime,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/checker,
+/area/crew_quarters/theatre/mime)
+"aiv" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aiw" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aix" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"aiy" = (
+/obj/structure/bed,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/effect/landmark/start/clown,
+/obj/item/bedsheet/clown,
+/obj/structure/sign/plaques/kiddie/perfect_man{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"aiz" = (
+/turf/closed/wall,
+/area/maintenance/starboard/fore)
+"aiA" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/construction)
+"aiB" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/kitchen";
+ name = "Kitchen APC";
+ pixel_y = -26
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"aiC" = (
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"aiD" = (
+/obj/structure/closet/crate/wooden/toy,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Clown's Office";
+ pixel_x = 22
+ },
+/obj/item/clothing/under/rank/civilian/clown/yellow,
+/obj/item/clothing/under/rank/civilian/clown/blue,
+/obj/item/clothing/under/rank/civilian/clown/green,
+/obj/item/toy/crayon/spraycan/lubecan,
+/obj/item/megaphone/clown,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"aiE" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel,
+/area/security/processing)
+"aiF" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Starboard Bow Maintenance";
+ req_one_access_txt = "12;25;26;28;35;46"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"aiG" = (
+/obj/structure/closet,
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"aiH" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/grass,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/security/prison)
+"aiI" = (
+/obj/structure/closet/boxinggloves,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aiJ" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"aiK" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/genpop,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aiL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/prison)
+"aiM" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/observatory)
+"aiN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aiO" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aiP" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aiQ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aiR" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/glass/beaker/waterbottle,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aiS" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-06"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aiT" = (
+/obj/machinery/door/airlock/maintenance/abandoned{
+ name = "Port Bow Maintainance";
+ req_one_access_txt = "1"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aiU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/deepfryer,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aiV" = (
+/obj/item/stack/tile/plasteel{
+ pixel_x = 10;
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
+"aiW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Observatory"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/observatory)
+"aiX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall,
+/area/crew_quarters/observatory)
+"aiY" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/machinery/door/window/eastright{
+ name = "Bathroom Stall"
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"aiZ" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/observatory)
+"aja" = (
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/item/caution,
+/turf/open/floor/plating,
+/area/construction)
+"ajb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ajc" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space/basic,
+/area/solar/port)
+"ajd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"aje" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"ajf" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajg" = (
+/obj/structure/table,
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/item/reagent_containers/food/snacks/pie/cream,
+/obj/item/instrument/bikehorn,
+/obj/item/flashlight/lamp/bananalamp{
+ pixel_y = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"ajh" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin/construction,
+/obj/item/storage/crayons,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/hallway/secondary/entry)
+"aji" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"ajj" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ajk" = (
+/obj/effect/landmark/start/clown,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"ajl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/mob/living/simple_animal/cockroach,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ajm" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"ajn" = (
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"ajo" = (
+/obj/structure/table,
+/obj/item/toy/dummy,
+/obj/structure/mirror{
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/checker,
+/area/crew_quarters/theatre/mime)
+"ajp" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/observatory)
+"ajq" = (
+/obj/effect/landmark/start/clown,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/theatre/clown";
+ dir = 4;
+ name = "Clown's Office APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"ajr" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/observatory)
+"ajs" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/snacks/mint,
+/obj/item/reagent_containers/food/condiment/mayonnaise,
+/obj/item/bikehorn{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ajt" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"aju" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"ajv" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/theatre/mime)
+"ajw" = (
+/turf/closed/wall,
+/area/construction/secondary)
+"ajx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ajy" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/computer/prisoner/management,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ajz" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ajA" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/genpop,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ajB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Hydroponics"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"ajC" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ajD" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/cook,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ajE" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ajF" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/construction/secondary)
+"ajG" = (
+/obj/machinery/computer/arcade,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"ajH" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/crowbar,
+/obj/item/extinguisher,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ajI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ajJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ajK" = (
+/obj/structure/sign/warning{
+ name = "\improper CONSTRUCTION AREA";
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"ajL" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/lounge";
+ name = "Lounge APC";
+ pixel_y = -26
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/observatory)
+"ajM" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder{
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -8;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ajN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ajO" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"ajP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ajQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ajR" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/observatory)
+"ajS" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"ajT" = (
+/obj/structure/weightmachine/weightlifter,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"ajU" = (
+/obj/structure/rack,
+/obj/item/wrench,
+/obj/item/light/tube,
+/obj/item/radio/off,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/camera{
+ c_tag = "Security - Interrogation Maintenance";
+ dir = 1
+ },
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/security/brig";
+ dir = 4;
+ name = "Brig APC";
+ pixel_x = 26
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"ajV" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall,
+/area/crew_quarters/theatre/mime)
+"ajW" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/observatory)
+"ajX" = (
+/obj/item/pipe{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/melee/baseball_bat,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/camera{
+ c_tag = "Secondary Construction Area"
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"ajY" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ajZ" = (
+/obj/item/multitool,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/tcommsat/computer";
+ dir = 1;
+ name = "Telecomms Access APC";
+ pixel_y = 28
+ },
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"aka" = (
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"akb" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Mime's Office";
+ req_access_txt = "46"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/mime)
+"akc" = (
+/obj/machinery/computer/slot_machine,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/construction/secondary)
+"akd" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/security/checkpoint)
+"ake" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/rnd/production/techfab/department/service,
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"akf" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency{
+ pixel_y = 4
+ },
+/obj/item/electronics/firelock,
+/obj/item/electronics/firealarm,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/construction/secondary)
+"akg" = (
+/obj/machinery/power/solar_control{
+ dir = 4;
+ id = "foreport";
+ name = "Port Bow Solar Control"
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"akh" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/construction/secondary)
+"aki" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plating,
+/area/construction/secondary)
+"akj" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"akk" = (
+/obj/item/stack/tile/plasteel{
+ pixel_x = 10;
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"akl" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/computer/shuttle/labor{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"akm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel,
+/area/construction/secondary)
+"akn" = (
+/obj/machinery/power/solar_control{
+ id = "forestarboard";
+ name = "Starboard Bow Solar Control"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"ako" = (
+/obj/machinery/button/flasher{
+ id = "executionflash";
+ pixel_x = 7;
+ pixel_y = 24
+ },
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plasteel,
+/area/maintenance/port/fore)
+"akp" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akq" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/box/prisoner,
+/obj/item/razor,
+/obj/item/paper/guides/jobs/security/labor_camp,
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/security/processing)
+"akr" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/computer/prisoner/gulag_teleporter_computer{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Prison Shuttle Dock";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"aks" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akt" = (
+/obj/machinery/computer/prisoner/management,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/central";
+ dir = 1;
+ name = "Brig Control APC";
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"aku" = (
+/obj/machinery/computer/secure_data,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akv" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"akw" = (
+/obj/structure/bed,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"akx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Secondary Construction Area";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"aky" = (
+/obj/machinery/computer/crew,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akz" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"akA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"akB" = (
+/obj/machinery/power/smes,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"akC" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"akD" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/hand_labeler{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"akE" = (
+/turf/closed/wall/r_wall,
+/area/router/sec)
+"akF" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"akG" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"akH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"akI" = (
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer)
+"akJ" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Telecommunications Maintenance";
+ req_access_txt = "61"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"akK" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"akL" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Brig";
+ pixel_x = 22
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"akM" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"akN" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "secblock";
+ name = "Security Router"
+ },
+/obj/machinery/conveyor/auto{
+ id = "sec"
+ },
+/turf/open/floor/plating,
+/area/router/sec)
+"akO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/computer/security/labor{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"akP" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ name = "Security Router"
+ },
+/turf/open/floor/plating,
+/area/router/sec)
+"akQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"akR" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"akS" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/item/soap/nanotrasen,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"akT" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"akU" = (
+/obj/machinery/door/window/northleft{
+ name = "Showers"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"akV" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"akW" = (
+/obj/structure/table/wood,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/structure/sign/departments/restroom{
+ pixel_x = -32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"akX" = (
+/turf/closed/wall,
+/area/crew_quarters/dorms/purple)
+"akY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akZ" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"ala" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"alb" = (
+/obj/machinery/power/smes,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"alc" = (
+/obj/structure/fermenting_barrel,
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"ald" = (
+/obj/machinery/chem_master/condimaster,
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"ale" = (
+/turf/closed/wall,
+/area/crew_quarters/dorms/blue)
+"alf" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"alg" = (
+/obj/structure/frame/machine,
+/obj/item/circuitboard/computer/arcade/minesweeper,
+/turf/open/floor/plating,
+/area/construction/secondary)
+"alh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ali" = (
+/turf/open/floor/plating,
+/area/construction/secondary)
+"alj" = (
+/obj/machinery/gulag_teleporter,
+/turf/open/floor/plasteel,
+/area/security/processing)
+"alk" = (
+/obj/item/caution,
+/turf/open/floor/plating,
+/area/construction/secondary)
+"all" = (
+/obj/structure/table/glass,
+/obj/item/wrench{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/glass/bottle/mutagen{
+ pixel_x = -4
+ },
+/turf/open/floor/grass,
+/area/hydroponics)
+"alm" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/grass,
+/area/hydroponics)
+"aln" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/grass,
+/area/hydroponics)
+"alo" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"alp" = (
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel,
+/area/construction/secondary)
+"alq" = (
+/obj/machinery/conveyor/auto{
+ id = "sec"
+ },
+/turf/open/floor/plating,
+/area/router/sec)
+"alr" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"als" = (
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "sec_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router/sec)
+"alt" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"alu" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"alv" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"alw" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/landmark/start/warden,
+/obj/machinery/camera{
+ c_tag = "Security - Brig Control";
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"alx" = (
+/turf/open/floor/plasteel,
+/area/maintenance/port/fore)
+"aly" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"alz" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"alA" = (
+/obj/structure/bed,
+/obj/item/bedsheet/purple,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"alB" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"alC" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"alD" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"alE" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"alF" = (
+/obj/machinery/photocopier,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -28
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/item/paper/guides/cogstation/letter_sec,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"alG" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"alH" = (
+/obj/structure/table,
+/obj/item/storage/box/beakers{
+ pixel_x = -8
+ },
+/obj/item/storage/box/ingredients{
+ pixel_x = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"alI" = (
+/obj/structure/weightmachine/stacklifter,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"alJ" = (
+/obj/machinery/vending/hydroseeds,
+/turf/open/floor/grass,
+/area/hydroponics)
+"alK" = (
+/obj/effect/landmark/xmastree,
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"alL" = (
+/obj/structure/weightmachine/weightlifter,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"alM" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"alN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alO" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"alP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alQ" = (
+/obj/structure/dresser,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"alR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"alS" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/obj/item/reagent_containers/food/drinks/drinkingglass,
+/obj/item/reagent_containers/rag,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"alT" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"alU" = (
+/obj/structure/chair/stool,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"alV" = (
+/obj/structure/bed,
+/obj/item/bedsheet/blue,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"alW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"alX" = (
+/obj/structure/table,
+/obj/item/storage/box/ingredients,
+/obj/item/clothing/head/chefhat,
+/obj/item/reagent_containers/glass/beaker,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"alY" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/t_scanner,
+/turf/open/floor/plating,
+/area/construction/secondary)
+"alZ" = (
+/turf/closed/wall/r_wall,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"ama" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/security/warden)
+"amb" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"amc" = (
+/turf/closed/wall,
+/area/storage/tools)
+"amd" = (
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ame" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"amf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"amg" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"amh" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/recharger,
+/obj/item/pen/red{
+ pixel_y = 4
+ },
+/obj/item/pen/blue{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ami" = (
+/obj/structure/sign/poster/contraband/grey_tide{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"amj" = (
+/turf/closed/wall/rust,
+/area/maintenance/port/fore)
+"amk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/port/fore)
+"aml" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"amm" = (
+/obj/structure/closet/crate/secure/weapon{
+ desc = "A secure clothing crate.";
+ name = "formal uniform crate";
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"amn" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/mob/living/simple_animal/mouse/brown,
+/turf/open/floor/plating,
+/area/construction/secondary)
+"amo" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"amp" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Maintenance";
+ req_one_access_txt = "12;46"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amq" = (
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"amr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Starboard Bow Maintenance";
+ req_one_access_txt = "12;25;26;28;35;46"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ams" = (
+/obj/machinery/camera{
+ c_tag = "Fitness Toilets";
+ pixel_x = 22
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"amt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"amu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"amv" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"amw" = (
+/obj/structure/sign/poster/contraband/eat{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"amx" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"amy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"amz" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"amA" = (
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"amB" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"amC" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"amD" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"amE" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/highcap/five_k{
+ areastring = "/area/crew_quarters/bar";
+ dir = 8;
+ name = "Bar APC";
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"amF" = (
+/obj/effect/landmark/start/cook,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"amG" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/chapel/main)
+"amH" = (
+/obj/item/crowbar/large{
+ pixel_y = 3
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/construction/secondary)
+"amI" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/warden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"amJ" = (
+/obj/structure/lattice,
+/obj/structure/sign/departments/botany{
+ pixel_x = -32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"amK" = (
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"amL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"amM" = (
+/obj/machinery/light,
+/obj/machinery/disposal/bin{
+ name = "Kitchen Mailbox"
+ },
+/obj/effect/turf_decal/delivery/white,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"amN" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/storage/tools)
+"amO" = (
+/obj/item/bedsheet/mime,
+/obj/structure/bed,
+/obj/effect/landmark/start/mime,
+/obj/machinery/camera{
+ c_tag = "Mime's Office";
+ pixel_x = 22
+ },
+/turf/open/floor/plasteel/checker,
+/area/crew_quarters/theatre/mime)
+"amP" = (
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/hallway/secondary/entry)
+"amQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastleft{
+ name = "Reception Window"
+ },
+/obj/machinery/door/window/westleft{
+ name = "Warden's Desk";
+ req_one_access_txt = "2"
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"amR" = (
+/obj/machinery/light/small,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"amS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"amT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"amU" = (
+/obj/structure/beebox,
+/obj/item/queen_bee/bought,
+/turf/open/floor/grass,
+/area/hydroponics)
+"amV" = (
+/turf/open/floor/grass,
+/area/hydroponics)
+"amW" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = -4
+ },
+/obj/item/book/manual/hydroponics_pod_people{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/paper/guides/jobs/hydroponics{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/open/floor/grass,
+/area/hydroponics)
+"amX" = (
+/obj/machinery/suit_storage_unit/security,
+/turf/open/floor/plasteel/dark,
+/area/security/processing)
+"amY" = (
+/turf/closed/wall,
+/area/chapel/main)
+"amZ" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ana" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"anb" = (
+/obj/structure/table,
+/obj/item/lipstick/black,
+/obj/item/lipstick/random{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/theatre/mime)
+"anc" = (
+/obj/item/cigbutt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"and" = (
+/turf/closed/wall/r_wall,
+/area/chapel/main)
+"ane" = (
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"anf" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/construction/secondary";
+ dir = 1;
+ name = "Secondary Construction Area APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"ang" = (
+/turf/closed/wall/r_wall,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"anh" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/clothing/glasses/regular,
+/obj/machinery/door/window/northright{
+ name = "Medical Booth Desk";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"ani" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/duelshotgun{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"anj" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ank" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/easel,
+/obj/item/canvas/nineteenXnineteen,
+/obj/machinery/camera{
+ c_tag = "Crew Lounge";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"anl" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"anm" = (
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "disposal"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ann" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/goonplaque{
+ desc = "It reads 'In honor of spacemen past, whose work allowed this station to find its new home. The fact that you stand on a station originally built light years away is a definitive representation of the ingenuity of the human spirit.' Beneath this is the image of a spaceman rocketing upwards by means of what appears to be a match and flatulence."
+ },
+/area/hallway/secondary/entry)
+"ano" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"anp" = (
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"anq" = (
+/turf/closed/wall,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"anr" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"ans" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/destTagger,
+/obj/machinery/button/door{
+ id = "secblock";
+ name = "Router Access Control";
+ pixel_x = 8;
+ pixel_y = 24;
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"ant" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"anu" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"anv" = (
+/obj/item/stack/sheet/plasteel{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/beakers,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plating,
+/area/construction)
+"anw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"anx" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"any" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/pill/patch/styptic,
+/obj/item/reagent_containers/pill/patch/styptic,
+/obj/item/reagent_containers/pill/patch/styptic,
+/obj/item/reagent_containers/pill/patch/styptic,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"anz" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"anA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Fitness Room Maintenance";
+ req_one_access_txt = "12;46"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness)
+"anB" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/sign/barsign{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"anC" = (
+/obj/machinery/computer/cargo/request,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/requests_console{
+ department = "Security Router";
+ name = "Security Router RC";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"anD" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"anE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"anF" = (
+/obj/machinery/smartfridge,
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"anG" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"anH" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/security/checkpoint)
+"anI" = (
+/obj/machinery/computer/arcade/orion_trail,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"anJ" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/item/paper_bin,
+/obj/item/stamp/denied{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/stamp{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/obj/machinery/power/apc{
+ areastring = "/area/security/checkpoint";
+ dir = 4;
+ name = "Security Checkpoint APC";
+ pixel_x = 24
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security RC";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"anK" = (
+/turf/closed/wall/r_wall,
+/area/security/detectives_office)
+"anL" = (
+/obj/machinery/computer/arcade/minesweeper,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"anM" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"anN" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/analyzer,
+/obj/item/wrench{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"anO" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/storage/belt/utility,
+/obj/item/extinguisher,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"anP" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"anQ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"anR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"anS" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/storage/tools";
+ name = "Auxiliary Tool Storage APC";
+ pixel_y = -26
+ },
+/obj/machinery/camera{
+ c_tag = "Auxiliary Tool Storage";
+ dir = 4;
+ pixel_y = -22
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"anT" = (
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"anU" = (
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"anV" = (
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"anW" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "sec_off"
+ },
+/turf/open/floor/plating,
+/area/router/sec)
+"anX" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"anY" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"anZ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"aoa" = (
+/obj/item/clockwork/component/geis_capacitor/fallen_armor,
+/obj/structure/table/bronze,
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aob" = (
+/obj/structure/closet/emcloset,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aoc" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/requests_console{
+ department = "Recreation";
+ name = "Recreation RC";
+ pixel_y = -32
+ },
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aod" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"aoe" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"aof" = (
+/obj/structure/sign/poster/official/foam_force_ad{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"aog" = (
+/turf/open/floor/grass,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aoh" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aoi" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"aoj" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"aok" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "Dorm1";
+ name = "Dormitory Door Lock";
+ normaldoorcontrol = 1;
+ pixel_x = -7;
+ pixel_y = -24;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"aol" = (
+/obj/machinery/button/door{
+ id = "Dorm3";
+ name = "Dormitory Door Lock";
+ normaldoorcontrol = 1;
+ pixel_x = 7;
+ pixel_y = -24;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"aom" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"aon" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"aoo" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/ears/earmuffs,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/construction/secondary)
+"aop" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"aoq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"aor" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"aos" = (
+/obj/structure/window/reinforced,
+/obj/structure/closet/athletic_mixed,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aot" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aou" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"aov" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/grass,
+/area/hydroponics)
+"aow" = (
+/mob/living/simple_animal/banana_spider{
+ name = "Henry"
+ },
+/turf/open/floor/grass,
+/area/hydroponics)
+"aox" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"aoy" = (
+/obj/machinery/computer/secure_data,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Security Checkpoint";
+ pixel_x = 22
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"aoz" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 4;
+ name = "4maintenance loot spawner"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/construction/secondary)
+"aoA" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/item/flashlight/lamp,
+/obj/machinery/door/window/westright{
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"aoB" = (
+/obj/structure/bed,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Prison Beds";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/power/apc/highcap/five_k{
+ areastring = "/area/security/prison";
+ dir = 4;
+ name = "Prison APC";
+ pixel_x = 26
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aoC" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aoD" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"aoE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/main)
+"aoF" = (
+/turf/closed/wall/r_wall,
+/area/security/main)
+"aoG" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"aoH" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Port Bow Solars External Access";
+ req_access_txt = "10;13"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aoI" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/grass,
+/area/hydroponics)
+"aoJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/machinery/space_heater,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aoK" = (
+/turf/closed/wall/r_wall,
+/area/router/service)
+"aoL" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"aoM" = (
+/obj/structure/closet/crate,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/capacitor,
+/turf/open/floor/plating,
+/area/construction)
+"aoN" = (
+/obj/structure/closet/crate/internals,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = -26
+ },
+/obj/item/clothing/head/hardhat/orange,
+/obj/item/clothing/head/hardhat/orange,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aoO" = (
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aoP" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aoQ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aoR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Control";
+ req_access_txt = "3"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"aoS" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/conveyor{
+ id = "serv_off"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "servblock";
+ name = "Service Router"
+ },
+/turf/open/floor/plating,
+/area/router/service)
+"aoT" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "servblock";
+ name = "Service Router"
+ },
+/turf/open/floor/plating,
+/area/router/service)
+"aoU" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"aoV" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aoW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external/glass{
+ name = "Port Bow Solars External Access";
+ req_access_txt = "10;13"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aoX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aoY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aoZ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"apa" = (
+/obj/structure/chair/sofa/right,
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"apb" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"apc" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"apd" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"ape" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"apf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"apg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"aph" = (
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"api" = (
+/obj/machinery/door/window/southright{
+ name = "Weightroom"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"apj" = (
+/obj/structure/window/reinforced,
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"apk" = (
+/obj/structure/closet/lasertag/blue,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"apl" = (
+/obj/structure/chair/sofa/right,
+/obj/item/clothing/head/beret/black,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"apm" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"apn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"apo" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/construction)
+"app" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"apq" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"apr" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/button/massdriver{
+ id = "sec_out";
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"aps" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/security{
+ name = "Security EVA Prep Room";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"apt" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/construction)
+"apu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"apv" = (
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"apw" = (
+/obj/structure/chair/sofa/left,
+/obj/effect/landmark/start/assistant,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"apx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"apy" = (
+/obj/machinery/vr_sleeper{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"apz" = (
+/obj/machinery/vr_sleeper{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"apA" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms/purple)
+"apB" = (
+/obj/structure/flora/tree/jungle/small,
+/turf/open/floor/grass,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"apC" = (
+/turf/closed/wall/r_wall,
+/area/hydroponics)
+"apD" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm1";
+ name = "Room 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"apE" = (
+/obj/machinery/biogenerator,
+/turf/open/floor/grass,
+/area/hydroponics)
+"apF" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"apG" = (
+/mob/living/simple_animal/chicken{
+ name = "Featherbottom";
+ real_name = "Featherbottom"
+ },
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"apH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/main)
+"apI" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"apJ" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/camera{
+ c_tag = "Hydroponics - Fore";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"apK" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -30
+ },
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/grass,
+/area/hydroponics)
+"apL" = (
+/obj/structure/chair/sofa/left,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"apM" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"apN" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm3";
+ name = "Room 3"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"apO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall,
+/area/crew_quarters/dorms/blue)
+"apP" = (
+/obj/structure/table,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"apQ" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Solitary Confinement";
+ req_one_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"apR" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"apS" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"apT" = (
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/construction)
+"apU" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/obj/item/gun/ballistic/revolver/russian,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"apV" = (
+/turf/closed/wall/rust,
+/area/chapel/main)
+"apW" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"apX" = (
+/obj/structure/fermenting_barrel,
+/turf/open/floor/grass,
+/area/hydroponics)
+"apY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"apZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Fitness Toilets"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"aqa" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aqb" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Secondary Construction Area";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/construction/secondary)
+"aqc" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall/r_wall,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aqd" = (
+/obj/structure/chair/sofa/right,
+/obj/machinery/camera{
+ c_tag = "Chapel - Fore"
+ },
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aqe" = (
+/obj/machinery/conveyor{
+ id = "serv_off"
+ },
+/turf/open/floor/plating,
+/area/router/service)
+"aqf" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aqg" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Fitness Room";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aqh" = (
+/obj/structure/chair/sofa/left,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aqi" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/paper_bin{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aqj" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aqk" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aql" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/bar)
+"aqm" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"aqn" = (
+/turf/closed/wall/r_wall,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aqo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"aqp" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"aqq" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aqr" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aqs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqt" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/structure/sign/poster/contraband/hacking_guide{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aqu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqv" = (
+/obj/structure/sign/poster/official/no_erp{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"aqw" = (
+/turf/closed/wall/r_wall/rust,
+/area/maintenance/solars/port)
+"aqx" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"aqy" = (
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "serv_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router/service)
+"aqz" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aqA" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"aqB" = (
+/turf/closed/wall,
+/area/hydroponics)
+"aqC" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/hydroponics)
+"aqD" = (
+/obj/machinery/vending/sustenance,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aqE" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"aqF" = (
+/turf/open/floor/plasteel,
+/area/router/sec)
+"aqG" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"aqH" = (
+/obj/machinery/power/apc{
+ name = "Security Router APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel,
+/area/router/sec)
+"aqI" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass,
+/area/hydroponics)
+"aqJ" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"aqK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aqL" = (
+/turf/closed/wall,
+/area/security/checkpoint)
+"aqM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aqN" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ name = "Service Hallway";
+ req_one_access_txt = "25;26;28;35"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"aqO" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering EVA";
+ req_access_txt = "11"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aqP" = (
+/obj/structure/chair/stool,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"aqQ" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"aqR" = (
+/obj/item/grown/bananapeel,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"aqS" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aqT" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aqU" = (
+/turf/closed/wall/r_wall,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"aqV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Purple Dorms Maintenance";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/dorms/purple)
+"aqW" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/book/manual/chef_recipes,
+/obj/item/storage/box/donkpockets,
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aqX" = (
+/obj/structure/sign/warning/fire{
+ desc = "A sign that states the labeled room's number.";
+ icon_state = "roomnum";
+ name = "Room Number 1";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"aqY" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aqZ" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"ara" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"arb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/barbershop";
+ dir = 4;
+ name = "Barbershop APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"arc" = (
+/obj/structure/closet/secure_closet/freezer/cream_pie,
+/obj/item/toy/figure/clown,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"ard" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"are" = (
+/obj/machinery/chem_heater,
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"arf" = (
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"arg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"arh" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"ari" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"arj" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/dorms/purple)
+"ark" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"arl" = (
+/obj/machinery/vending/kink,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Locker Room";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"arm" = (
+/obj/structure/chair/sofa/right,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"arn" = (
+/obj/machinery/vending/tool,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aro" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/camera{
+ c_tag = "Starboard Bow Maintenance - Starboard";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"arp" = (
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "disposal"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"arq" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"arr" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = -32
+ },
+/obj/item/stock_parts/cell/high/plus,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"ars" = (
+/obj/structure/chair/stool,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/landmark/start/bartender,
+/obj/item/clothing/under/costume/maid,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"art" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aru" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/dorms/blue)
+"arv" = (
+/obj/structure/table,
+/obj/item/modular_computer/laptop/preset/civilian{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"arw" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/public/glass{
+ name = "Crew Quarters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"arx" = (
+/obj/machinery/button/door{
+ id = "kitchenlock";
+ name = "Kitchen Lockup";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ary" = (
+/obj/machinery/food_cart,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"arz" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"arA" = (
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"arB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"arC" = (
+/obj/structure/sign/warning/fire{
+ desc = "A sign that states the labeled room's number.";
+ dir = 4;
+ icon_state = "roomnum";
+ name = "Room Number 3";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"arD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 8;
+ icon_state = "intact"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Blue Dorms Maintenance";
+ req_one_access_txt = "12;46"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/dorms/blue)
+"arE" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/central)
+"arF" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "hot loop to space"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"arG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"arH" = (
+/obj/machinery/disposal/bin{
+ name = "Detective's Mailbox"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/delivery/white,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"arI" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness)
+"arJ" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"arK" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/item/destTagger,
+/obj/machinery/button/massdriver{
+ id = "serv_out";
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/obj/machinery/requests_console{
+ department = "Service Router";
+ name = "Service Router RC";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"arL" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "serv_off"
+ },
+/turf/open/floor/plating,
+/area/router/service)
+"arM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/router/service)
+"arN" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "gas to sauna"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"arO" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"arP" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"arQ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"arR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/falsewall/reinforced{
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel,
+/area/router/sec)
+"arS" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/crew_quarters/dorms/purple)
+"arT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"arU" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/sign/warning/fire{
+ desc = "A sign that states the labeled room's number.";
+ dir = 1;
+ icon_state = "roomnum";
+ name = "Room Number 2";
+ pixel_y = -28
+ },
+/obj/machinery/camera{
+ c_tag = "Dormitories - Purple";
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"arV" = (
+/obj/machinery/vr_sleeper{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/structure/sign/poster/official/soft_cap_pop_art{
+ pixel_x = -32
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"arW" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"arX" = (
+/obj/machinery/computer/med_data{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"arY" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"arZ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"asa" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"asb" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"asc" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"asd" = (
+/turf/closed/wall/rust,
+/area/maintenance/starboard/fore)
+"ase" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Purple Dorms"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/dorms/purple)
+"asf" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Blue Dorms"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/dorms/blue)
+"asg" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"ash" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"asi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asj" = (
+/obj/effect/turf_decal/tile/red,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ask" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Prison Fore";
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/mob/living/simple_animal/mouse/brown/Tom,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"asl" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/camera{
+ c_tag = "Port Bow Solar Maintenance";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"asm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/secondary/service";
+ dir = 8;
+ name = "Service Hall APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"asn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"aso" = (
+/obj/structure/sign/warning/fire{
+ desc = "A sign that states the labeled room's number.";
+ dir = 8;
+ icon_state = "roomnum";
+ name = "Room Number 4";
+ pixel_y = -28
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Dormitories - Blue";
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"asp" = (
+/obj/structure/chair/comfy/brown,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"asq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/crew_quarters/dorms/blue)
+"asr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ass" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/light/small,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"ast" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"asu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/rust,
+/area/maintenance/disposal)
+"asv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asw" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asy" = (
+/obj/effect/landmark/start/assistant,
+/obj/machinery/holopad,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/hallway/secondary/entry)
+"asz" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Prison Bathroom";
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"asA" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/turf/open/floor/plating,
+/area/router/service)
+"asB" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/button/door{
+ id = "servblock";
+ name = "Router Access Control";
+ pixel_x = 8;
+ pixel_y = 24;
+ req_one_access_txt = "12;25;26;28;35;46"
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"asF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/security{
+ name = "Labor Camp Arrivals"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"asG" = (
+/obj/structure/sign/warning/nosmoking/circle,
+/turf/closed/wall/r_wall,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"asH" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"asI" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"asJ" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet)
+"asK" = (
+/obj/machinery/vr_sleeper{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"asL" = (
+/turf/closed/wall,
+/area/security/brig)
+"asM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"asN" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"asP" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"asQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"asR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"asS" = (
+/turf/closed/wall/r_wall,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"asT" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/mob/living/simple_animal/mouse/gray{
+ desc = "A strangely observant rodent.";
+ name = "Remy"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"asU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Router";
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"asV" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"asW" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/security/main)
+"asX" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/tape,
+/obj/item/radio/off,
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"asY" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"asZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"ata" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/security/main)
+"atb" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"atc" = (
+/turf/closed/wall,
+/area/security/main)
+"atd" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/central";
+ dir = 1;
+ name = "Service Router APC";
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"ate" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/router/service)
+"atf" = (
+/turf/closed/wall/r_wall/rust,
+/area/maintenance/starboard/central)
+"atg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/router/service)
+"ath" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/router/service)
+"ati" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plasteel,
+/area/router/service)
+"atj" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"atk" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"atl" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/router/service)
+"atm" = (
+/obj/structure/table,
+/obj/item/kitchen/rollingpin,
+/obj/item/reagent_containers/food/condiment/enzyme,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"atn" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plasteel,
+/area/router/service)
+"ato" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"atp" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm2";
+ name = "Room 2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"atq" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"atr" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm4";
+ name = "Room 4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"ats" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Clown's Office";
+ req_access_txt = "46"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/theatre/clown)
+"att" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"atu" = (
+/obj/machinery/computer/cargo/request{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router/service)
+"atv" = (
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"atw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"atx" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"aty" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"atz" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"atA" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"atB" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/item/bikehorn/rubberducky,
+/obj/structure/sign/poster/official/no_erp{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"atC" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"atD" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router/service)
+"atE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/router/service)
+"atF" = (
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"atG" = (
+/turf/open/floor/plasteel/dark,
+/area/router/service)
+"atH" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/machinery/power/apc{
+ areastring = "/area/security/processing";
+ name = "Labor Shuttle Dock APC";
+ pixel_y = -26
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/dark,
+/area/security/processing)
+"atI" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"atJ" = (
+/turf/closed/wall/rust,
+/area/crew_quarters/theatre/clown)
+"atK" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"atL" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"atM" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"atN" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"atO" = (
+/obj/structure/table,
+/obj/item/storage/bag/tray,
+/obj/item/clothing/gloves/color/white,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/item/paper/guides/cogstation/cooks,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"atP" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/obj/item/reagent_containers/food/drinks/drinkingglass,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"atQ" = (
+/obj/structure/closet/lasertag/red,
+/obj/structure/sign/poster/official/space_cops{
+ pixel_x = -32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"atR" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/machinery/vending/wardrobe/bar_wardrobe,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"atS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Bar Backroom";
+ req_access_txt = "25"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"atT" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"atU" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"atV" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"atW" = (
+/obj/machinery/disposal/bin{
+ name = "Parolee Exit"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"atX" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/stock_parts/cell/high/plus,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"atY" = (
+/obj/machinery/button/door{
+ id = "Dorm2";
+ name = "Dormitory Door Lock";
+ normaldoorcontrol = 1;
+ pixel_x = -7;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"atZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"aua" = (
+/obj/structure/chair/wood/normal,
+/obj/machinery/button/door{
+ id = "Dorm4";
+ name = "Dormitory Door Lock";
+ normaldoorcontrol = 1;
+ pixel_x = 7;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"aub" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"auc" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aud" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"aue" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/seeds/random,
+/turf/open/floor/plating,
+/area/router/service)
+"auf" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/router/service)
+"aug" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/storage/bag/plants,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"auh" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/item/storage/pill_bottle/dice,
+/obj/item/toy/cards/deck,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aui" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "Freezer AC Pump"
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"auj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"auk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"aul" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/mob/living/simple_animal/mouse/brown{
+ name = "Chewy"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"aum" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"aun" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"auo" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder{
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aup" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/bucket{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"auq" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/router/service)
+"aur" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/router/service)
+"aus" = (
+/turf/open/floor/engine,
+/area/engine/gravity_generator)
+"aut" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"auu" = (
+/obj/effect/landmark/start/botanist,
+/turf/open/floor/plasteel/dark,
+/area/router/service)
+"auv" = (
+/obj/structure/bed,
+/obj/item/bedsheet/purple,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"auw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aux" = (
+/obj/machinery/light/small,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"auy" = (
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"auz" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/chem_master,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"auA" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/beacon,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"auB" = (
+/obj/structure/dresser,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/dorms/purple)
+"auC" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"auD" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"auE" = (
+/obj/structure/bed,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"auF" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"auG" = (
+/obj/machinery/light/small,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"auH" = (
+/obj/structure/girder/displaced,
+/obj/item/reagent_containers/rag,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"auI" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"auJ" = (
+/obj/structure/bed,
+/obj/item/bedsheet/blue,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/dorms/blue)
+"auK" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"auL" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"auM" = (
+/obj/machinery/door/firedoor,
+/obj/structure/sign/poster/official/bless_this_spess{
+ pixel_x = -32
+ },
+/obj/machinery/door/airlock/public/glass,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"auN" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"auO" = (
+/obj/structure/closet/crate/freezer,
+/turf/open/floor/plating,
+/area/router/service)
+"auP" = (
+/obj/structure/chair/sofa/right,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/landmark/start/assistant/override,
+/turf/open/floor/plasteel,
+/area/security/main)
+"auQ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/public/glass,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"auR" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/engine/secure_construction";
+ dir = 1;
+ name = "Engineering Construction Area APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"auS" = (
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"auT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"auU" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs/left,
+/area/router/service)
+"auV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"auW" = (
+/obj/structure/chair/sofa/left,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/the_owl{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"auX" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/stairs/right,
+/area/router/service)
+"auY" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"auZ" = (
+/obj/structure/disposalpipe/junction/flip,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ava" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"avb" = (
+/turf/closed/wall,
+/area/hallway/secondary/civilian)
+"avc" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avd" = (
+/obj/structure/sign/warning{
+ name = "\improper COLD TEMPERATURES";
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"ave" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"avf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Starboard Bow Maintenance";
+ req_one_access_txt = "12;25;26;28;35;46"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/hallway/secondary/civilian)
+"avg" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/turnstile{
+ name = "Genpop Entrance Turnstile";
+ icon_state = "turnstile_map";
+ dir = 8;
+ req_access_txt = "69"
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"avh" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"avi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance/abandoned{
+ name = "Port Bow Maintainance";
+ req_one_access_txt = "13"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"avj" = (
+/obj/machinery/photocopier,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"avk" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/item/plant_analyzer,
+/obj/structure/table/glass,
+/obj/machinery/plantgenes{
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"avl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"avm" = (
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/civilian)
+"avn" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/white/full,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/spiderlings{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"avo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"avp" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/glass{
+ name = "East Primary Hallway";
+ req_one_access_txt = "10;12;25;26;28;35;46"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/router/service)
+"avq" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/glass{
+ name = "East Primary Hallway";
+ req_one_access_txt = "10;12;25;26;28;35;46"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/router/service)
+"avr" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"avs" = (
+/turf/closed/wall,
+/area/router/service)
+"avt" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"avu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"avv" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced/spawner/north,
+/turf/open/floor/plating,
+/area/space/nearstation)
+"avw" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/structure/sign/poster/official/wtf_is_co2{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"avx" = (
+/obj/structure/table,
+/obj/item/hand_labeler,
+/obj/item/crowbar/large,
+/obj/item/crowbar{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"avy" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced/spawner/north,
+/turf/open/floor/plating,
+/area/space/nearstation)
+"avz" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"avA" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"avB" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"avC" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avD" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/fragile,
+/obj/item/clothing/head/helmet/space/fragile,
+/obj/item/storage/belt/utility,
+/obj/item/tank/internals/air,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/service)
+"avE" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "generator to hot loop"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"avG" = (
+/turf/closed/wall,
+/area/security/prison)
+"avH" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avJ" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel,
+/area/security/main)
+"avK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avL" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"avM" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"avN" = (
+/turf/closed/wall,
+/area/crew_quarters/barbershop)
+"avO" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin/color,
+/obj/item/clothing/gloves/color/white,
+/obj/machinery/camera{
+ c_tag = "Laundry Room"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"avP" = (
+/obj/structure/reagent_dispensers/keg,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"avQ" = (
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avR" = (
+/obj/machinery/washing_machine,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"avS" = (
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"avT" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"avU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"avW" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"avX" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"avY" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/obj/machinery/turretid{
+ name = "AI Chamber turret control";
+ pixel_x = 5;
+ pixel_y = -24
+ },
+/obj/machinery/door/window/westleft{
+ name = "AI Core Access";
+ req_access_txt = "65"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"avZ" = (
+/obj/effect/landmark/start/cook,
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"awa" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible,
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"awb" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"awc" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"awe" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"awf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"awg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Civilian Wing Hallway - Fore"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"awh" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/fruit_bowl{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"awi" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"awj" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"awk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"awl" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "applebush"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"awm" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/port)
+"awn" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"awo" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"awp" = (
+/turf/closed/wall,
+/area/hydroponics/lobby)
+"awq" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plating,
+/area/space/nearstation)
+"awr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aws" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"awt" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/item/folder/red,
+/obj/machinery/door/window/westleft{
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"awu" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"awv" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
+/obj/structure/table,
+/obj/item/clothing/gloves/color/white,
+/obj/item/reagent_containers/spray/cleaner,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"aww" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awx" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hydroponics/lobby)
+"awy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Laundry Room Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/barbershop)
+"awz" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"awA" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"awB" = (
+/obj/machinery/microwave,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/crew_quarters/bar)
+"awC" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"awD" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"awE" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"awF" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"awG" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/obj/machinery/turnstile{
+ name = "Genpop Entrance Turnstile";
+ icon_state = "turnstile_map";
+ dir = 8;
+ req_access_txt = "69"
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"awI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"awJ" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/flasher/portable,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"awL" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"awM" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/item/crowbar/large,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"awN" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awO" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/port/central";
+ dir = 1;
+ name = "Central Port Maintenance APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"awP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"awQ" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"awR" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awS" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"awT" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ sortType = 7
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"awU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"awV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"awW" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "cold loop to space"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"awX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"awY" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "solitarylock";
+ name = "Solitary Lockdown";
+ pixel_x = -24;
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awZ" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axa" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"axb" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"axc" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/port)
+"axd" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"axe" = (
+/obj/structure/closet/crate,
+/obj/item/storage/belt/utility,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"axf" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"axg" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Arcade";
+ dir = 4
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"axh" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"axi" = (
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/genpop,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axj" = (
+/obj/machinery/vr_sleeper{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"axk" = (
+/obj/item/storage/pill_bottle/penis_enlargement,
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"axl" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_y = -4
+ },
+/obj/item/soap/homemade,
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"axm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/security/prison)
+"axn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"axo" = (
+/obj/structure/table,
+/obj/item/tape,
+/obj/item/wrench,
+/obj/item/radio/off,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axp" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"axq" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"axr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"axs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"axt" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"axu" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/brig)
+"axv" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/clothing/accessory/armband/deputy,
+/obj/item/encryptionkey/headset_sec,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/item/clothing/head/cowboyhat/sec,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axw" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"axx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/camera{
+ c_tag = "Fore Maintenance - Aft";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"axy" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/botanist,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"axz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axA" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/accessory/armband/science,
+/obj/item/encryptionkey/headset_sci,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axB" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/accessory/armband/medblue,
+/obj/item/encryptionkey/headset_med,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axC" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axD" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Hydroponics Storage";
+ req_access_txt = "35"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"axE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/kudzu{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"axF" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"axG" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"axH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"axI" = (
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"axJ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"axK" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axL" = (
+/obj/structure/sign/warning{
+ name = "\improper CONSTRUCTION AREA";
+ pixel_y = 32
+ },
+/obj/item/assembly/prox_sensor,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"axM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"axN" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axO" = (
+/obj/structure/weightmachine/stacklifter,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"axP" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"axQ" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"axR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plating,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"axS" = (
+/obj/structure/closet/crate,
+/obj/item/storage/box/lights/mixed,
+/obj/item/clothing/mask/gas,
+/obj/item/cane,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"axT" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/storage/crayons{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"axV" = (
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"axW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"axZ" = (
+/obj/machinery/requests_console{
+ department = "AI";
+ departmentType = 5;
+ pixel_y = 28
+ },
+/obj/machinery/door/window/eastright{
+ name = "AI Core Access";
+ req_access_txt = "65"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aya" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "AI Core Exterior";
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ayb" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"ayc" = (
+/obj/structure/kitchenspike,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"ayd" = (
+/turf/closed/wall,
+/area/hallway/primary/port/fore)
+"aye" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ayf" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"ayg" = (
+/obj/machinery/vending/wardrobe/hydro_wardrobe,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"ayh" = (
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"ayi" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/paper_bin{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ayj" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/security/brig)
+"ayk" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"ayl" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aym" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"ayn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/turf/open/floor/plating,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"ayo" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"ayp" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"ayq" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"ayr" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"ays" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/soda_cans/space_up,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ayt" = (
+/obj/structure/closet/crate,
+/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"ayu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ayv" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"ayw" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Service Hallway - Fore";
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"ayx" = (
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"ayy" = (
+/turf/open/floor/carpet,
+/area/chapel/main)
+"ayz" = (
+/obj/structure/chair/pew/right{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"ayA" = (
+/obj/structure/window/reinforced,
+/obj/structure/destructible/cult/tome,
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"ayB" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"ayC" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ayD" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"ayE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hydroponics/lobby)
+"ayF" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"ayG" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"ayH" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/mob/living/simple_animal/cockroach,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"ayI" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ayJ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/port)
+"ayK" = (
+/obj/structure/flora/tree/jungle/small,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"ayL" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"ayM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ayN" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ayO" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"ayP" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"ayQ" = (
+/obj/machinery/vr_sleeper{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"ayR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Wing";
+ req_access_txt = "2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ayS" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ayT" = (
+/obj/machinery/vending/security,
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ayU" = (
+/obj/vehicle/ridden/secway,
+/obj/effect/turf_decal/bot,
+/obj/item/key/security,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ayV" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"ayW" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ayX" = (
+/obj/structure/closet/wardrobe/mixed,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"ayY" = (
+/obj/machinery/vending/medical,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"ayZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aza" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/hand_labeler,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"azb" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"azc" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"azd" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/clothing/mask/gas,
+/obj/machinery/camera{
+ c_tag = "Central Port Maintenace - Port"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aze" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "AI Chamber APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"azf" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"azg" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"azh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"azi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Maintenance";
+ req_access_txt = "63;12"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"azj" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"azk" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"azl" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Brig Aft";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"azm" = (
+/obj/structure/chair/stool/bar,
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"azn" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"azo" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"azp" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"azq" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plating,
+/area/space/nearstation)
+"azr" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"azs" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"azt" = (
+/obj/structure/chair/pew/right{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"azu" = (
+/obj/structure/chair/pew{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"azv" = (
+/obj/machinery/door/window/westleft{
+ name = "Holy Driver";
+ req_one_access_txt = "22"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "Holydriver"
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"azw" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "Holydriver"
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"azx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"azy" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"azz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"azA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"azB" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"azC" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/barbershop)
+"azD" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"azE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"azF" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/storage/tools)
+"azG" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"azH" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/sign/departments/botany{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"azI" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"azJ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"azK" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/window/westleft{
+ name = "Boxing Ring"
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"azL" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"azM" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 2
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"azN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"azO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"azP" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"azQ" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"azR" = (
+/obj/structure/closet/secure_closet/bar,
+/obj/structure/disposalpipe/segment,
+/obj/item/clothing/under/costume/maid,
+/obj/item/stack/spacecash/c10,
+/obj/item/clothing/under/suit/waiter,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"azS" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/cable_coil/red{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil/red,
+/obj/item/wrench,
+/obj/item/screwdriver{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"azT" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"azU" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"azV" = (
+/obj/structure/kitchenspike,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"azW" = (
+/obj/effect/landmark/start/botanist,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"azX" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"azY" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ areastring = "/area/hydroponics/lobby";
+ dir = 4;
+ name = "Hydroponics Lobby APC";
+ pixel_x = 24
+ },
+/obj/item/clothing/suit/beekeeper_suit,
+/obj/item/melee/flyswatter,
+/obj/item/clothing/head/beekeeper_head,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"azZ" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "chapelgun";
+ name = "Holy Driver"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"aAa" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen)
+"aAb" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aAc" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aAd" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/processing)
+"aAe" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aAf" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/mineral_door/wood,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/barbershop)
+"aAg" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
+/obj/machinery/gibber,
+/obj/machinery/camera{
+ c_tag = "Kitchen Coldroom";
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"aAh" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/easel,
+/obj/item/canvas/nineteenXnineteen,
+/obj/item/storage/crayons,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aAi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aAj" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aAk" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aAl" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aAm" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/door/airlock/freezer{
+ name = "Kitchen Coldroom";
+ req_access_txt = "28"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"aAn" = (
+/obj/machinery/vending/wardrobe/sec_wardrobe,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aAo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/sign/poster/official/twelve_gauge{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"aAp" = (
+/obj/machinery/computer/security/telescreen/entertainment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/bar)
+"aAq" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"aAr" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aAs" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aAt" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/machinery/camera{
+ c_tag = "Hydroponics Storage";
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aAu" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/circuitboard/machine/hydroponics,
+/obj/item/circuitboard/machine/hydroponics,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aAv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/vending/security,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aAw" = (
+/obj/machinery/door/poddoor{
+ id = "chapelgun";
+ name = "Chapel Launcher Door"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/chapel/main)
+"aAx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aAy" = (
+/obj/machinery/atmospherics/components/binary/circulator{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aAz" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aAA" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aAB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aAC" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aAD" = (
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aAE" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aAF" = (
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aAG" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aAH" = (
+/obj/structure/chair/pew{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aAI" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"aAJ" = (
+/obj/structure/transit_tube/station/reverse/flipped{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"aAK" = (
+/obj/structure/transit_tube/horizontal,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"aAL" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aAM" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aAN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aAO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/crew_quarters/toilet)
+"aAP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aAQ" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"aAR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Telecomms Access Maintenance";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aAS" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/accessory/armband/engine,
+/obj/item/encryptionkey/headset_eng,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aAT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aAU" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aAV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aAW" = (
+/obj/machinery/chem_master/condimaster{
+ name = "BrewMaster 3000"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aAX" = (
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aAY" = (
+/obj/structure/chair,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aAZ" = (
+/obj/structure/chair,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aBa" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aBb" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aBc" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/suit/beekeeper_suit,
+/obj/item/melee/flyswatter,
+/obj/item/clothing/head/beekeeper_head,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aBd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aBe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aBf" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aBg" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aBh" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aBi" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aBj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"aBk" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/crew_quarters/barbershop)
+"aBl" = (
+/obj/structure/chair/comfy/brown,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/barbershop)
+"aBm" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Dormitories"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aBn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aBo" = (
+/obj/structure/table,
+/obj/item/storage/pill_bottle/epinephrine,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/barbershop)
+"aBp" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/computer/pod/old{
+ density = 0;
+ icon = 'icons/obj/airlock_machines.dmi';
+ icon_state = "airlock_control_standby";
+ id = "chapelgun";
+ name = "Mass Driver Controller";
+ pixel_x = 24
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "Holydriver"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aBq" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aBr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/barbershop)
+"aBs" = (
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aBt" = (
+/obj/structure/chair/comfy/brown,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/barbershop)
+"aBu" = (
+/obj/item/flashlight/lantern,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aBv" = (
+/obj/structure/chair/pew/left{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aBw" = (
+/obj/structure/chair/comfy/brown,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/barbershop)
+"aBx" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aBy" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-16"
+ },
+/obj/machinery/camera{
+ c_tag = "Port Bow Hall - Central";
+ dir = 4;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aBz" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBA" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/healthanalyzer,
+/obj/item/storage/hypospraykit/fire{
+ pixel_x = -4
+ },
+/obj/item/storage/hypospraykit/brute{
+ pixel_x = 4
+ },
+/obj/structure/sign/poster/official/nt_storm{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aBB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aBC" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aBD" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aBE" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aBF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aBG" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aBH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aBJ" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aBK" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aBL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBM" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/abandoned_gambling_den";
+ name = "Arcade APC";
+ pixel_y = -26
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBN" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBO" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ name = "Hydroponics Storage";
+ req_access_txt = "35"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aBP" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aBQ" = (
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aBR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aBS" = (
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aBT" = (
+/obj/item/razor,
+/obj/item/toy/figure/chef{
+ pixel_x = -6
+ },
+/obj/item/toy/figure/bartender{
+ pixel_x = 4
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"aBU" = (
+/obj/structure/window/reinforced/tinted,
+/obj/structure/rack,
+/obj/item/soap/nanotrasen,
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aBV" = (
+/obj/item/flashlight/lantern,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aBW" = (
+/obj/structure/window/reinforced,
+/obj/item/clothing/head/hardhat/cakehat,
+/obj/structure/table/wood/fancy,
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"aBX" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aBY" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera{
+ c_tag = "Security Maintenance";
+ dir = 1;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aBZ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aCa" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/main)
+"aCb" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCc" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/clothing/accessory/armband/cargo,
+/obj/item/encryptionkey/headset_cargo,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCd" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/highcap/fifteen_k{
+ areastring = /area/maintenance/solars/port;
+ dir = 1;
+ name = "Port Solars APC";
+ pixel_y = 26
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aCe" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"aCf" = (
+/obj/machinery/light/small,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"aCg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/landmark/start/depsec/supply,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCh" = (
+/obj/structure/mineral_door/wood{
+ name = "Barbershop"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aCi" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCj" = (
+/obj/machinery/door/window/southleft{
+ name = "Showers"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aCk" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/crew_quarters/toilet/fitness)
+"aCl" = (
+/obj/structure/closet/bombcloset/security,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCm" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aCn" = (
+/obj/machinery/vending/boozeomat,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aCo" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"aCp" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/fitness)
+"aCq" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/closed/wall,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"aCr" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aCs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aCt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCu" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"aCv" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"aCw" = (
+/obj/structure/window/reinforced/tinted,
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aCx" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aCy" = (
+/obj/structure/table/wood,
+/obj/item/storage/book/bible,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aCz" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aCA" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aCB" = (
+/obj/structure/chair/stool/bar,
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"aCC" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/security/prison)
+"aCD" = (
+/obj/item/trash/plate,
+/obj/item/kitchen/fork,
+/obj/structure/table/wood/fancy,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"aCE" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "briglockdown";
+ name = "Brig Lockdown";
+ pixel_x = 24;
+ req_access_txt = "2"
+ },
+/obj/effect/turf_decal/arrows/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCF" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"aCG" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCH" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/arrows/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/arrows/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCI" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/sign/departments/botany{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aCJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/chapel/main)
+"aCK" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/security/prison)
+"aCL" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/paper/guides/cogstation/letter_sec,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aCM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/fun_police{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aCN" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aCO" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aCP" = (
+/obj/structure/chair/sofa/left,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/landmark/start/botanist,
+/obj/machinery/camera{
+ c_tag = "Hydroponics Lobby"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aCQ" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/harebell,
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aCR" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/modular_computer/laptop/preset/civilian{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aCS" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aCT" = (
+/obj/machinery/disposal/bin{
+ name = "Hydroponics Mailbox"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/delivery/white,
+/obj/machinery/requests_console{
+ department = "Hydroponics";
+ name = "Hydroponics RC";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aCU" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plating,
+/area/space/nearstation)
+"aCV" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aCW" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aCX" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aCY" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/biogenerator,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aCZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/electricshock,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aDa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/barbershop)
+"aDb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint)
+"aDc" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Barbershop";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aDd" = (
+/obj/structure/chair/office/dark,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aDe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aDf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aDg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aDh" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Port Bow Primary Hallway"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aDi" = (
+/obj/structure/closet/secure_closet/evidence,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aDj" = (
+/obj/structure/closet/wardrobe/green,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aDk" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/door/window/eastright{
+ name = "Bathroom Stall"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aDl" = (
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aDm" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"aDn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"aDo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aDp" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/barbershop)
+"aDq" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aDr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Civilian Wing Hallway"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aDs" = (
+/obj/effect/turf_decal/tile/red,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aDt" = (
+/obj/structure/closet{
+ name = "Evidence Closet 1"
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aDu" = (
+/obj/structure/closet{
+ name = "Evidence Closet 2"
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aDv" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aDw" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aDx" = (
+/obj/structure/closet/crate,
+/obj/item/gun/ballistic/shotgun/toy/unrestricted,
+/obj/item/gun/ballistic/shotgun/toy/unrestricted,
+/obj/item/toy/gun,
+/obj/item/toy/sword,
+/obj/item/toy/sword,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"aDy" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aDz" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/sign/departments/restroom{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aDA" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aDB" = (
+/obj/structure/closet{
+ name = "Evidence Closet 3"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aDC" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aDD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"aDE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aDF" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"aDG" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aDH" = (
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aDI" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aDJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aDK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aDL" = (
+/obj/structure/closet{
+ name = "Evidence Closet 4"
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aDM" = (
+/turf/closed/wall,
+/area/maintenance/central)
+"aDN" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aDO" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aDP" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/full,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aDQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aDR" = (
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aDS" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/barbershop)
+"aDT" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aDU" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aDV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aDW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/obj/machinery/turnstile{
+ dir = 4;
+ name = "Genpop Exit Turnstile";
+ req_access_txt = "70"
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aDX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aDY" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aDZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aEa" = (
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"aEb" = (
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"aEc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "63"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aEd" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aEe" = (
+/obj/structure/transit_tube/horizontal,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aEf" = (
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Satellite Exterior - Port Bow";
+ dir = 1;
+ network = list("tcomms")
+ },
+/turf/open/space/basic,
+/area/space)
+"aEg" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"aEh" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Maintenance";
+ req_one_access_txt = "12;46"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/port/fore)
+"aEi" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aEj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aEk" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aEl" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aEm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aEn" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aEo" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/fashion{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aEp" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aEq" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aEr" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/lighter,
+/obj/item/clothing/glasses/sunglasses{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aEs" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aEt" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aEu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aEv" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aEw" = (
+/obj/structure/chair,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aEx" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aEy" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aEz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aEA" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aEB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aEC" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aED" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/security_officer,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aEE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aEF" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"aEG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aEH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aEI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aEJ" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-08"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aEK" = (
+/obj/structure/table,
+/obj/item/razor,
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aEL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aEM" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/poppy,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aEN" = (
+/obj/structure/table,
+/obj/machinery/light,
+/obj/item/razor,
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aEO" = (
+/obj/structure/table,
+/obj/item/clothing/accessory/pocketprotector/cosmetology,
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aEP" = (
+/obj/item/kirbyplants,
+/turf/open/floor/wood,
+/area/crew_quarters/barbershop)
+"aEQ" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/central)
+"aER" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aES" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aET" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aEU" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aEV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aEW" = (
+/obj/structure/table,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aEX" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aEY" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/turf_decal/bot,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aEZ" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/central";
+ dir = 1;
+ name = "Emergency Storage APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFa" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 10
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFb" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFc" = (
+/obj/structure/table,
+/obj/item/clothing/suit/toggle/owlwings,
+/obj/item/clothing/under/costume/owl,
+/obj/item/clothing/mask/gas/owl_mask,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aFd" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFe" = (
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aFf" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=serv";
+ location = "sec1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aFg" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aFh" = (
+/obj/structure/chair/pew/right{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aFi" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=market";
+ location = "sec2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aFj" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/hos)
+"aFk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/security/checkpoint)
+"aFl" = (
+/obj/structure/chair/sofa/right,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/reagent_containers/glass/bottle/diethylamine,
+/obj/structure/sign/poster/official/hydro_ad{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFm" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/hos)
+"aFn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aFo" = (
+/obj/machinery/door/window/southleft{
+ name = "Weightroom"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"aFp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Bar"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aFq" = (
+/obj/structure/table/wood,
+/obj/item/candle{
+ pixel_x = 4
+ },
+/obj/item/candle{
+ pixel_y = 8
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aFr" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aFs" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aFt" = (
+/obj/structure/table/glass,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aFu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFv" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"aFw" = (
+/obj/structure/table,
+/obj/item/multitool,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/camera{
+ c_tag = "Central Maintenance - Power Monitoring";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aFx" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/item/folder/blue,
+/obj/machinery/door/window/westleft{
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFy" = (
+/obj/machinery/computer/monitor,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aFz" = (
+/obj/structure/table,
+/obj/item/multitool{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/crowbar,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aFA" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/landmark/start/botanist,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFB" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFC" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aFD" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=AftH";
+ location = "Hydroponics"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFE" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/techstorage/tcomms,
+/turf/open/floor/circuit,
+/area/bridge)
+"aFF" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aFG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/prison)
+"aFH" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFI" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "Primary Tool Storage"
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aFJ" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/watertank,
+/obj/item/grenade/chem_grenade/antiweed,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFK" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/storage/box/beakers{
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/dropper,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/item/pen/blue{
+ pixel_x = -4;
+ pixel_y = -2
+ },
+/obj/item/pen/red{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFL" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/chem_master,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aFM" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/crew_quarters/barbershop)
+"aFN" = (
+/obj/structure/flora/junglebush/b,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aFO" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aFQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFT" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aFU" = (
+/obj/machinery/atmospherics/components/binary/circulator/cold{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aFV" = (
+/obj/structure/window/reinforced,
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"aFW" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aFX" = (
+/obj/machinery/computer/security/hos{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aFY" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aFZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/security/prison)
+"aGa" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"aGb" = (
+/obj/machinery/suit_storage_unit/hos,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aGc" = (
+/obj/item/coin/iron,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/port/fore)
+"aGd" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aGe" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aGf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aGg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aGh" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/landmark/start/security_officer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aGi" = (
+/obj/machinery/porta_turret/ai{
+ dir = 1;
+ req_access = list(16)
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aGj" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/item/storage/toolbox/emergency{
+ pixel_y = 4
+ },
+/obj/item/analyzer{
+ pixel_y = -4
+ },
+/obj/item/flashlight{
+ pixel_y = 4
+ },
+/obj/item/flashlight{
+ pixel_y = 4
+ },
+/obj/item/extinguisher,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aGk" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aGl" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/item/clipboard,
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aGm" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/machinery/door/window/southright{
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aGn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/bridge)
+"aGo" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/screwdriver,
+/obj/item/wrench,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/multitool,
+/obj/item/multitool,
+/obj/item/wrench,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aGp" = (
+/mob/living/simple_animal/mouse/brown,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aGq" = (
+/turf/closed/wall/r_wall,
+/area/bridge)
+"aGr" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aGs" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/bridge)
+"aGt" = (
+/obj/machinery/computer/card/minor/hos{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aGu" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aGv" = (
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aGw" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ name = "Hydroponics Lobby";
+ req_access_txt = "35"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"aGx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aGy" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aGz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/bridge";
+ name = "Bridge APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aGA" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aGB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aGC" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aGD" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/toilet";
+ dir = 8;
+ name = "Dormitory Toilets APC";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aGE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aGF" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aGG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aGH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medical Booth";
+ req_access_txt = "5"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aGI" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/pill/patch/silver_sulf{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = 4
+ },
+/obj/item/reagent_containers/pill/patch/styptic{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aGJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aGK" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/central";
+ dir = 1;
+ name = "Head of Security's APC";
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Head of Security's Office";
+ pixel_x = 22
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aGL" = (
+/obj/structure/table/wood,
+/obj/item/storage/firstaid/regular,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aGM" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/structure/sign/warning/securearea{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aGN" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aGO" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aGP" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aGQ" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aGR" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/store/cake/chocolate,
+/obj/machinery/door/poddoor/preopen{
+ id = "kitchenlock";
+ name = "Kitchen Lockup"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/kitchen)
+"aGS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aGT" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aGU" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aGV" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/table,
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aGW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/bridge)
+"aGX" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aGY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -30
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"aGZ" = (
+/turf/open/floor/plasteel/stairs/medium,
+/area/hallway/secondary/entry)
+"aHa" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aHb" = (
+/obj/structure/chair,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aHc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"aHd" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aHe" = (
+/obj/structure/sign/poster/official/bless_this_spess{
+ pixel_y = -32
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aHf" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aHg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aHh" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aHi" = (
+/obj/structure/chair/stool,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aHj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ name = "Starboard Bow Solar Exterior Airlock";
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"aHk" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aHl" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aHm" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aHn" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aHo" = (
+/obj/structure/rack,
+/obj/item/circuitboard/machine/telecomms/relay,
+/obj/item/circuitboard/machine/telecomms/server,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"aHp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aHq" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/porta_turret/ai{
+ dir = 1;
+ req_access = list(16)
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"aHr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/clown{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aHs" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/primary/port/fore)
+"aHt" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/port/fore)
+"aHu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aHv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aHw" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aHx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/security/detectives_office)
+"aHy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/security/detectives_office)
+"aHz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/detectives_office)
+"aHA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"aHB" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/item/storage/toolbox/emergency{
+ pixel_y = 4
+ },
+/obj/item/wrench,
+/obj/item/wrench{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/light/tube,
+/obj/item/light/tube{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/extinguisher,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aHC" = (
+/obj/machinery/vending/cola/random,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aHD" = (
+/obj/machinery/modular_computer/console/preset/engineering,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aHE" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"aHF" = (
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aHG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aHH" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aHI" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aHJ" = (
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aHK" = (
+/obj/structure/musician/piano,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aHL" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/stack/medical/gauze,
+/obj/item/reagent_containers/blood,
+/obj/item/stack/medical/suture,
+/obj/item/stack/medical/mesh,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aHM" = (
+/turf/open/floor/plasteel,
+/area/bridge)
+"aHN" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Interrogation Room";
+ pixel_x = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aHO" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aHP" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/hos)
+"aHQ" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aHR" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/central";
+ dir = 1;
+ name = "Security Office APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aHS" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aHT" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aHU" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/mineral_door/woodrustic{
+ name = "Nature Preserve"
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aHV" = (
+/obj/structure/flora/junglebush/large,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aHW" = (
+/obj/structure/chair/comfy/brown,
+/obj/effect/landmark/start/head_of_security,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aHX" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aHY" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/cryopod)
+"aHZ" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Security Office Desk";
+ req_one_access_txt = "63"
+ },
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stamp,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aIa" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aIb" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/flip,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aIc" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aId" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIe" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aIf" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aIg" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aIh" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aIi" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIj" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIk" = (
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIl" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aIm" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/requests_console{
+ department = "Kitchen";
+ departmentType = 2;
+ name = "Kitchen RC";
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aIn" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/security/prison)
+"aIo" = (
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aIp" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aIq" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aIr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/folder/red,
+/obj/item/stamp/hos,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aIs" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aIt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aIu" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIv" = (
+/obj/machinery/cryopod{
+ dir = 8
+ },
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"aIw" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aIx" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aIz" = (
+/obj/machinery/cryopod{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aIA" = (
+/obj/machinery/computer/med_data{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aIB" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aIC" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"aID" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"aIE" = (
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aIF" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/recharger,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aIG" = (
+/obj/structure/table,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aIH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aII" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aIJ" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIK" = (
+/obj/structure/table/wood,
+/obj/item/camera,
+/obj/item/folder,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aIL" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aIM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"aIN" = (
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aIO" = (
+/obj/structure/sign/directions/medical{
+ dir = 8;
+ pixel_y = -24
+ },
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/structure/sign/directions/supply{
+ dir = 8;
+ pixel_y = -40
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIP" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aIQ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aIR" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/botanist,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aIS" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/ai,
+/obj/item/radio/intercom{
+ freerange = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = 27;
+ pixel_y = -7
+ },
+/obj/item/radio/intercom{
+ freerange = 1;
+ name = "Common Channel";
+ pixel_x = 27;
+ pixel_y = 5
+ },
+/obj/machinery/button/door{
+ id = "AIShutter";
+ layer = 3.6;
+ name = "AI Core Shutter Control";
+ pixel_x = 24;
+ pixel_y = -24
+ },
+/obj/item/radio/intercom{
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = -24;
+ pixel_y = -8
+ },
+/obj/machinery/button/door{
+ id = "AIChamberShutter";
+ layer = 3.6;
+ name = "AI Chamber Shutter Control";
+ pixel_x = -24;
+ pixel_y = -24
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aIT" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aIU" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aIV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Monitoring";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aIW" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aIX" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aIY" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aIZ" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aJa" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aJb" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aJc" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aJd" = (
+/turf/closed/wall,
+/area/chapel/office)
+"aJe" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aJf" = (
+/obj/machinery/camera{
+ c_tag = "Chapel - Aft";
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aJg" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aJh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aJi" = (
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aJj" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/aft";
+ dir = 8;
+ name = "Chapel APC";
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aJk" = (
+/obj/structure/table/wood,
+/obj/item/candle,
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aJl" = (
+/obj/structure/bodycontainer/crematorium{
+ id = "foo"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aJm" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aJn" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aJo" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aJp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "AI";
+ network = list("minisat")
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aJq" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/storage/box/beakers{
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aJr" = (
+/obj/structure/sign/directions/command{
+ dir = 8;
+ pixel_y = -32
+ },
+/obj/structure/sign/directions/security{
+ dir = 8;
+ pixel_y = -24
+ },
+/obj/structure/sign/directions/science{
+ dir = 8;
+ pixel_y = -40
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aJs" = (
+/obj/structure/noticeboard{
+ name = "Hydroponics Requests Board";
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aJt" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/toy/figure/syndie,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aJu" = (
+/obj/structure/chair/comfy/brown,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aJv" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aJw" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aJx" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aJy" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs/right,
+/area/security/brig)
+"aJz" = (
+/obj/structure/chair/comfy/brown,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aJA" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Port Bow Hall - Dorms Access";
+ network = list("ss13","rd")
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aJB" = (
+/obj/machinery/computer/security/mining{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aJC" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aJD" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/item/storage/belt/medical,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/clothing/suit/space/eva/paramedic,
+/obj/item/clothing/head/helmet/space/eva/paramedic,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"aJE" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"aJF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aJG" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/bridge)
+"aJH" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aJI" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/item/shovel/spade,
+/obj/item/wrench,
+/obj/item/cultivator,
+/obj/item/crowbar,
+/obj/item/wirecutters,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/hatchet,
+/obj/machinery/power/apc/highcap/five_k{
+ areastring = "/area/hydroponics";
+ name = "Hydroponics APC";
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aJJ" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aJK" = (
+/obj/structure/filingcabinet,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aJL" = (
+/turf/open/floor/circuit,
+/area/bridge)
+"aJM" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/circuit,
+/area/bridge)
+"aJN" = (
+/obj/machinery/camera{
+ c_tag = "Security - Prison Aft";
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aJO" = (
+/obj/structure/chair/stool,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aJP" = (
+/obj/structure/chair/comfy/teal,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/sign/departments/botany{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Civilian Wing Hallway - Starboard";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aJQ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aJR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"aJS" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"aJT" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aJU" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aJV" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"aJW" = (
+/obj/machinery/cryopod{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"aJX" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/modular_computer/console/preset/civilian{
+ dir = 8
+ },
+/turf/open/floor/circuit,
+/area/bridge)
+"aJY" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/storage/box/lights/mixed,
+/obj/item/stack/sheet/metal/fifty{
+ pixel_x = -3;
+ pixel_y = -7
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aJZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aKa" = (
+/obj/structure/chair/stool,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aKb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/secondary/civilian)
+"aKc" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aKd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aKe" = (
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"aKf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/storage/emergency/generic)
+"aKg" = (
+/turf/open/floor/plasteel/stairs/right,
+/area/hallway/secondary/entry)
+"aKh" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aKi" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aKj" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aKk" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start/detective,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aKl" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aKm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Emergency Storage"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aKn" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aKo" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aKp" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aKq" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Chapel"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/chapel/main)
+"aKr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/public/glass{
+ name = "Emergency Storage"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/storage/emergency/generic)
+"aKs" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/obj/item/reagent_containers/food/drinks/drinkingglass,
+/obj/item/reagent_containers/rag,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"aKt" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aKu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/storage/emergency/generic)
+"aKv" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aKw" = (
+/obj/structure/table,
+/obj/item/storage/pill_bottle/dice,
+/obj/item/toy/cards/deck,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aKx" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aKy" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/rnd/production/techfab/department/security,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aKz" = (
+/turf/closed/wall,
+/area/storage/emergency/generic)
+"aKA" = (
+/obj/structure/table/wood,
+/obj/machinery/button/door{
+ id = "bridge blast";
+ name = "Bridge Blast Door Control";
+ pixel_x = -6;
+ pixel_y = -3;
+ req_access_txt = "19"
+ },
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aKB" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"aKC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Wing";
+ req_access_txt = "2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aKD" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aKE" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aKF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Telecommunications Control Room";
+ req_access_txt = "19;61"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aKG" = (
+/obj/structure/table/wood,
+/obj/item/storage/toolbox/emergency,
+/obj/item/crowbar/red,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aKH" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/full,
+/obj/machinery/camera{
+ c_tag = "Bridge - Fore";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aKI" = (
+/obj/structure/closet/cabinet,
+/obj/item/screwdriver,
+/obj/item/storage/crayons,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aKJ" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aKK" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/vending/snack/blue,
+/turf/open/floor/plasteel,
+/area/bridge)
+"aKL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aKM" = (
+/obj/machinery/camera{
+ c_tag = "Chapel - Starboard";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aKN" = (
+/obj/structure/chair/pew/left{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aKO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/stairs/left,
+/area/security/brig)
+"aKP" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/bridge)
+"aKQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/office)
+"aKR" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aKS" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aKT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"aKU" = (
+/obj/structure/bodycontainer/morgue,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aKV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aKW" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aKX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Morgue";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aKY" = (
+/obj/structure/chair/sofa/left,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aKZ" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"aLa" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hos"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
+"aLb" = (
+/obj/item/toy/prize/honk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aLc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/port/fore)
+"aLd" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aLg" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aLh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aLj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aLl" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/vending/autodrobe,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aLm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aLn" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/flip,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aLo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLp" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aLq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLs" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aLt" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Visitation Maintainance";
+ req_one_access_txt = "63"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"aLv" = (
+/obj/machinery/computer/cryopod{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aLw" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-06"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aLx" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aLy" = (
+/obj/machinery/modular_computer/console/preset/command{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aLz" = (
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLA" = (
+/obj/item/candle{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/candle{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aLB" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aLC" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLD" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aLE" = (
+/obj/machinery/computer/communications{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aLF" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aLG" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aLH" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"aLI" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/PDAs,
+/obj/item/storage/box/ids{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aLJ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aLK" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"aLL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aLM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aLN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/morgue{
+ name = "Confession Booth"
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/main)
+"aLO" = (
+/obj/item/toy/talking/owl,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aLP" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = -26
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aLQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel,
+/area/bridge)
+"aLR" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/storage/box/bodybags{
+ pixel_y = 4
+ },
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aLS" = (
+/obj/structure/disposaloutlet{
+ dir = 8;
+ name = "Corpse Outlet"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/delivery/red,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aLT" = (
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aLU" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/vending/assist,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aLV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Central Maintenance - Aft";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aLW" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aLX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/security/main)
+"aLY" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aLZ" = (
+/mob/living/simple_animal/chicken{
+ desc = "At least it isn't a court kangaroo.";
+ name = "amusing cluck";
+ real_name = "amusing cluck"
+ },
+/turf/open/floor/carpet,
+/area/security/courtroom)
+"aMa" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aMb" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMc" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4;
+ sortType = 20
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMd" = (
+/obj/machinery/vending/wardrobe/chap_wardrobe,
+/obj/machinery/camera{
+ c_tag = "Chapel Office";
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aMe" = (
+/obj/machinery/door/window/northleft{
+ name = "Game Room"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aMf" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aMh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/reagent_containers/food/drinks/bottle/champagne,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_y = -32
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aMi" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aMj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"aMk" = (
+/obj/structure/closet/crate/coffin,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"aMl" = (
+/obj/effect/landmark/start/bartender,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"aMm" = (
+/obj/machinery/computer/med_data,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"aMn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/sign/warning{
+ name = "\improper WARNING: MOVING MACHINERY"
+ },
+/turf/closed/wall,
+/area/maintenance/department/chapel)
+"aMo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"aMp" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aMq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aMr" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Civilian Wing Hallway - Port"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMs" = (
+/turf/closed/wall,
+/area/maintenance/department/chapel)
+"aMt" = (
+/obj/machinery/atmospherics/components/unary/tank/air,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"aMu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aMv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aMw" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aMx" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"aMy" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"aMz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"aMA" = (
+/turf/closed/wall,
+/area/janitor)
+"aMB" = (
+/turf/closed/wall/r_wall,
+/area/janitor)
+"aMC" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/fork,
+/obj/item/reagent_containers/food/snacks/salad/herbsalad,
+/obj/item/candle{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"aMD" = (
+/turf/closed/wall/rust,
+/area/maintenance/disposal)
+"aME" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4;
+ sortType = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMF" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aMG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Central Starboard Maintenance";
+ dir = 8;
+ pixel_y = -22
+ },
+/mob/living/simple_animal/hostile/retaliate/bat,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"aMH" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aMI" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal)
+"aMJ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/effect/landmark/start/assistant,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aMK" = (
+/obj/vehicle/ridden/wheelchair,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aML" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/chapel/office)
+"aMM" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/sign/poster/official/help_others{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMN" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aMO" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMP" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/bottle/wine,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aMQ" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aMR" = (
+/obj/effect/landmark/start/chaplain,
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aMS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aMT" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMU" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aMV" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aMW" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aMX" = (
+/obj/structure/chair/comfy/brown{
+ buildstackamount = 0;
+ dir = 1
+ },
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aMY" = (
+/obj/structure/closet,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"aMZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aNa" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aNb" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aNc" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/item/mop,
+/obj/item/storage/box/mousetraps,
+/obj/item/storage/box/mousetraps,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel,
+/area/janitor)
+"aNd" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/paper_bin,
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"aNe" = (
+/obj/structure/closet/crate,
+/obj/item/reagent_containers/food/snacks/spaghetti,
+/obj/item/reagent_containers/food/snacks/spaghetti,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"aNf" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/clipboard,
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"aNg" = (
+/obj/machinery/computer/cargo/request{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aNh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aNi" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aNj" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/table,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aNk" = (
+/obj/structure/table/glass,
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/pen{
+ pixel_y = 8
+ },
+/obj/item/pen,
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"aNl" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/obj/item/reagent_containers/food/condiment/pack/ketchup{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/condiment/pack/mustard{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/candle{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"aNm" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aNn" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/reagent_containers/food/drinks/shaker,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aNo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "AIShutter";
+ name = "AI Core Shutters"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"aNp" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aNq" = (
+/obj/machinery/door/window/northright{
+ name = "Chapel Office";
+ req_access_txt = "22"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aNr" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aNs" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aNt" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aNu" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/bar)
+"aNv" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aNw" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"aNx" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/securearea,
+/turf/open/floor/plating,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"aNy" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aNz" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aNA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "2"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/security/main)
+"aNB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Port Bow Primary Hallway"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aNC" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Control Room";
+ network = list("tcomms");
+ pixel_x = 22
+ },
+/obj/machinery/power/apc/highcap/fifteen_k{
+ areastring = "/area/tcommsat/server";
+ dir = 1;
+ name = "Telecomms Server APC";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/server)
+"aND" = (
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aNE" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aNF" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aNG" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/table,
+/obj/item/taperecorder,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aNH" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Exterior Engineering Access";
+ req_access_txt = "11;13"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aNI" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aNJ" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aNK" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aNL" = (
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aNM" = (
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security RC";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aNN" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aNO" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"aNP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aNQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/securearea,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"aNR" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/hop)
+"aNS" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"aNT" = (
+/turf/closed/wall/r_wall,
+/area/teleporter)
+"aNU" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aNV" = (
+/obj/structure/table,
+/obj/item/locator,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"aNW" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"aNX" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/item/instrument/guitar,
+/obj/machinery/camera{
+ c_tag = "Bar - Port";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aNY" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=sec2";
+ location = "bar"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aNZ" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aOa" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "E.V.A. Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aOb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "E.V.A. Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aOc" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aOd" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aOe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"aOf" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aOg" = (
+/obj/structure/chair/comfy/teal{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aOh" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aOi" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aOj" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aOk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aOl" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aOm" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/structure/table/wood,
+/obj/item/toy/windupToolbox,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aOn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aOo" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/primary/port/fore";
+ dir = 4;
+ name = "Port Bow Primary Hallway APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aOp" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1;
+ sortType = 31
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aOq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/effect/turf_decal/delivery,
+/obj/item/extinguisher,
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aOr" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/sign/warning/securearea{
+ pixel_x = -32
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-21";
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/bridge)
+"aOs" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/kirbyplants,
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/bridge)
+"aOt" = (
+/obj/structure/chair/stool,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/main)
+"aOu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/main)
+"aOv" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/gavelblock,
+/obj/item/gavelhammer,
+/obj/machinery/camera{
+ c_tag = "Courtroom";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/carpet,
+/area/security/courtroom)
+"aOw" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aOx" = (
+/obj/structure/table/reinforced,
+/obj/item/grenade/chem_grenade/smart_metal_foam{
+ pixel_x = 4
+ },
+/obj/item/radio,
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aOy" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aOz" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Port Bow Hall";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aOA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/department/chapel)
+"aOB" = (
+/turf/closed/wall/r_wall,
+/area/security/courtroom)
+"aOC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aOD" = (
+/obj/machinery/door/airlock{
+ name = "Catering";
+ req_one_access_txt = "25;28"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"aOE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aOF" = (
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"aOG" = (
+/obj/structure/chair/comfy/teal{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aOH" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"aOI" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/obj/machinery/flasher{
+ id = "ID";
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aOJ" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/fitness/cogpool)
+"aOK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"aOL" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/brig)
+"aOM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aON" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aOO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aOP" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/gravity_generator)
+"aOQ" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "cold loop to generator"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aOR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/window/reinforced/spawner/east,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aOS" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aOT" = (
+/turf/closed/wall,
+/area/crew_quarters/fitness/cogpool)
+"aOU" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"aOV" = (
+/turf/open/floor/plasteel/stairs,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aOW" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/accessory/armband/hydro,
+/obj/item/encryptionkey/headset_service,
+/obj/item/clothing/under/misc/vice_officer,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aOX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Pool"
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/white/side,
+/area/crew_quarters/fitness/cogpool)
+"aOY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aOZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/bridge)
+"aPa" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Pool"
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/side,
+/area/crew_quarters/fitness/cogpool)
+"aPb" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"aPc" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aPd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aPe" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aPf" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"aPg" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"aPh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aPi" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aPj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aPk" = (
+/obj/effect/landmark/start/depsec/science,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aPl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPm" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aPn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/medical,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aPo" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aPp" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aPq" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aPr" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aPs" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aPt" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"aPu" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/bridge)
+"aPv" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Equipment Room";
+ req_access_txt = "1"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aPw" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Central Hall - Courtroom Access";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aPx" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPz" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aPA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPB" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/paper/guides/jobs/security/courtroom,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/security/courtroom)
+"aPC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPD" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Equipment Room";
+ req_access_txt = "1"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aPE" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/toy/talking/AI{
+ name = "Nanotrasen-brand toy AI";
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/meson,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"aPF" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/locker)
+"aPG" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ sortType = 21
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPH" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/security/courtroom)
+"aPI" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aPJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=bar";
+ location = "serv"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aPL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPM" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"aPN" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/space/nearstation)
+"aPO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aPP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aPQ" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aPR" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/crew_quarters/fitness/cogpool)
+"aPS" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aPT" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"aPU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"aPV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"aPW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"aPX" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/storage/fancy/donut_box,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aPY" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aPZ" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aQa" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"aQb" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aQc" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aQd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aQe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aQf" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aQg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aQh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aQi" = (
+/obj/structure/table,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aQj" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"aQk" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aQl" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aQm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aQn" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"aQo" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/security/courtroom)
+"aQp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"aQq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"aQr" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/space/nearstation)
+"aQs" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aQt" = (
+/obj/machinery/pool/controller,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQu" = (
+/obj/structure/table,
+/obj/item/toy/beach_ball{
+ pixel_y = 12
+ },
+/obj/item/clothing/glasses/sunglasses{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQv" = (
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"aQw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aQx" = (
+/obj/machinery/camera{
+ c_tag = "Engine Room - Port Bow"
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aQy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/main)
+"aQz" = (
+/obj/structure/chair/comfy/teal,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQA" = (
+/obj/structure/chair/stool,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aQB" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/sunglasses{
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQC" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aQD" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aQE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aQF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"aQG" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aQH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aQI" = (
+/obj/structure/chair/comfy/teal,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQJ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aQK" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aQL" = (
+/turf/closed/wall,
+/area/maintenance/port/central)
+"aQM" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aQN" = (
+/obj/structure/chair/comfy/brown,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aQO" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aQP" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-02"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQQ" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQR" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQS" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aQT" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Thermo-Electric Generator";
+ req_one_access_txt = "10;24"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aQU" = (
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"aQV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aQW" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/captain)
+"aQX" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aQY" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/table,
+/obj/item/toy/beach_ball/holoball/dodgeball,
+/obj/item/toy/beach_ball/holoball/dodgeball,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aQZ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Service Hallway";
+ req_one_access_txt = "25;26;28;35"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"aRa" = (
+/obj/structure/table/wood,
+/obj/item/lighter,
+/obj/item/multitool{
+ pixel_x = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aRb" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aRc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness/cogpool)
+"aRd" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRe" = (
+/obj/structure/table/wood,
+/obj/item/storage/secure/briefcase,
+/obj/item/assembly/flash,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aRf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRh" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aRi" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRj" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/obj/machinery/sleep_console{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aRk" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRl" = (
+/obj/structure/table/wood,
+/obj/item/restraints/handcuffs,
+/obj/item/laser_pointer/blue,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aRm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aRn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRo" = (
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"aRp" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aRq" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aRr" = (
+/mob/living/simple_animal/chicken{
+ name = "Kentucky";
+ real_name = "Kentucky"
+ },
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aRs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRt" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRu" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aRv" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_x = -32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aRw" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"aRx" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aRy" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aRz" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aRA" = (
+/obj/structure/table/optable,
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/reagent_containers/blood/random,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aRB" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aRC" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"aRD" = (
+/turf/closed/wall/r_wall/rust,
+/area/engine/gravity_generator)
+"aRE" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aRF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"aRG" = (
+/obj/machinery/power/generator,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aRH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/blobstart,
+/obj/machinery/camera{
+ c_tag = "Central Port Maintenance - Starboard";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aRI" = (
+/obj/structure/rack,
+/obj/item/extinguisher,
+/obj/item/crowbar,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aRJ" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aRK" = (
+/obj/structure/sign/departments/holy{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRL" = (
+/mob/living/simple_animal/crab/kreb,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aRM" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"aRN" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRO" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aRP" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRQ" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aRR" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aRS" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aRT" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aRU" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aRV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aRW" = (
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aRX" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aRY" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"aRZ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aSa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aSb" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aSc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aSd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aSe" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Chapel"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/chapel/main)
+"aSf" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aSg" = (
+/obj/machinery/power/apc{
+ name = "Security Maintainance APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aSh" = (
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aSi" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aSj" = (
+/obj/structure/target_stake,
+/obj/item/target/syndicate,
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"aSk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aSl" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"aSm" = (
+/obj/machinery/teleport/station,
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"aSn" = (
+/obj/machinery/teleport/hub,
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"aSo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aSp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aSq" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aSr" = (
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aSs" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#d1dfff"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/camera{
+ c_tag = "Bridge Access";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aSt" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/department/eva)
+"aSu" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aSv" = (
+/turf/closed/wall,
+/area/space/nearstation)
+"aSw" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aSx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aSy" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aSz" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aSA" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aSB" = (
+/obj/machinery/door/airlock/command{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aSC" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aSD" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aSE" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aSF" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/surgical_drapes,
+/obj/item/scalpel,
+/obj/item/circular_saw{
+ pixel_y = 16
+ },
+/obj/item/hemostat,
+/obj/item/retractor,
+/obj/item/surgicaldrill,
+/obj/item/cautery,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aSG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aSH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"aSI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aSJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aSK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aSL" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aSM" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aSN" = (
+/obj/structure/table,
+/obj/machinery/computer/secure_data/laptop{
+ dir = 8;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aSO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aSP" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aSQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aSR" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aSS" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "Chapel"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aST" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"aSU" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = -26
+ },
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 2;
+ name = "Bar RC";
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"aSV" = (
+/obj/item/toy/talking/AI,
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"aSW" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aSX" = (
+/obj/machinery/washing_machine,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aSY" = (
+/obj/machinery/vending/medical,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aSZ" = (
+/obj/structure/chair/stool,
+/obj/machinery/light,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aTa" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aTb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Central Hall - Starboard";
+ pixel_x = 22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aTc" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital/on,
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"aTd" = (
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"
+ },
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"aTe" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aTf" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aTg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aTh" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ name = "AI Upload Foyer APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aTi" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aTj" = (
+/obj/machinery/pool/filter{
+ pixel_y = 16
+ },
+/turf/open/pool,
+/area/crew_quarters/fitness/cogpool)
+"aTk" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aTl" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aTm" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aTn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/department/eva";
+ dir = 8;
+ name = "EVA Maintenance APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aTo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"aTp" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/landmark/start/security_officer,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aTq" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aTr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"aTs" = (
+/turf/closed/wall,
+/area/maintenance/department/eva)
+"aTt" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aTu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge Access";
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aTv" = (
+/turf/open/pool,
+/area/crew_quarters/fitness/cogpool)
+"aTw" = (
+/obj/structure/pool/ladder{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/open/pool,
+/area/crew_quarters/fitness/cogpool)
+"aTx" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_y = -32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aTy" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_y = -32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aTz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aTA" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aTB" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aTC" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aTD" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aTE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"aTF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aTG" = (
+/turf/closed/wall,
+/area/router/public)
+"aTH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"aTI" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Public Router"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/router/public)
+"aTJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aTK" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Public Router"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/router/public)
+"aTL" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Cryogenics";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"aTM" = (
+/turf/closed/wall/r_wall,
+/area/router/public)
+"aTN" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = -26
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-14"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aTO" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aTP" = (
+/obj/machinery/status_display/ai,
+/turf/closed/wall/r_wall,
+/area/security/courtroom)
+"aTQ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Thermo-Electric Generator"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aTR" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/stamp,
+/obj/item/stamp/denied{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/pen/red,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aTS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aTT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aTU" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aTV" = (
+/turf/closed/wall,
+/area/gateway)
+"aTW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aTX" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"aTY" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aTZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "hot loop to space"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aUa" = (
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aUb" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aUc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aUd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aUe" = (
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aUf" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aUg" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aUh" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aUi" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/gateway)
+"aUj" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/destTagger,
+/obj/machinery/requests_console{
+ department = "Public Router";
+ name = "Public Router RC";
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aUk" = (
+/turf/closed/wall/r_wall,
+/area/gateway)
+"aUl" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/router/public)
+"aUm" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aUn" = (
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/plasteel,
+/area/router/public)
+"aUo" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"aUp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/closet/crate/science,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aUq" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/lounge/jazz)
+"aUr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aUs" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aUt" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aUu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/rack,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aUv" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/security_officer,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aUw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Jazz Lounge"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"aUx" = (
+/obj/machinery/door/window/northright{
+ name = "Game Room"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"aUy" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/do_not_question{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aUz" = (
+/obj/machinery/computer/telecomms/server{
+ dir = 4;
+ network = "tcommsat"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/circuit,
+/area/bridge)
+"aUA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUB" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"aUC" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aUD" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aUE" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aUF" = (
+/obj/machinery/computer/bounty{
+ dir = 1
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"aUG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aUH" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aUI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aUJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aUK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aUL" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aUM" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aUN" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aUO" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/teleporter";
+ dir = 4;
+ name = "Teleporter Room APC";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"aUP" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aUQ" = (
+/obj/structure/table,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aUR" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 8;
+ icon_state = "intact"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aUS" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"aUT" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aUU" = (
+/obj/machinery/pool/drain,
+/turf/open/pool,
+/area/crew_quarters/fitness/cogpool)
+"aUV" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aUW" = (
+/obj/structure/pool/Lboard,
+/turf/open/pool,
+/area/crew_quarters/fitness/cogpool)
+"aUX" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aUY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aUZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"aVa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aVb" = (
+/obj/structure/pool/Rboard,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aVc" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/item/kirbyplants{
+ icon_state = "applebush"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aVd" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aVe" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aVf" = (
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aVg" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"aVh" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aVi" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/router/public)
+"aVj" = (
+/obj/machinery/vending/cola/random,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aVk" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/gateway)
+"aVl" = (
+/obj/machinery/vending/snack/random,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aVm" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aVn" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aVo" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aVp" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (Common)";
+ pixel_x = 28
+ },
+/obj/machinery/camera{
+ c_tag = "Public Router";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/button/massdriver{
+ id = "public_out";
+ pixel_x = 24;
+ pixel_y = -6
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "pubblock";
+ name = "Router Access Control";
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aVq" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"aVr" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/item/storage/box/cups,
+/obj/structure/sign/poster/official/here_for_your_safety{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"aVs" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/lounge/jazz)
+"aVt" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aVu" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aVv" = (
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aVw" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aVx" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"aVy" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aVz" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aVA" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"aVB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aVC" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/central)
+"aVD" = (
+/obj/machinery/vending/clothing,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aVE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Dormitory Toilets"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aVF" = (
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"aVG" = (
+/obj/machinery/ore_silo,
+/obj/effect/turf_decal/bot_white,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/nuke_storage";
+ dir = 4;
+ name = "Vault APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aVH" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/secondary/civilian";
+ dir = 8;
+ name = "Civilian Wing Hallway APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aVI" = (
+/obj/structure/table,
+/obj/item/storage/box/zipties,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aVJ" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aVK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/space/nearstation)
+"aVL" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aVM" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/eva)
+"aVN" = (
+/obj/machinery/vending,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aVO" = (
+/obj/structure/table,
+/obj/item/tape,
+/obj/item/taperecorder{
+ pixel_x = -4
+ },
+/obj/item/radio/off,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aVP" = (
+/obj/structure/window/reinforced,
+/obj/structure/displaycase/captain,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/heads/captain)
+"aVQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aVR" = (
+/obj/structure/window/reinforced,
+/obj/structure/filingcabinet,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/heads/captain)
+"aVS" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aVT" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: WASTE EJECTION";
+ pixel_x = -32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aVU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aVV" = (
+/obj/structure/bed,
+/obj/item/bedsheet/red,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/mob/living/simple_animal/bot/secbot/beepsky{
+ desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. ";
+ health = 45;
+ maxHealth = 45;
+ name = "Officer Beepsky"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aVW" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"aVX" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/suit/apron/surgical,
+/obj/item/clothing/gloves/color/latex,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aVY" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"aVZ" = (
+/obj/machinery/computer/security/wooden_tv,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aWa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aWb" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aWc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aWd" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aWe" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aWf" = (
+/obj/effect/turf_decal/tile/red,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aWg" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"aWh" = (
+/obj/effect/landmark/start/lawyer,
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"aWi" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/disposal";
+ dir = 8;
+ name = "Cryogenics APC";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"aWj" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"aWk" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aWl" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aWm" = (
+/turf/open/floor/plasteel,
+/area/gateway)
+"aWn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aWo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/cryopod)
+"aWp" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/gateway)
+"aWq" = (
+/obj/structure/rack,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/extinguisher,
+/obj/item/crowbar,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aWr" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"aWs" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aWt" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aWu" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/fitness/cogpool";
+ dir = 4;
+ name = "Pool APC";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aWv" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aWw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aWx" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"aWy" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aWz" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Power Monitoring";
+ req_access_txt = "10"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aWA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aWB" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"aWC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Defendent's Chair";
+ req_one_access_txt = "63"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aWD" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/item/cigbutt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aWE" = (
+/obj/structure/sign/warning{
+ name = "\improper WARNING: MOVING MACHINERY"
+ },
+/turf/closed/wall/r_wall,
+/area/janitor)
+"aWF" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/janitor)
+"aWG" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/clothing/shoes/magboots,
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aWH" = (
+/obj/machinery/disposal/bin{
+ name = "Corpse Delivery"
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/delivery/red,
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aWI" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aWJ" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aWK" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/item/storage/box/lights/mixed,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aWL" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "public"
+ },
+/turf/open/floor/plating,
+/area/router/public)
+"aWM" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aWN" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/conveyor/auto{
+ id = "public"
+ },
+/turf/open/floor/plating,
+/area/router/public)
+"aWO" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/ai_monitored/storage/eva)
+"aWP" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aWQ" = (
+/obj/structure/closet/crate/rcd,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aWR" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_x = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aWS" = (
+/obj/structure/table,
+/obj/item/storage/box/flashes{
+ pixel_x = 8
+ },
+/obj/item/storage/box/handcuffs{
+ pixel_x = -8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"aWT" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/window/reinforced/spawner/west,
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/router/public";
+ dir = 4;
+ name = "Public Router APC";
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aWU" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"aWV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aWW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aWX" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/medical";
+ dir = 8;
+ name = "Medical Booth APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aWY" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ frequency = 1359;
+ name = "Station Intercom (Security)";
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aWZ" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/nuke_storage)
+"aXa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aXb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/central)
+"aXc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXd" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/central)
+"aXe" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/wood,
+/area/library)
+"aXf" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/structure/table/wood,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aXg" = (
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/wood,
+/area/library)
+"aXh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 6
+ },
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"aXi" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aXj" = (
+/obj/structure/transit_tube/station/reverse,
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Transit Tube Access";
+ pixel_x = 22
+ },
+/obj/structure/transit_tube_pod{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aXk" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXl" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXm" = (
+/obj/machinery/gateway,
+/turf/open/floor/engine,
+/area/gateway)
+"aXn" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aXo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aXp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/foamtank,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"aXq" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXr" = (
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aXs" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"aXt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/securearea,
+/turf/open/floor/plating,
+/area/gateway)
+"aXu" = (
+/turf/closed/wall,
+/area/security/courtroom/jury)
+"aXv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Bar"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aXw" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-08"
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aXx" = (
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"aXy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/ai_monitored/storage/eva)
+"aXz" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aXA" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/security/courtroom/jury)
+"aXB" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aXC" = (
+/obj/machinery/computer/bank_machine,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aXD" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/structure/closet/crate/silvercrate,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aXE" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/crate/goldcrate,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aXF" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ name = "gas to hot loop"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"aXG" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"aXH" = (
+/obj/structure/sign/warning/securearea,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"aXI" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aXJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aXK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aXL" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/paper/fluff/jobs/security/beepsky_mom,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aXM" = (
+/turf/closed/wall,
+/area/maintenance/department/security)
+"aXN" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/ai_monitored/storage/eva)
+"aXO" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aXP" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Pool Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"aXQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical{
+ name = "Medical Booth"
+ })
+"aXR" = (
+/turf/closed/wall,
+/area/security/courtroom)
+"aXS" = (
+/obj/structure/chair/comfy/brown{
+ buildstackamount = 0;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aXT" = (
+/obj/structure/chair/comfy/brown{
+ buildstackamount = 0;
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"aXU" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aXV" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/assembly/timer{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/stack/cable_coil/random{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/multitool,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aXW" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"aXX" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aXY" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aXZ" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aYa" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"aYb" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aYc" = (
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/wood,
+/area/library)
+"aYd" = (
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aYe" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aYf" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"aYg" = (
+/obj/effect/turf_decal/bot_white/right,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aYh" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/radio/off,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aYi" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aYj" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aYk" = (
+/turf/open/floor/circuit/green,
+/area/ai_monitored/nuke_storage)
+"aYl" = (
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aYm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aYn" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/storage/box/smart_metal_foam,
+/obj/item/wrench,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/assembly/prox_sensor,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aYo" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Security"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aYp" = (
+/obj/structure/fans/tiny/invisible,
+/turf/open/space/basic,
+/area/space)
+"aYq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aYr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "1"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aYs" = (
+/obj/structure/rack,
+/obj/item/tank/jetpack/carbondioxide,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aYt" = (
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aYu" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aYv" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/analyzer,
+/obj/item/storage/toolbox/electrical,
+/obj/item/gps,
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aYw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aYx" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aYy" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark/side,
+/area/bridge)
+"aYz" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/landmark/start/ai/secondary,
+/obj/machinery/camera{
+ c_tag = "Vault";
+ dir = 4;
+ network = list("vault")
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aYA" = (
+/obj/machinery/nuclearbomb/selfdestruct,
+/obj/effect/turf_decal/box/white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aYB" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aYC" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/detectives_office";
+ dir = 1;
+ name = "Detective's Office APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"aYD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aYE" = (
+/obj/structure/closet/crate/trashcart,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aYF" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/evidence,
+/obj/item/hand_labeler,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aYG" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"aYH" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aYI" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/item/paper/fluff/cogstation/secsolars,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aYJ" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aYK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Civilian Wing Hallway"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"aYL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"aYM" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aYN" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aYO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"aYP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aYQ" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aYR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"aYS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/security/brig)
+"aYT" = (
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/customs)
+"aYU" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aYV" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"aYW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/northright{
+ name = "Customs Desk";
+ req_access_txt = "57"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "HoPFore";
+ name = "HoP Fore Desk Shutters"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"aYX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/flashlight/lamp,
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "HoPFore";
+ name = "HoP Fore Desk Shutters"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"aYY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Port Central Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/security/courtroom)
+"aYZ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"aZa" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aZb" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/eva)
+"aZc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aZd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Maintenance";
+ req_access_txt = "18"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/storage/eva)
+"aZe" = (
+/obj/structure/sign/warning/biohazard{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"aZf" = (
+/obj/effect/turf_decal/bot_white/left,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aZg" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"aZh" = (
+/obj/structure/closet/crate,
+/obj/machinery/light,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/window/reinforced/spawner/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aZi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"aZj" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/caution{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/caution{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/caution{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/caution{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/extinguisher{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/extinguisher{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aZk" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/mass_driver{
+ id = "public_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router/public)
+"aZl" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router/public)
+"aZm" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"aZn" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "EVA";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aZo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"aZp" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aZq" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"aZr" = (
+/obj/structure/filingcabinet,
+/obj/item/folder/documents,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aZs" = (
+/obj/structure/safe,
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/lazarus_injector,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c1000,
+/obj/effect/turf_decal/bot_white/left,
+/obj/item/stack/sheet/mineral/diamond,
+/obj/item/clothing/under/costume/soviet,
+/obj/item/clothing/suit/armor/vest/russian_coat,
+/obj/item/clothing/head/helmet/rus_helmet,
+/obj/machinery/light,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aZt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"aZu" = (
+/obj/machinery/blackbox_recorder,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"aZv" = (
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"aZw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/weldingtool,
+/obj/item/flashlight,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aZx" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"aZy" = (
+/turf/closed/wall,
+/area/lawoffice)
+"aZz" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"aZA" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"aZB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"aZC" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"aZD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/central";
+ dir = 1;
+ name = "Chapel Maintenance APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"aZE" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/highcap/five_k{
+ areastring = "/area/hallway/primary/central";
+ dir = 8;
+ name = "Central Primary Hallway APC";
+ pixel_x = -26
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"aZF" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aZG" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_y = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"aZH" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aZI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/landmark/start/lawyer,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"aZJ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZK" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/weldingtool,
+/obj/item/multitool{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aZL" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/poster/official/cohiba_robusto_ad{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"aZM" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/carpet,
+/area/security/courtroom)
+"aZN" = (
+/obj/machinery/computer/station_alert{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"aZO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"aZP" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/aiModule/reset/purge{
+ pixel_y = 6
+ },
+/obj/item/aiModule/reset{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/aiModule/core/full/custom{
+ pixel_x = -4
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"aZQ" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/plasteel{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aZR" = (
+/turf/open/floor/plasteel/dark/corner,
+/area/ai_monitored/storage/eva)
+"aZS" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/ai_monitored/storage/eva)
+"aZT" = (
+/obj/structure/closet/secure_closet/hos,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/storage/box/deputy,
+/obj/item/paper/guides/cogstation/letter_hos,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"aZU" = (
+/obj/structure/chair,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"aZV" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"aZW" = (
+/obj/structure/chair,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"aZX" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"aZY" = (
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"aZZ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/ai_monitored/storage/eva)
+"baa" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bab" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bac" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/stack/rods/fifty,
+/obj/item/stack/rods/fifty,
+/obj/item/storage/toolbox/emergency,
+/obj/item/stack/sheet/rglass,
+/obj/item/stack/sheet/rglass,
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"bad" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/stripes/white/full,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bae" = (
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"baf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Central Plaza - Starboard";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bag" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/storage/belt/utility,
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"bah" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/lawoffice)
+"bai" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"baj" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/beaker/waterbottle,
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bak" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/lawoffice)
+"bal" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"bam" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ban" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"bao" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/white/full,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"bap" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"baq" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bar" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"bas" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"bat" = (
+/obj/structure/chair/stool/bar,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"bau" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bav" = (
+/obj/structure/chair/sofa/right,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/item/clipboard,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"baw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/lawoffice)
+"bax" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"bay" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"baz" = (
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"baA" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/item/folder/blue,
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"baB" = (
+/obj/structure/rack,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/item/extinguisher,
+/obj/item/crowbar,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"baC" = (
+/obj/machinery/vending/cart,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"baD" = (
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"baE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/library)
+"baF" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start/head_of_personnel,
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"baG" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"baH" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/item/crowbar,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"baI" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"baJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"baK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/item/kitchen/fork,
+/obj/item/reagent_containers/food/snacks/pastatomato,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"baL" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"baM" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/item/crowbar/large,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"baN" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"baO" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"baP" = (
+/obj/structure/closet/secure_closet/captains,
+/obj/item/reagent_containers/food/drinks/flask/gold,
+/obj/item/clothing/under/rank/captain/suit,
+/obj/item/clothing/under/rank/captain/suit/skirt,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/item/clothing/head/centhat{
+ name = "\improper green captain's hat"
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/heads/captain)
+"baQ" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"baR" = (
+/obj/structure/chair/sofa/left,
+/obj/effect/landmark/start/lawyer,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"baS" = (
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"baT" = (
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"baU" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"baV" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"baW" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/aiModule/core/full/asimov{
+ pixel_x = 2;
+ pixel_y = 10
+ },
+/obj/effect/spawner/lootdrop/aimodule_neutral{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/effect/spawner/lootdrop/aimodule_harmless{
+ pixel_y = 6
+ },
+/obj/item/aiModule/core/freeformcore{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/item/aiModule/supplied/freeform{
+ pixel_x = -2
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"baX" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/displaycase,
+/turf/open/floor/wood,
+/area/library)
+"baY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"baZ" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bba" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"bbb" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"bbc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"bbd" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"bbe" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"bbf" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/hop)
+"bbg" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"bbh" = (
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bbi" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"bbj" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/teleporter)
+"bbk" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Telecomms Admin";
+ departmentType = 5;
+ name = "Telecomms RC";
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bbl" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bbm" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/lawyer,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bbn" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bbo" = (
+/obj/structure/closet/crate,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bbp" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/carpet,
+/area/security/courtroom)
+"bbq" = (
+/obj/effect/landmark/start/librarian,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"bbr" = (
+/obj/structure/filingcabinet/employment,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bbs" = (
+/obj/structure/table/wood,
+/obj/item/camera,
+/obj/item/pen/red,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bbt" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bbu" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plating,
+/area/space/nearstation)
+"bbv" = (
+/turf/open/space,
+/area/space)
+"bbw" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bbx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bby" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bbz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bbA" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bbB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bbC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bbD" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"bbE" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bbF" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bbG" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"bbH" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"bbI" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bbJ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bbK" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bbL" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bbM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bbN" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bbO" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bbP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "HoP Office Maintenance";
+ req_access_txt = "57"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/customs)
+"bbQ" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"bbR" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/reagent_containers/food/snacks/grown/wheat,
+/obj/item/reagent_containers/food/snacks/grown/corn,
+/obj/item/reagent_containers/food/snacks/grown/cocoapod,
+/obj/item/reagent_containers/food/snacks/grown/chili,
+/obj/item/reagent_containers/food/snacks/grown/soybeans,
+/obj/item/reagent_containers/food/snacks/grown/tomato,
+/obj/item/reagent_containers/food/snacks/grown/cherries,
+/obj/structure/sign/poster/contraband/have_a_puff{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bbS" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/gateway)
+"bbT" = (
+/turf/closed/wall/r_wall,
+/area/quartermaster/sorting)
+"bbU" = (
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bbV" = (
+/turf/closed/wall/r_wall,
+/area/quartermaster/warehouse)
+"bbW" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/noticeboard{
+ dir = 4;
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bbX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bbY" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bbZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bca" = (
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bcb" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bcc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"bcd" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-14"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"bce" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "public"
+ },
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "cargoblock";
+ name = "Public Router"
+ },
+/turf/open/floor/plating,
+/area/router/public)
+"bcf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bcg" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "cargoblock";
+ name = "Public Router"
+ },
+/turf/open/floor/plating,
+/area/router/public)
+"bch" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bci" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bcj" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ id = "cargo"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bck" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bcl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bcm" = (
+/obj/machinery/computer/cargo/request,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bcn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum/external,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bco" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/morgue{
+ name = "Confession Booth (Chaplain)";
+ req_access_txt = "22"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bcp" = (
+/obj/machinery/libraryscanner,
+/obj/machinery/light,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"bcq" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bcr" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bcs" = (
+/obj/machinery/pdapainter,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bct" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bcu" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/camera{
+ c_tag = "Aft Maintenance - Air Hookup"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bcv" = (
+/obj/machinery/atmospherics/components/binary/valve/digital/on,
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bcw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/mixing)
+"bcx" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/start/head_of_personnel,
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bcy" = (
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bcz" = (
+/obj/machinery/computer/card{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bcA" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bcB" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/extinguisher,
+/turf/open/floor/plasteel,
+/area/gateway)
+"bcC" = (
+/obj/machinery/power/apc{
+ name = "Research Division Storage APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bcD" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bcE" = (
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bcF" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bcG" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bcH" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark/side,
+/area/security/courtroom)
+"bcI" = (
+/turf/closed/wall/r_wall,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bcJ" = (
+/obj/machinery/button/door{
+ id = "HoPAft";
+ name = "Aft Shutters";
+ pixel_x = -24;
+ pixel_y = -24;
+ req_access_txt = "57"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bcK" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Cryogenics"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/circuit/green,
+/area/crew_quarters/cryopod)
+"bcL" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bcM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bcN" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=bridge2";
+ location = "court"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"bcO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"bcP" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bcQ" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"bcR" = (
+/turf/closed/wall,
+/area/hallway/primary/central)
+"bcS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Courtroom"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"bcT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bcU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Jury Room Maintainance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/security/courtroom/jury)
+"bcV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bcW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 2;
+ name = "Bar RC";
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bcX" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/hallway/primary/central)
+"bcY" = (
+/obj/machinery/power/smes,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bcZ" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bda" = (
+/obj/structure/table,
+/obj/item/hand_tele,
+/obj/machinery/camera{
+ c_tag = "Teleporter Room";
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"bdb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"bdc" = (
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"bdd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Pool";
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/toy/poolnoodle/red,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"bde" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bdf" = (
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bdg" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bdh" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/toy/poolnoodle/blue,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"bdi" = (
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bdj" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bdk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bdl" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/closet/athletic_mixed,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/toy/poolnoodle/yellow,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/fitness/cogpool)
+"bdm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bdn" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"bdo" = (
+/obj/structure/sign/warning/biohazard{
+ pixel_x = -32
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4;
+ sortType = 17
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bdp" = (
+/obj/structure/chair/stool,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bdq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bdr" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bds" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/chaplain,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bdt" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bdu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bdv" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bdw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/chapel/office)
+"bdx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"bdy" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bdz" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"bdA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bdB" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb,
+/obj/item/toy/eightball,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"bdC" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bdD" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bdE" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 8;
+ icon_state = "intact"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"bdF" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bdG" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bdH" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bdI" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bdJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Telecommunications Control Room Maintenance";
+ req_access_txt = "61"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bdK" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bdL" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bdM" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bdN" = (
+/obj/machinery/vending/snack/random,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bdO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Pool External Maintenance";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"bdP" = (
+/turf/closed/wall/mineral/wood,
+/area/crew_quarters/fitness/cogpool)
+"bdQ" = (
+/obj/machinery/door/airlock/command{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"bdR" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bdS" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/bridge)
+"bdT" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency,
+/obj/item/hand_labeler,
+/obj/item/hand_labeler,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bdU" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bdV" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bdW" = (
+/obj/structure/mineral_door/woodrustic{
+ name = "Sauna"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness/cogpool)
+"bdX" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/donkpockets,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"bdY" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/wood,
+/area/crew_quarters/fitness/cogpool)
+"bdZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/quartermaster/sorting)
+"bea" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/poster/official/report_crimes{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"beb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/courtroom/jury)
+"bec" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bed" = (
+/obj/machinery/suit_storage_unit/rd,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bee" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bef" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"beg" = (
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"beh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"bei" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"bej" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bek" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bel" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bem" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "hot loop to generator"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"ben" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"beo" = (
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"bep" = (
+/obj/structure/table/wood,
+/obj/item/tape,
+/obj/item/taperecorder{
+ pixel_x = -4
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/hor";
+ dir = 8;
+ name = "Research Director's Office APC";
+ pixel_x = -24
+ },
+/obj/item/reagent_containers/food/snacks/muffin/berry,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"beq" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "generator to cold loop"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"ber" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bes" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"bet" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"beu" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"bev" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (Common)";
+ pixel_x = 28
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"bew" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"bex" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"bey" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall/rust,
+/area/space/nearstation)
+"bez" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"beA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/chapel/main)
+"beB" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"beC" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"beD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"beE" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/fans/tiny,
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"beF" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"beG" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "Routing Depot - Fore Exterior";
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"beH" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"beI" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"beJ" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"beK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"beL" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"beM" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"beN" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"beO" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"beP" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"beQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/security/detectives_office)
+"beR" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"beS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"beT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"beU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"beV" = (
+/obj/machinery/button/door{
+ id = "executionspaceblast";
+ name = "Vent to Space";
+ pixel_x = 25;
+ pixel_y = -5;
+ req_access_txt = "7"
+ },
+/obj/machinery/button/ignition{
+ id = "executionburn";
+ pixel_x = 24;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/port/fore)
+"beW" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"beX" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (Common)";
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"beY" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"beZ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bfa" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"bfb" = (
+/obj/machinery/computer/card/minor/qm,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bfc" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bfd" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bfe" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bff" = (
+/turf/closed/wall/r_wall,
+/area/quartermaster/qm)
+"bfg" = (
+/obj/structure/closet,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bfh" = (
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bfi" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bfj" = (
+/mob/living/simple_animal/butterfly,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"bfk" = (
+/mob/living/simple_animal/kiwi,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"bfl" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bfm" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"bfn" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "cold loop to space"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"bfo" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bfp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4
+ },
+/obj/machinery/sparker/toxmix{
+ pixel_x = 25
+ },
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"bfq" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp_home";
+ name = "fore bay 1";
+ roundstart_template = /datum/map_template/shuttle/labour/cog;
+ width = 9
+ },
+/turf/open/space/basic,
+/area/space)
+"bfr" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bfs" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "QM #1"
+ },
+/mob/living/simple_animal/bot/mulebot{
+ beacon_freq = 1400;
+ home_destination = "QM #1";
+ suffix = "#1"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bft" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/hallway/primary/central)
+"bfu" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/gateway)
+"bfv" = (
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"bfw" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (Common)";
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"bfx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"bfy" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"bfz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bfA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge Access";
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"bfB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel Morgue";
+ req_access_txt = "22;27"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bfC" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
+"bfD" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bfE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 5;
+ id = "mail"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bfF" = (
+/obj/machinery/space_heater,
+/obj/structure/sign/poster/official/no_erp{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness/cogpool)
+"bfG" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bfH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/button/crematorium{
+ id = "foo";
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bfI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/highcap/fifteen_k{
+ areastring = "/area/engine/storage_shared";
+ dir = 1;
+ name = "Electrical Substation APC";
+ pixel_y = 26
+ },
+/turf/open/floor/plating,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"bfJ" = (
+/turf/open/floor/wood,
+/area/crew_quarters/fitness/cogpool)
+"bfK" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/candle_box{
+ pixel_x = -11;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/item/paper/fluff/cogstation/letter_chap{
+ pixel_x = 10;
+ pixel_y = 2
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"bfL" = (
+/obj/structure/table/wood,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"bfM" = (
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d8b1b1"
+ },
+/obj/structure/bedsheetbin/towel,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness/cogpool)
+"bfN" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bfO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Jazz Lounge"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bfP" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bfQ" = (
+/obj/machinery/light/small,
+/obj/item/candle,
+/obj/item/trash/candle,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bfR" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bfS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bfT" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/chapel/office)
+"bfU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bfV" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/main)
+"bfW" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bfX" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bfY" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "QM #2"
+ },
+/mob/living/simple_animal/bot/mulebot{
+ home_destination = "QM #2";
+ suffix = "#2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bfZ" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bga" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bgb" = (
+/obj/structure/disposalpipe/sorting/mail{
+ sortType = 30
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bgc" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/sign/directions/command{
+ dir = 8;
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bgd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bge" = (
+/turf/closed/wall/r_wall,
+/area/storage/primary)
+"bgf" = (
+/turf/closed/wall,
+/area/quartermaster/warehouse)
+"bgg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bgh" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 6
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bgi" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space)
+"bgj" = (
+/obj/structure/table,
+/obj/item/weldingtool/mini,
+/obj/item/light/tube,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bgk" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "mail"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bgl" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/multitool,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bgm" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bgn" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bgo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/chapel/main)
+"bgp" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"bgq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bgr" = (
+/obj/structure/table/wood,
+/obj/item/clothing/head/helmet/skull,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"bgs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bgt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bgu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgv" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bgw" = (
+/turf/open/floor/engine,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bgx" = (
+/obj/structure/table/glass,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgy" = (
+/obj/structure/closet,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/courtroom/jury";
+ dir = 4;
+ name = "Jury Room APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom/jury)
+"bgz" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgA" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgB" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/lightreplacer,
+/obj/item/lightreplacer,
+/obj/item/stack/rods/fifty,
+/obj/item/stack/rods/fifty,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bgC" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bgD" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/obj/item/target,
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"bgE" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Port Central Maintenance";
+ req_one_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bgG" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bgH" = (
+/obj/machinery/pipedispenser,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bgI" = (
+/obj/machinery/pipedispenser/disposal,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bgJ" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"bgK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bgL" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bgN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Port Central Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bgO" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/wrench,
+/obj/item/pipe_dispenser,
+/mob/living/simple_animal/sloth/paperwork,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bgP" = (
+/obj/item/analyzer,
+/obj/item/caution,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bgQ" = (
+/turf/closed/wall,
+/area/quartermaster/qm)
+"bgR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/closed/wall/mineral/wood,
+/area/crew_quarters/fitness/cogpool)
+"bgS" = (
+/obj/machinery/computer/bounty,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bgT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bgU" = (
+/obj/machinery/computer/cargo,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bgV" = (
+/turf/closed/wall/r_wall,
+/area/quartermaster/storage)
+"bgW" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/hor)
+"bgX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
+"bgY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/hallway/primary/central)
+"bgZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bha" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness/cogpool)
+"bhb" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bhc" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness/cogpool)
+"bhd" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bhe" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bhf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"bhg" = (
+/obj/structure/chair/stool,
+/obj/machinery/camera{
+ c_tag = "Pool - Sauna";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness/cogpool)
+"bhh" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/security/courtroom)
+"bhi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/head/cone,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bhj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Kitchen";
+ req_access_txt = "28"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bhk" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bhl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/closed/wall/mineral/wood,
+/area/crew_quarters/fitness/cogpool)
+"bhm" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bhn" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bho" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bhp" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bhq" = (
+/obj/structure/chair/sofa/right,
+/obj/item/instrument/recorder,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bhr" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bhs" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bht" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"bhu" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/recharge_station,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bhv" = (
+/obj/structure/chair/sofa/left,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bhw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/cc64k_ad{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bhx" = (
+/obj/machinery/vending/coffee,
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"bhy" = (
+/obj/structure/closet/crate/science,
+/obj/item/stack/sheet/metal/ten,
+/obj/item/stack/sheet/glass/five,
+/obj/item/stack/rods/twentyfive,
+/obj/item/target/syndicate,
+/obj/item/target/alien,
+/obj/item/target,
+/obj/item/target/clown,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bhz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"bhA" = (
+/obj/item/stack/cable_coil/red,
+/obj/item/multitool,
+/obj/item/wrench,
+/obj/item/stack/sheet/metal/five{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/paper/fluff/cogstation/letter_arrd,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bhB" = (
+/obj/structure/table/wood,
+/obj/item/stack/packageWrap,
+/obj/item/paper/fluff/cogstation/bsrb,
+/obj/item/paper/fluff/cogstation/survey{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/turf/open/floor/carpet/royalblue,
+/area/bridge)
+"bhC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bhD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Chapel Air Hookup";
+ req_one_access_txt = "12;22"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bhE" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bhF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bhG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bhH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bhI" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"bhJ" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bhK" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bhL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Waste Disposal";
+ req_one_access_txt = "12;50"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bhM" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bhN" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/kirbyplants/dead,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bhO" = (
+/obj/structure/chair/sofa/right,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bhP" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bhQ" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bhR" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-21";
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"bhS" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhT" = (
+/obj/structure/sign/departments/engineering,
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bhU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/janitor)
+"bhV" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/pen/blue{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/pen/red{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"bhW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"bhX" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bhY" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bhZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bia" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bib" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bic" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (Common)";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bid" = (
+/obj/structure/chair/sofa/left,
+/mob/living/simple_animal/pet/cat/Proc,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bie" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bif" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"big" = (
+/turf/closed/wall,
+/area/science/circuit)
+"bih" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "mail"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bii" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/matches,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bij" = (
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bik" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bil" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 6;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bim" = (
+/turf/open/space/basic,
+/area/space/nearstation)
+"bin" = (
+/obj/machinery/computer/mecha{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"bio" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bip" = (
+/obj/effect/landmark/start/quartermaster,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"biq" = (
+/obj/structure/closet/secure_closet/hop,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/item/clothing/under/rank/civilian/head_of_personnel/suit,
+/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt{
+ name = "head of personnel's suitskirt"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"bir" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bis" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bit" = (
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"biu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"biv" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"biw" = (
+/obj/machinery/computer/cargo{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/button/door{
+ id = "QMLoadDoor";
+ layer = 4;
+ name = "Cargo Loading Doors";
+ pixel_x = 24;
+ pixel_y = 6
+ },
+/obj/machinery/button/door{
+ id = "QMUnloadDoor";
+ layer = 4;
+ name = "Cargo Unloading Doors";
+ pixel_x = 24;
+ pixel_y = -6
+ },
+/obj/machinery/camera{
+ c_tag = "Supply - Cargo Bay";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bix" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Courtroom"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"biy" = (
+/obj/machinery/vending/clothing,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"biz" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"biA" = (
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"biB" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/rd,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"biC" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"biD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"biE" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"biF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_y = -28
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"biG" = (
+/obj/structure/displaycase/labcage,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Research Director's Office - Starboard";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"biH" = (
+/obj/machinery/light/small,
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"biI" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-20";
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"biJ" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"biK" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"biL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/turf/closed/wall,
+/area/crew_quarters/heads/chief)
+"biM" = (
+/obj/machinery/vending/assist,
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/poster/official/foam_force_ad{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"biN" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "recycler"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"biO" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"biP" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"biQ" = (
+/turf/closed/wall,
+/area/crew_quarters/heads/chief)
+"biR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "CEPrivacy";
+ name = "CE Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"biS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"biT" = (
+/obj/machinery/pipedispenser,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"biU" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"biV" = (
+/turf/closed/wall,
+/area/storage/primary)
+"biW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"biX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"biY" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"biZ" = (
+/turf/closed/wall/r_wall,
+/area/quartermaster/office)
+"bja" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bjb" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/wrench,
+/obj/item/t_scanner,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bjc" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/stack/sheet/plasteel/twenty,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bjd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bje" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjf" = (
+/obj/machinery/pipedispenser/disposal/transit_tube,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bjg" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "E.V.A. Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bji" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjj" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bjl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall/r_wall,
+/area/quartermaster/office)
+"bjm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bjn" = (
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/supply)
+"bjo" = (
+/obj/machinery/rnd/production/techfab/department/cargo,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bjp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bjq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bjr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum/external,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bjs" = (
+/obj/machinery/computer/robotics{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"bjt" = (
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"bju" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ frequency = 1359;
+ name = "Station Intercom (Security)";
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"bjv" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/security/courtroom/jury)
+"bjw" = (
+/obj/item/storage/secure/safe{
+ pixel_x = 4;
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bjx" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/bot,
+/obj/item/defibrillator/loaded,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bjy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bjz" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bjA" = (
+/obj/machinery/camera{
+ c_tag = "EVA Maintenace - Fore";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bjB" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/security/brig)
+"bjC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Jury Room"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/courtroom/jury)
+"bjD" = (
+/turf/closed/wall/r_wall,
+/area/security/courtroom/jury)
+"bjE" = (
+/obj/structure/table,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 29
+ },
+/obj/item/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/item/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Control Room"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/paper/guides/cogstation/letter_atmos,
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/engine/atmos)
+"bjF" = (
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/aft";
+ dir = 8;
+ name = "Head of Personnel APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable,
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"bjG" = (
+/obj/structure/rack,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjH" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bjI" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bjJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"bjK" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bjL" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/fragile,
+/obj/item/clothing/head/helmet/space/fragile,
+/obj/item/tank/internals/air,
+/obj/item/flashlight,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/machinery/camera{
+ c_tag = "Pool Maintenance";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"bjM" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Atmospherics Storage";
+ req_one_access_txt = "24;31"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bjN" = (
+/obj/machinery/vending/autodrobe,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bjO" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/item/instrument/piano_synth,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bjP" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bjQ" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/assistant/override,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bjR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjS" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/poster/official/cohiba_robusto_ad{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bjT" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"bjU" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjV" = (
+/obj/structure/closet{
+ name = "Evidence Closet 5"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"bjW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bjX" = (
+/obj/structure/rack,
+/obj/machinery/button/door{
+ id = "marketdoor";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjY" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bjZ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/shower{
+ name = "emergency shower";
+ pixel_y = 12
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/westright{
+ name = "Emergency Shower"
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bka" = (
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bkb" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "mail"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bkc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/machinery/conveyor_switch/oneway{
+ id = "DeliveryConveyer"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bkd" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "mail"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bke" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=sec1";
+ location = "bridge2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bkf" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bkg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/mineral/stacking_unit_console{
+ machinedir = 2
+ },
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bkh" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bki" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bkj" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor_switch/oneway{
+ id = "mail"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bkk" = (
+/obj/machinery/autolathe,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bkl" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/fragile,
+/obj/item/clothing/head/helmet/space/fragile,
+/obj/item/tank/internals/air,
+/obj/item/flashlight,
+/obj/item/storage/belt/utility,
+/obj/item/extinguisher,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bkm" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Supply - Delivery Office Fore";
+ network = list("ss13","rd")
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bkn" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bko" = (
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"bkp" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bkq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/conveyor/inverted{
+ dir = 9;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bkr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoadDoor";
+ name = "Cargo Loading Door"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bks" = (
+/obj/structure/plasticflaps,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bkt" = (
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoadDoor";
+ name = "Cargo Loading Door"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bku" = (
+/obj/structure/closet,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bkv" = (
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bkw" = (
+/obj/structure/bookcase/random/fiction,
+/obj/effect/spawner/lootdrop/gambling,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bkx" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bky" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/research_director,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"bkz" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bkA" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Bridge - Starboard Quarter";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"bkB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bkC" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "capblast";
+ name = "blast door"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/captain)
+"bkD" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "CEPrivacy";
+ name = "CE Privacy Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"bkE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bkF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"bkG" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/closet/crate/engineering,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/item/rcl/pre_loaded,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/clothing/glasses/meson,
+/obj/item/cartridge/atmos,
+/obj/item/cartridge/engineering,
+/obj/item/cartridge/engineering,
+/obj/item/cartridge/engineering,
+/obj/machinery/camera{
+ c_tag = "Chief Engineer's Office";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bkH" = (
+/obj/machinery/computer/atmos_control{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/checker,
+/area/engine/atmos)
+"bkI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/storage/primary)
+"bkJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"bkK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/departments/security{
+ pixel_x = -32
+ },
+/obj/item/cigbutt,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bkL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bkM" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bkN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bkO" = (
+/obj/machinery/vending/kink,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bkP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bkQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bkR" = (
+/obj/machinery/camera{
+ c_tag = "EVA Maintenance - Aft";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bkS" = (
+/obj/machinery/vending/sustenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bkT" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"bkU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bkV" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bkW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "Pool Exterior Access";
+ req_access_txt = "13"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"bkX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bkY" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/crate/engineering,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bkZ" = (
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"bla" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"blb" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"blc" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bld" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"ble" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/airlock/external{
+ name = "Cargo Freighter Dock";
+ req_access_txt = "31"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"blf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel's Office";
+ req_access_txt = "57"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/hop)
+"blg" = (
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"blh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "Cargo Freighter Dock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bli" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blj" = (
+/obj/structure/sign/warning/docking,
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"blk" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bll" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blm" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bln" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blo" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blp" = (
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/exit)
+"blq" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/vending/wardrobe/engi_wardrobe,
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"blr" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bls" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/sign/poster/official/ion_rifle{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"blt" = (
+/obj/machinery/computer/card/minor/ce{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"blu" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"blv" = (
+/obj/machinery/computer/operating,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"blw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"blx" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/item/storage/backpack/duffelbag/med/surgery,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bly" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"blz" = (
+/obj/machinery/computer/atmos_control{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/engine/atmos)
+"blA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"blB" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/fitness/cogpool)
+"blE" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blF" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blG" = (
+/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/mixing)
+"blH" = (
+/obj/structure/chair,
+/obj/machinery/button/massdriver{
+ id = "toxinsdriver";
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"blI" = (
+/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/mixing)
+"blJ" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blK" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "marketdoor"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blL" = (
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"blM" = (
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"blN" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"blO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"blP" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/rust,
+/area/maintenance/department/chapel)
+"blQ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/northleft{
+ name = "Delivery Office";
+ req_one_access_txt = "31;48"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"blR" = (
+/obj/machinery/computer/bounty{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"blS" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/structure/chair,
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"blT" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"blU" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/closet/cardboard,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"blV" = (
+/obj/machinery/computer/cargo{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"blW" = (
+/obj/structure/table,
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/crowbar,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"blX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"blY" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"blZ" = (
+/obj/machinery/conveyor_switch/oneway{
+ dir = 8;
+ id = "QMUnload"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bma" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/landmark/start/assistant/override,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bmb" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
+"bmc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Security's Office";
+ req_one_access_txt = "58"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/hos)
+"bmd" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/research_director,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"bme" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"bmf" = (
+/obj/structure/sign/departments/evac,
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/exit)
+"bmg" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmh" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmi" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmj" = (
+/obj/machinery/vending/wardrobe/cap_wardrobe,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/heads/captain)
+"bmk" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/dice/d6,
+/obj/machinery/camera{
+ c_tag = "Jazz Lounge";
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bml" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bmm" = (
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bmn" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmo" = (
+/turf/closed/wall/rust,
+/area/maintenance/department/chapel)
+"bmp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bmq" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=court";
+ location = "bridge1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmr" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bms" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/barthpot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bmt" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bmu" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bmv" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bmw" = (
+/obj/machinery/suit_storage_unit/ce,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bmx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bmy" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmz" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bmA" = (
+/obj/item/stack/tile/plasteel{
+ pixel_x = 10;
+ pixel_y = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/hallway/secondary/civilian)
+"bmB" = (
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bmC" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmD" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/gateway)
+"bmF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness/cogpool)
+"bmG" = (
+/turf/open/floor/engine,
+/area/gateway)
+"bmH" = (
+/obj/machinery/computer/upload/borg{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bmI" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/chapel/office";
+ dir = 4;
+ name = "Chapel Office APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bmJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"bmK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/fitness/cogpool)
+"bmL" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmM" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"bmN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Waste Disposal Maintenance";
+ req_one_access_txt = "12;50"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bmO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/lounge/jazz)
+"bmP" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/departments/engineering{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bmQ" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Foyer - Starboard";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bmR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_one_access_txt = "17;19"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"bmS" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bmT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"bmU" = (
+/obj/structure/table/wood,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/item/instrument/saxophone,
+/obj/item/reagent_containers/food/drinks/bottle/vermouth,
+/obj/item/clothing/glasses/sunglasses,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bmV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bmW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bmX" = (
+/obj/structure/table,
+/obj/item/folder/yellow{
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_y = 4
+ },
+/obj/item/clothing/gloves/color/latex{
+ pixel_y = 4
+ },
+/obj/item/clothing/mask/surgical{
+ pixel_y = 4
+ },
+/obj/item/healthanalyzer,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/item/paper/guides/cogstation/cdn_chap,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bmY" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bmZ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bna" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bnb" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bnc" = (
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 40
+ },
+/obj/structure/sign/directions/science{
+ pixel_x = -32;
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bnd" = (
+/obj/structure/table/wood,
+/obj/item/storage/photo_album,
+/obj/item/storage/box/matches,
+/obj/item/storage/fancy/cigarettes/cigpack_robust,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bne" = (
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bnf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bng" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "recycler"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bnh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor{
+ id = "DeliveryDoor";
+ name = "Delivery Door"
+ },
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bni" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/clipboard,
+/obj/item/stamp,
+/obj/item/stamp/denied{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/pen/red,
+/obj/item/pen/blue{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bnj" = (
+/obj/structure/sign/warning/securearea{
+ desc = "A warning sign which reads 'BOMB RANGE";
+ name = "BOMB RANGE"
+ },
+/turf/closed/wall,
+/area/science/test_area)
+"bnk" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bnl" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"bnm" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bnn" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/door/window/southleft{
+ name = "Cargo Desk";
+ req_access_txt = "31"
+ },
+/obj/item/folder,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bno" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bnp" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bnq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bnr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bns" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/department/eva)
+"bnt" = (
+/obj/machinery/camera{
+ c_tag = "Electrical Substation";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"bnu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"bnv" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bnw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bnx" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L3"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bny" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/pen,
+/obj/item/wirecutters,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bnz" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L5"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bnA" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L7"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bnB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bnC" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Cargo Freighter Dock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bnD" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L9"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bnE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/crowbar,
+/obj/structure/disposalpipe/junction/flip,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bnF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bnG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"bnH" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bnI" = (
+/obj/structure/bed,
+/obj/effect/landmark/start/head_of_personnel,
+/obj/item/bedsheet/hop,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"bnJ" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bnK" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"bnL" = (
+/obj/item/beacon,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"bnM" = (
+/obj/effect/turf_decal/delivery,
+/obj/item/grown/bananapeel,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bnN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bnO" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/exit)
+"bnP" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L11"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bnQ" = (
+/obj/machinery/atmospherics/components/binary/valve/digital/on,
+/turf/closed/wall/r_wall,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bnR" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L13"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bnS" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bnT" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/fitness/cogpool)
+"bnU" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/fragile,
+/obj/item/clothing/head/helmet/space/fragile,
+/obj/item/tank/internals/air,
+/obj/item/wrench,
+/obj/item/flashlight,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bnV" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"bnW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"bnX" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/security/cargo,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"bnY" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"bnZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/pen/blue,
+/obj/machinery/camera{
+ c_tag = "Customs - Fore";
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "HoPFore";
+ name = "HoP Fore Desk Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"boa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/crew_quarters/heads/chief)
+"bob" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/heads/chief)
+"boc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 10
+ },
+/turf/closed/wall,
+/area/crew_quarters/heads/chief)
+"bod" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/southleft{
+ name = "Primary Tool Storage Desk";
+ req_access_txt = "11"
+ },
+/obj/item/folder/yellow,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"boe" = (
+/obj/machinery/door/airlock/vault{
+ name = "Vault Door";
+ req_access_txt = "53"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/nuke_storage)
+"bof" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Pool Exterior Access";
+ req_access_txt = "13"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness/cogpool)
+"bog" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"boh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"boi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/fitness/cogpool)
+"boj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bok" = (
+/obj/structure/table/wood,
+/obj/item/paicard,
+/obj/item/toy/sword,
+/obj/item/toy/figure/assistant,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bol" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"bom" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"bon" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"boo" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bop" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"boq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bor" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bos" = (
+/obj/structure/table,
+/obj/item/stack/sheet/cardboard/fifty,
+/obj/item/stack/wrapping_paper,
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/glass,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bot" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bou" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bov" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bow" = (
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMUnload"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"box" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"boy" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"boz" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"boA" = (
+/turf/closed/wall,
+/area/security/detectives_office)
+"boB" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMUnload"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"boC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/sign/departments/cargo{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"boD" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMUnload"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMUnloadDoor";
+ name = "Cargo Unloading Door"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"boE" = (
+/obj/structure/plasticflaps,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMUnload"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"boF" = (
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMUnload"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMUnloadDoor";
+ name = "Cargo Unloading Door"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"boG" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/weldingtool,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/structure/sign/departments/engineering{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"boH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"boI" = (
+/turf/closed/wall/r_wall,
+/area/quartermaster/miningoffice)
+"boJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/obj/machinery/computer/security/telescreen/toxins{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"boK" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/miningoffice)
+"boL" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"boM" = (
+/obj/machinery/mineral/ore_redemption{
+ input_dir = 4;
+ output_dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"boN" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"boO" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/item/storage/box/drinkingglasses{
+ pixel_y = 4
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/crew_quarters/bar)
+"boP" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"boQ" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"boR" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"boS" = (
+/obj/structure/sign/mining,
+/turf/closed/wall/r_wall,
+/area/quartermaster/miningoffice)
+"boT" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"boU" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"boV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"boW" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"boX" = (
+/obj/item/beacon,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"boY" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"boZ" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bpa" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/door/window/westleft{
+ name = "Treatment Center";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bpb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bpc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bpd" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bpe" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/door/window/eastright{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bpf" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bpg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bph" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bpi" = (
+/obj/structure/flora/junglebush/b,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"bpj" = (
+/obj/structure/flora/junglebush,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"bpk" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start/shaft_miner,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bpl" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/autolathe/secure{
+ name = "public autolathe"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bpm" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/item/extinguisher,
+/obj/item/crowbar,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bpn" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpo" = (
+/obj/machinery/holopad,
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"bpp" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bpq" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"bpr" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bps" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/lounge/jazz";
+ name = "Jazz Lounge APC";
+ pixel_y = -26
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bpt" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bpu" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/shaft_miner,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bpv" = (
+/turf/closed/wall/r_wall,
+/area/engine/break_room)
+"bpw" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L6"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpy" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/landmark/observer_start,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpz" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bpA" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bpB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bpC" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L10"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpD" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bpE" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bpF" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L12"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpG" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L14"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpH" = (
+/obj/machinery/jukebox,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bpI" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bpJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/lounge/jazz)
+"bpK" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"bpL" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bpM" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bpN" = (
+/obj/structure/grille,
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bpO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bpP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bpQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bpR" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bpS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security RC";
+ pixel_y = -32
+ },
+/turf/open/floor/carpet/red,
+/area/security/brig)
+"bpT" = (
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit)
+"bpU" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"bpV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos{
+ name = "Aft Air Hookup";
+ req_access_txt = "12;24"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bpW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/security/brig)
+"bpX" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/obey{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"bpY" = (
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bpZ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"bqa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bqb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/civilian)
+"bqc" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/medbay/lobby)
+"bqd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqe" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall,
+/area/medical/medbay/lobby)
+"bqf" = (
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "disposal"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bqg" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "disposal"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bqh" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"bqi" = (
+/obj/machinery/button/door{
+ id = "HoPFore";
+ name = "Fore Shutters";
+ pixel_x = -24;
+ pixel_y = 24;
+ req_access_txt = "57"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bqj" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bql" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hallway/secondary/civilian)
+"bqm" = (
+/turf/closed/wall,
+/area/medical/medbay/lobby)
+"bqn" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqo" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bqp" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bqq" = (
+/obj/machinery/chem_master,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera{
+ c_tag = "Medbay - Chemistry Lab";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"bqr" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bqs" = (
+/obj/structure/closet/emcloset,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bqt" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/suit/apron/surgical,
+/obj/item/clothing/mask/surgical,
+/obj/item/healthanalyzer,
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bqu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Waste Disposal Maintenance";
+ req_one_access_txt = "12;50"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bqv" = (
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"bqw" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "EngiLockdown";
+ name = "Engineering Emergency Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/camera{
+ c_tag = "Engineering - Entrance";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bqx" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bqy" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/camera{
+ c_tag = "Supply - Mining Office";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bqz" = (
+/turf/closed/wall,
+/area/medical/chemistry)
+"bqA" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqB" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Library Access"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/library)
+"bqC" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bqD" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bqE" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bqF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "E.V.A. Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bqG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bqH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bqI" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bqJ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor/incinerator_toxmix{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/engine,
+/area/science/mixing)
+"bqK" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqL" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bqM" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/item/storage/pill_bottle/dice,
+/obj/item/toy/cards/deck,
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bqN" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bqO" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bqP" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bqQ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/hallway/secondary/entry)
+"bqR" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bqS" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bqT" = (
+/obj/machinery/computer/crew,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/window/reinforced/spawner/north,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bqU" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bqV" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bqW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bqX" = (
+/turf/closed/wall/mineral/titanium/nosmooth,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bqY" = (
+/obj/structure/sign/directions/medical{
+ pixel_x = -32;
+ pixel_y = -24
+ },
+/obj/structure/sign/directions/evac{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/structure/sign/directions/supply{
+ pixel_x = -32;
+ pixel_y = -40
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqZ" = (
+/obj/machinery/mineral/equipment_vendor,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bra" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"brb" = (
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/dark,
+/area/science/server{
+ name = "Computer Core"
+ })
+"brc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"brd" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bre" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/central)
+"brf" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"brg" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"brh" = (
+/obj/structure/sign/departments/custodian{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"bri" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/hallway/secondary/civilian)
+"brj" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Starboard Maintenance";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/civilian)
+"brk" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"brl" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/item/paper_bin,
+/obj/item/reagent_containers/glass/bottle/epinephrine,
+/obj/item/reagent_containers/dropper,
+/obj/item/stamp/denied{
+ pixel_x = -8;
+ pixel_y = -2
+ },
+/obj/item/stamp{
+ pixel_x = -8;
+ pixel_y = 2
+ },
+/obj/structure/window/reinforced/spawner/north,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"brm" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"brn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bro" = (
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"brp" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/machinery/smartfridge/disks,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"brq" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"brr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/warning{
+ name = "\improper WARNING: MOVING MACHINERY";
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"brs" = (
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"brt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/chapel/office)
+"bru" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"brv" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"brw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/gateway)
+"brx" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"bry" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"brz" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/science/research";
+ name = "Research Sector APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"brA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/pda_ad600{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/lounge/jazz)
+"brB" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"brC" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"brD" = (
+/obj/structure/table,
+/obj/machinery/door/window/eastright{
+ name = "Auxiliary Tool Storage Desk";
+ req_access_txt = "12"
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/folder,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"brE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"brF" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chem1";
+ name = "chem lab shutters"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"brG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"brH" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/chemistry)
+"brI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Central Hall - Aft";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"brJ" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"brK" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/chem_dispenser,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"brL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"brM" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Merchant Plaza"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"brN" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"brO" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/effect/landmark/start/medical_doctor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"brP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"brQ" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"brR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Construction Area";
+ req_access_txt = "31"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"brS" = (
+/obj/machinery/suit_storage_unit/open,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"brT" = (
+/obj/machinery/suit_storage_unit/open,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"brU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/medical/medbay/lobby)
+"brV" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"brW" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock{
+ name = "Chapel Maintenance";
+ req_one_access_txt = "12;22;26;27;50"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"brX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"brY" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/camera{
+ c_tag = "Waste Disposal - Aft"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"brZ" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-02"
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"bsa" = (
+/obj/structure/table/glass,
+/obj/item/scalpel,
+/obj/item/storage/box/cups,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"bsb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"bsc" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/bottle/ammonia,
+/obj/item/toy/figure/botanist{
+ pixel_x = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bsd" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/clothing/accessory/armband/hydro{
+ pixel_y = 4
+ },
+/obj/item/clothing/accessory/armband/hydro{
+ pixel_y = 4
+ },
+/obj/item/clothing/accessory/armband/hydro{
+ pixel_y = 4
+ },
+/obj/item/clothing/suit/hooded/wintercoat/hydro{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bse" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bsf" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/bed/dogbed/ian,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/sign/poster/official/love_ian{
+ pixel_y = 32
+ },
+/mob/living/simple_animal/pet/dog/corgi/Ian,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"bsg" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bsh" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "Recycler Exterior Access";
+ req_one_access_txt = "13;50"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bsi" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/obj/effect/landmark/xeno_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bsj" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/seed_extractor,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bsk" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bsl" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"bsm" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bsn" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/machinery/plantgenes{
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bso" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/storage/tools)
+"bsp" = (
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"bsq" = (
+/obj/structure/table,
+/obj/machinery/door/window/southleft{
+ name = "Auxiliary Tool Storage Desk";
+ req_access_txt = "12"
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/book/manual/wiki/engineering_hacking,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"bsr" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"bss" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/item/hand_labeler{
+ pixel_y = 8
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/book/manual/wiki/medicine{
+ pixel_x = -6
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bst" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bsu" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bsv" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/warning/vacuum/external,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bsw" = (
+/turf/open/floor/plasteel/stairs/left,
+/area/hydroponics)
+"bsx" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ name = "Recycler Exterior Access";
+ req_one_access_txt = "13;50"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bsy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bsz" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bsA" = (
+/turf/open/floor/plasteel/stairs/right,
+/area/hydroponics)
+"bsB" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bsC" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Hydroponics - Aft"
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bsD" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bsE" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/grass,
+/area/hydroponics)
+"bsF" = (
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/grass,
+/area/hydroponics)
+"bsG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/sign/poster/contraband/borg_fancy_2{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/aft)
+"bsH" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/syringes{
+ pixel_y = 4
+ },
+/turf/open/floor/grass,
+/area/hydroponics)
+"bsI" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bsJ" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 2;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/turf/open/floor/grass,
+/area/hydroponics)
+"bsK" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light,
+/turf/open/floor/grass,
+/area/hydroponics)
+"bsL" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/obj/item/storage/box/syringes,
+/obj/item/storage/box/beakers{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"bsM" = (
+/turf/closed/wall,
+/area/science/robotics/lab)
+"bsN" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/cable_coil/random,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/screwdriver{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"bsO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/civilian)
+"bsP" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/white/full,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"bsQ" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"bsR" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bsS" = (
+/obj/machinery/door/window/northleft{
+ name = "Chapel Office";
+ req_access_txt = "22"
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bsT" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bsU" = (
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bsV" = (
+/turf/closed/wall,
+/area/maintenance/aft)
+"bsW" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"bsX" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bsY" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bsZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bta" = (
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"btb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/secure_data,
+/obj/machinery/requests_console{
+ department = "Detective";
+ departmentType = 5;
+ name = "Detective's Office RC";
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"btc" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/central";
+ dir = 1;
+ name = "Custodial Closet APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"btd" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bte" = (
+/obj/structure/sign/warning/vacuum/external,
+/turf/closed/wall/r_wall,
+/area/quartermaster/miningoffice)
+"btf" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"btg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bth" = (
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/medical/medbay/lobby)
+"bti" = (
+/obj/machinery/door/window/eastleft{
+ name = "Waiting Room"
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"btj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"btk" = (
+/obj/structure/sign/poster/official/nanomichi_ad{
+ pixel_x = 32
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"btl" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"btm" = (
+/obj/machinery/disposal/bin{
+ name = "Chapel Mailbox"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/delivery/white,
+/obj/machinery/requests_console{
+ department = "Chapel";
+ departmentType = 2;
+ name = "Chapel RC";
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"btn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics";
+ name = "robotics lab shutters"
+ },
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"bto" = (
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"btp" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"btq" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"btr" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bts" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/light_construct/small{
+ icon_state = "bulb-construct-stage1";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/aft)
+"btt" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Civilian Wing Hallway - Aft";
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/civilian)
+"btu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hallway/secondary/civilian)
+"btv" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"btw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/department/eva)
+"btx" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bty" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"btz" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"btA" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"btB" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"btC" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"btD" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"btE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Tech Storage";
+ req_access_txt = "23"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"btF" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"btG" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"btH" = (
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"btI" = (
+/obj/structure/closet/secure_closet/brig{
+ name = "Detainee Locker"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"btJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/civilian)
+"btK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Aft Maintenance";
+ req_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"btL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"btM" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"btN" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/weldingtool,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"btO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"btP" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"btQ" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/techstorage/AI,
+/turf/open/floor/plating,
+/area/storage/tech)
+"btR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"btS" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"btT" = (
+/turf/closed/wall/r_wall,
+/area/router)
+"btU" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"btV" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"btW" = (
+/obj/structure/table,
+/obj/machinery/light,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"btX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"btY" = (
+/obj/machinery/door/window/eastright{
+ name = "Waiting Room"
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"btZ" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/router)
+"bua" = (
+/turf/closed/wall/r_wall,
+/area/science/robotics/mechbay)
+"bub" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"buc" = (
+/obj/structure/bed,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"bud" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/conveyor{
+ id = "router_off"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bue" = (
+/turf/closed/wall/r_wall,
+/area/router/eva)
+"buf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/plasticflaps,
+/obj/machinery/door/window/northleft{
+ name = "Showers";
+ req_one_access_txt = "29;47"
+ },
+/turf/open/floor/plasteel,
+/area/science/lab)
+"bug" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall,
+/area/chapel/office)
+"buh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bui" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"buj" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"buk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Routing Depot";
+ req_one_access_txt = "10;31"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bul" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bum" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bun" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"buo" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bup" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"buq" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/router)
+"bur" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bus" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "public_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router)
+"but" = (
+/turf/closed/wall/mineral/titanium/nosmooth,
+/area/hallway/primary/central)
+"buu" = (
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"buv" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"buw" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bux" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"buy" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"buz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/cargo_technician,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"buA" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/medical/medbay/lobby)
+"buB" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Ferry Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"buC" = (
+/obj/structure/table/reinforced,
+/obj/item/integrated_circuit_printer,
+/obj/item/integrated_electronics/wirer,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"buD" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"buE" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/conveyor/auto{
+ id = "router"
+ },
+/turf/open/floor/plating,
+/area/router)
+"buF" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"buG" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"buH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"buI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"buJ" = (
+/obj/item/beacon,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"buK" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"buL" = (
+/obj/structure/closet/crate/coffin,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"buM" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/button/door{
+ id = "capblast";
+ name = "Window Blast Door Control";
+ pixel_x = -6;
+ pixel_y = -3;
+ req_access_txt = "19"
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/heads/captain)
+"buN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall/rust,
+/area/chapel/main)
+"buO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "capblast";
+ name = "blast door"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/captain)
+"buP" = (
+/obj/item/trash/plate,
+/obj/item/lighter/greyscale,
+/obj/item/clothing/mask/cigarette/cigar/cohiba,
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"buQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel Morgue";
+ req_access_txt = "27"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"buR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hop)
+"buS" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/cmo)
+"buT" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/soft_cap_pop_art{
+ pixel_x = -32
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"buU" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/chips{
+ pixel_x = 3;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"buV" = (
+/obj/structure/rack,
+/obj/item/circuitboard/machine/telecomms/processor,
+/obj/item/circuitboard/machine/telecomms/bus,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"buW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/janitor)
+"buX" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/bartender,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"buY" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"buZ" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/soulstone/anybody/chaplain,
+/obj/item/organ/heart,
+/obj/item/book/granter/spell/smoke/lesser,
+/obj/item/nullrod,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"bva" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/closed/wall,
+/area/janitor)
+"bvb" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bvc" = (
+/obj/machinery/computer/cargo/request,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"bvd" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bve" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Construction Area";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/construction)
+"bvf" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-10"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"bvg" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/destTagger,
+/obj/effect/turf_decal/bot,
+/obj/machinery/requests_console{
+ department = "EVA Router";
+ name = "EVA Router RC";
+ pixel_y = 28
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/router/eva)
+"bvh" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bvi" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bvj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bvk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bvl" = (
+/obj/item/trash/plate,
+/obj/item/kitchen/fork,
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bvm" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"bvn" = (
+/obj/machinery/rnd/production/protolathe/department/science,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/lab)
+"bvo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bvp" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"bvq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Kitchen";
+ req_access_txt = "28"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bvr" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"bvs" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/department/chapel)
+"bvt" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bvu" = (
+/turf/closed/wall/r_wall,
+/area/chapel/office)
+"bvv" = (
+/turf/closed/wall/r_wall/rust,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"bvw" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"bvx" = (
+/obj/structure/grille,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bvy" = (
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bvz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/router/eva)
+"bvA" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/effect/landmark/start/cook,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"bvB" = (
+/turf/closed/wall/r_wall/rust,
+/area/router)
+"bvC" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/retaliate/goat{
+ name = "Pete"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"bvD" = (
+/obj/machinery/camera{
+ c_tag = "Bar - Starboard";
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bvE" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"bvF" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bvG" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bvH" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/bar)
+"bvI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/department/chapel)
+"bvJ" = (
+/obj/structure/chair/comfy/brown,
+/obj/effect/landmark/start/head_of_personnel,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"bvK" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bvL" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bvM" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "External Construction Access";
+ req_one_access_txt = "10;31"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bvN" = (
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/department/chapel)
+"bvO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bvP" = (
+/obj/machinery/space_heater,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bvQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"bvR" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bvS" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bvT" = (
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bvU" = (
+/obj/item/caution,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/warning/biohazard{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bvV" = (
+/obj/structure/table,
+/obj/machinery/light/small,
+/obj/item/storage/pill_bottle/epinephrine,
+/obj/item/wrench{
+ pixel_x = -8
+ },
+/obj/item/extinguisher{
+ pixel_x = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bvW" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bvX" = (
+/obj/machinery/door/airlock/external{
+ name = "External Construction Access";
+ req_one_access_txt = "10;31"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bvY" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"bvZ" = (
+/obj/item/folder,
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bwa" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bwb" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Air Hookup";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bwc" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bwd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bwe" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bwf" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bwg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bwh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/requests_console{
+ department = "Routing Depot";
+ name = "Routing Depot RC";
+ pixel_y = 28
+ },
+/obj/machinery/button/massdriver{
+ id = "eva_in";
+ name = "mass driver button (EVA)";
+ pixel_x = -24
+ },
+/obj/machinery/button/massdriver{
+ id = "public_in";
+ name = "mass driver button (Public)";
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bwi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bwj" = (
+/obj/machinery/space_heater,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bwk" = (
+/obj/machinery/chem_master,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/disposal)
+"bwl" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/sign/poster/official/safety_report{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"bwm" = (
+/obj/structure/sign/departments/science,
+/turf/closed/wall/r_wall,
+/area/gateway)
+"bwn" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bwo" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/mob/living/simple_animal/cockroach,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bwp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bwq" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bwr" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bws" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/autolathe/secure{
+ name = "public autolathe"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bwt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bwu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/item/trash/can,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bwv" = (
+/obj/machinery/disposal/bin{
+ name = "Mass Driver"
+ },
+/obj/structure/sign/warning/deathsposal{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bww" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bwx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/janitor)
+"bwy" = (
+/obj/machinery/vending/wardrobe/jani_wardrobe,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bwz" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bwA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"bwB" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/bot_assembly/medbot,
+/obj/item/clothing/head/hardhat{
+ pixel_x = -2;
+ pixel_y = 6;
+ pressure_resistance = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bwC" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/off{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/storage/box/mousetraps,
+/obj/item/light/tube,
+/obj/item/radio/off{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Routing Depot"
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bwD" = (
+/obj/structure/table/reinforced,
+/obj/item/analyzer,
+/obj/item/wrench,
+/obj/item/screwdriver,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bwE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bwF" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bwG" = (
+/obj/item/cigbutt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bwH" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/storage/box/mre/menu2/safe,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bwI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bwJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"bwK" = (
+/obj/machinery/camera{
+ c_tag = "Research - Gateway Chamber";
+ network = list("ss13","rd")
+ },
+/obj/machinery/gateway{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"bwL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bwM" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"bwN" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins Lab - Port";
+ network = list("ss13","rd")
+ },
+/obj/machinery/meter,
+/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bwO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bwP" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bwQ" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "router_off"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bwR" = (
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bwS" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bwT" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bwU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bwV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bwW" = (
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bwX" = (
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bwY" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bwZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/clothing/under/misc/mailman,
+/obj/item/clothing/head/mailman,
+/obj/item/wirecutters,
+/obj/item/stack/packageWrap,
+/turf/open/floor/plasteel,
+/area/router)
+"bxa" = (
+/obj/structure/frame/computer,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bxb" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Waste Disposal - Port";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bxc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bxd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bxe" = (
+/obj/item/stack/tile/plasteel{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bxf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "EVA Router";
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"bxg" = (
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/stack/tile/plasteel{
+ pixel_x = 8;
+ pixel_y = 14
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bxh" = (
+/obj/machinery/disposal/bin{
+ name = "Corpse Disposal"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery/red,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bxi" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/clothing/gloves/color/purple,
+/obj/item/clothing/gloves/color/purple,
+/obj/item/clothing/under/costume/maid,
+/obj/item/clothing/under/costume/maid,
+/obj/structure/sign/poster/official/bless_this_spess{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"bxj" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/aft)
+"bxk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bxl" = (
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"bxm" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer)
+"bxn" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxo" = (
+/obj/machinery/door/airlock/external{
+ name = "Telecommunications External Access";
+ req_access_txt = "61"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bxp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bxq" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bxr" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/item/radio/off{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/restraints/legcuffs/beartrap,
+/obj/item/restraints/legcuffs/beartrap,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bxs" = (
+/obj/item/storage/toolbox/mechanical/old,
+/obj/item/reagent_containers/food/snacks/chips{
+ pixel_x = 3;
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bxt" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Telecommunications External Access";
+ req_access_txt = "61"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bxu" = (
+/obj/structure/rack,
+/obj/item/circuitboard/machine/telecomms/broadcaster,
+/obj/item/circuitboard/machine/telecomms/receiver,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxv" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxw" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard/aft)
+"bxx" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxy" = (
+/obj/item/trash/candle,
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/disposal)
+"bxz" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/computer/station_alert,
+/obj/structure/sign/poster/official/safety_eye_protection{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/paper/guides/cogstation/letter_eng,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bxA" = (
+/obj/machinery/announcement_system,
+/turf/open/floor/plasteel/dark,
+/area/tcommsat/computer)
+"bxB" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/computer/message_monitor{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxC" = (
+/obj/structure/closet/emcloset/anchored,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bxD" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/door/airlock/engineering{
+ name = "Telecommunications Chamber";
+ req_access_txt = "61"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxE" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 29
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bxG" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bxH" = (
+/turf/closed/wall,
+/area/storage/tech)
+"bxI" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxJ" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/shoes/winterboots,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxK" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/radio/off,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bxM" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bxN" = (
+/obj/structure/rack,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/spawner/lootdrop/techstorage/command,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bxO" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bxP" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Central Starboard Exterior Access";
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bxQ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxR" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/conveyor_switch{
+ id = "MiningConveyer"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bxS" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bxT" = (
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bxU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bxV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bxW" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxX" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxY" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bxZ" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bya" = (
+/obj/machinery/computer/telecomms/monitor{
+ dir = 1;
+ network = "tcommsat"
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"byb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/tcommsat/server)
+"byc" = (
+/obj/machinery/igniter/incinerator_toxmix,
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"byd" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/item/pen/fountain{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/stamp/hop,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"bye" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"byf" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Telecommunications Mainframe";
+ req_access_txt = "61"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel,
+/area/tcommsat/server)
+"byg" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"byh" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"byi" = (
+/turf/closed/wall/r_wall,
+/area/tcommsat/server)
+"byj" = (
+/turf/open/floor/plasteel,
+/area/tcommsat/server)
+"byk" = (
+/obj/machinery/telecomms/message_server,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byl" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Telecommunications Mainframe";
+ req_access_txt = "61"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/server)
+"bym" = (
+/obj/machinery/announcement_system,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byn" = (
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"byo" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/pen,
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Game Room";
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"byp" = (
+/obj/machinery/telecomms/bus/preset_three,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byq" = (
+/obj/machinery/telecomms/receiver/preset_left,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byr" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/flashlight/lamp/green,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bys" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"byt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Central Starboard Exterior Access"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"byu" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Central Starboard Exterior Access";
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"byv" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"byw" = (
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"byx" = (
+/obj/machinery/telecomms/processor/preset_three,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byy" = (
+/obj/machinery/telecomms/bus/preset_one,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byz" = (
+/obj/machinery/telecomms/receiver/preset_right,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byA" = (
+/obj/machinery/telecomms/processor/preset_one,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byB" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"byC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"byD" = (
+/obj/machinery/camera{
+ c_tag = "Medbay - Lobby";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"byE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/button/massdriver{
+ id = "eva_out";
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"byF" = (
+/obj/structure/window/reinforced/spawner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "EVA"
+ },
+/turf/open/floor/plating,
+/area/router/eva)
+"byG" = (
+/obj/machinery/telecomms/server/presets/service,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byH" = (
+/obj/machinery/telecomms/server/presets/common,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byI" = (
+/obj/machinery/telecomms/hub/preset,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byJ" = (
+/obj/machinery/telecomms/server/presets/security,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byK" = (
+/obj/machinery/telecomms/server/presets/command,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byL" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"byM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Maintenance";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"byN" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/morgue)
+"byO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/tile/plasteel{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"byP" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"byQ" = (
+/turf/closed/wall,
+/area/medical/morgue)
+"byR" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"byS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"byT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"byU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"byV" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"byW" = (
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ sortType = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"byX" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"byY" = (
+/obj/vehicle/ridden/janicart,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/item/key/janitor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"byZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/reinforced/spawner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "eva_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router/eva)
+"bza" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bzb" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "Ferry Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bzc" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/techstorage/security,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bzd" = (
+/turf/open/floor/plating,
+/area/storage/tech)
+"bze" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/mob/living/simple_animal/cockroach,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bzf" = (
+/obj/structure/janitorialcart,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"bzg" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/janitor)
+"bzh" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bzi" = (
+/obj/item/cardboard_cutout,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bzj" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/assembly/flash,
+/obj/item/assembly/flash,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bzk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bzl" = (
+/obj/structure/closet/secure_closet,
+/obj/effect/spawner/lootdrop/organ_spawner,
+/obj/effect/spawner/lootdrop/organ_spawner,
+/obj/effect/spawner/lootdrop/organ_spawner,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bzm" = (
+/obj/machinery/conveyor{
+ dir = 5;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bzn" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bzo" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/fragile,
+/obj/item/clothing/head/helmet/space/fragile,
+/obj/item/tank/internals/air,
+/obj/item/flashlight,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bzp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"bzq" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/warning/pods{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bzr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/obj/machinery/meter,
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bzs" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bzt" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bzu" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "MiningConveyer"
+ },
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningoffice)
+"bzv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "MiningConveyer"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningoffice)
+"bzw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bzx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Room";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"bzy" = (
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bzz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"bzA" = (
+/obj/machinery/power/apc{
+ areastring = "/area/medical/chemistry";
+ dir = 1;
+ name = "Chemistry APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bzB" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bzC" = (
+/obj/structure/closet/toolcloset,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bzD" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "evablock";
+ name = "EVA Router"
+ },
+/turf/open/floor/plating,
+/area/router/eva)
+"bzE" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "router_off"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bzF" = (
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "router_off"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bzG" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bzH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bzI" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bzJ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bzK" = (
+/obj/machinery/disposal/bin{
+ name = "Chapel Corpse Delivery"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/red/full,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bzL" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bzM" = (
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bzN" = (
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bzO" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "recycler";
+ name = "Recycler Conveyor Control"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bzP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plating,
+/area/router)
+"bzQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bzR" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bzS" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/healthanalyzer,
+/obj/item/reagent_containers/spray/cleaner,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bzT" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/port/central";
+ dir = 4;
+ name = "Central Port Maintenance APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"bzU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 6
+ },
+/obj/machinery/meter,
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bzV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bzW" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bzX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Launch Room";
+ req_access_txt = "7;8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bzY" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bzZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/quartermaster/miningoffice)
+"bAa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bAb" = (
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"bAc" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bAd" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bAe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bAf" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"bAg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bAh" = (
+/obj/item/reagent_containers/food/condiment/pack/mustard{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/condiment/pack/ketchup{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bAi" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bAj" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bAk" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Recycler";
+ req_one_access_txt = "12;50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bAl" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bAm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/cigbutt,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bAn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"bAo" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bAp" = (
+/obj/structure/bed,
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/item/bedsheet/purple,
+/obj/effect/landmark/start/janitor,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bAq" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bAr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bAs" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bAt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Fore Maintenance - Starboard";
+ pixel_x = 22
+ },
+/obj/structure/sign/warning{
+ name = "\improper CONSTRUCTION AREA";
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bAu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bAv" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/qm,
+/obj/effect/landmark/start/quartermaster,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bAw" = (
+/obj/item/paper/fluff/bee_objectives,
+/obj/item/toy/plush/beeplushie,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"bAx" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bAy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bAz" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"bAA" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bAB" = (
+/obj/item/beacon,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bAC" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bAD" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Chemistry Desk";
+ req_access_txt = "33"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bAE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "chem1";
+ name = "Shutters Control Button";
+ pixel_x = -8;
+ pixel_y = 24;
+ req_access_txt = "29"
+ },
+/obj/effect/landmark/start/chemist,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bAF" = (
+/obj/machinery/gateway/centerstation,
+/turf/open/floor/engine,
+/area/gateway)
+"bAG" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bAH" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bAI" = (
+/obj/machinery/photocopier,
+/obj/machinery/requests_console{
+ department = "Law Office";
+ name = "Law Office RC";
+ pixel_y = 32
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"bAJ" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/clothing/neck/stethoscope,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/stamp/cmo,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/cmo";
+ dir = 1;
+ name = "Chief Medical Officer's Office APC";
+ pixel_y = 24
+ },
+/mob/living/simple_animal/pet/cat/Runtime,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"bAK" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bAL" = (
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: WASTE EJECTION";
+ pixel_x = -32
+ },
+/turf/open/space/basic,
+/area/space)
+"bAM" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bAN" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"bAO" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bAP" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bAQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bAR" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Thermo-Electric Generator Room";
+ req_access_txt = "10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"bAS" = (
+/turf/closed/wall/r_wall/rust,
+/area/maintenance/disposal)
+"bAT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bAU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bAV" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bAW" = (
+/obj/structure/sign/poster/official/get_your_legs,
+/turf/closed/wall,
+/area/hallway/secondary/exit)
+"bAX" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/item/paper/fluff/cogstation/letter_cap{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/flashlight/lamp,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bAY" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/hallway/secondary/exit)
+"bAZ" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"bBa" = (
+/obj/structure/sign/poster/official/help_others,
+/turf/closed/wall,
+/area/hallway/secondary/exit)
+"bBb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/grille/broken,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/chapel)
+"bBc" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 8
+ },
+/area/hallway/secondary/exit)
+"bBd" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/snacks/popcorn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bBe" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/structure/sign/warning/pods{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bBf" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bBg" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bBh" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "recycler"
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bBi" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bBj" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/crew_quarters/heads/captain";
+ dir = 4;
+ name = "Captain's Quarters APC";
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/captain)
+"bBk" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bBl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bBm" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"bBn" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bBo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Thermo-Electric Generator";
+ req_one_access_txt = "10;24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"bBp" = (
+/obj/machinery/conveyor/inverted{
+ dir = 9;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bBq" = (
+/obj/machinery/recycler,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bBr" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bBs" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bBt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bBu" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bBv" = (
+/turf/closed/wall,
+/area/router)
+"bBw" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/white/corner{
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"bBx" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/multitool,
+/obj/item/t_scanner,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bBy" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bBz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bBA" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/structure/ore_box,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bBB" = (
+/obj/machinery/conveyor/auto{
+ id = "router"
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ sortType = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bBC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bBD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bBE" = (
+/obj/structure/grille,
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bBF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bBG" = (
+/obj/machinery/conveyor/inverted{
+ dir = 10;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bBH" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bBI" = (
+/obj/machinery/computer/shuttle/mining,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bBJ" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"bBK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/door{
+ id = "recycleraccess";
+ name = "Recycler Access Control";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bBL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bBM" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bBN" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/mixing)
+"bBO" = (
+/turf/closed/wall/r_wall,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bBP" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/door/window/eastright{
+ name = "Chemistry Desk";
+ req_access_txt = "33"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bBQ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/medbay/central)
+"bBR" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Computer Core APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bBS" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bBT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bBU" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/structure/sign/departments/cargo{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bBV" = (
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bBW" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bBX" = (
+/obj/machinery/door/airlock/external{
+ name = "Routing Depot";
+ req_one_access_txt = "10;31"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bBY" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ name = "EVA Router";
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"bBZ" = (
+/turf/closed/wall,
+/area/hallway/secondary/exit)
+"bCa" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bCb" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"bCc" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"bCd" = (
+/obj/effect/landmark/start/captain,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bCe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Personnel's Desk";
+ departmentType = 5;
+ name = "Head of Personnel RC";
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"bCf" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bCg" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bCh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"bCi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bCj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bCk" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bCl" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bCm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum/external,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bCn" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bCo" = (
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bCp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bCq" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "recycler"
+ },
+/obj/machinery/door/poddoor{
+ id = "recycleraccess";
+ name = "Recycler Access"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bCr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bCs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bCt" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/storage/box/engineer{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"bCu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"bCv" = (
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bCw" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "eva"
+ },
+/turf/open/floor/plating,
+/area/router/eva)
+"bCx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bCy" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/reinforced/spawner/north,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "eva"
+ },
+/turf/open/floor/plating,
+/area/router/eva)
+"bCz" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/under/misc/overalls,
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bCA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bCB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bCC" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bCD" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1;
+ sortType = 29
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bCE" = (
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "eva"
+ },
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "evablock";
+ name = "EVA Router"
+ },
+/turf/open/floor/plating,
+/area/router/eva)
+"bCF" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"bCG" = (
+/obj/item/cigbutt,
+/obj/item/radio/intercom{
+ frequency = 1359;
+ name = "Station Intercom (Security)";
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bCH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bCI" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bCJ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"bCK" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bCL" = (
+/turf/closed/wall/rust,
+/area/security/detectives_office)
+"bCM" = (
+/turf/closed/wall/r_wall/rust,
+/area/security/detectives_office)
+"bCN" = (
+/obj/structure/filingcabinet,
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bCO" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bCP" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase,
+/obj/item/taperecorder,
+/obj/item/radio{
+ pixel_x = -6
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bCQ" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/med_data/laptop{
+ dir = 8;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bCR" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "airbridge_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bCS" = (
+/obj/structure/closet,
+/obj/machinery/camera{
+ c_tag = "Central Plaza - Legal Desk";
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bCT" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/sorting/mail/flip,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "router_off"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bCU" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/maintenance/disposal)
+"bCV" = (
+/turf/open/floor/plating/airless,
+/area/maintenance/disposal)
+"bCW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Thermo-Electric Generator";
+ req_one_access_txt = "10;24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"bCX" = (
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
+/obj/item/reagent_containers/glass/beaker/sulphuric,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/lab)
+"bCY" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bCZ" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "router_off"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bDa" = (
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bDb" = (
+/mob/living/simple_animal/mouse/white{
+ desc = "Wubba lubba dub dub.";
+ name = "Rick"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bDc" = (
+/obj/machinery/vending/security,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bDd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Aft Maintenance - Port";
+ pixel_x = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bDe" = (
+/obj/machinery/disposal/bin{
+ name = "Corpse Delivery"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery/red,
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"bDf" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/techstorage/service,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bDg" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/techstorage/medical,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bDh" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/techstorage/rnd,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bDi" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ name = "Service Hallway";
+ req_one_access_txt = "25;26;28;35"
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"bDj" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"bDk" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ sortType = 15
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"bDl" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bDm" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/highcap/five_k{
+ areastring = "/area/hallway/primary/aft";
+ dir = 1;
+ name = "Aft Primary Hallway APC";
+ pixel_x = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bDn" = (
+/obj/machinery/icecream_vat,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"bDo" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bDp" = (
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"bDq" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"bDr" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"bDs" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"bDt" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"bDu" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/book/manual/wiki/barman_recipes,
+/obj/item/reagent_containers/rag,
+/obj/structure/table/wood/fancy,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bDv" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"bDw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "AIChamberShutter";
+ name = "AI Chamber Shutters"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"bDx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDy" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bDz" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Service Hallway - Aft";
+ pixel_x = 22
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDA" = (
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/service)
+"bDB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"bDC" = (
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "router_off"
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/router)
+"bDE" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/food/snacks/store/cheesewheel,
+/obj/item/reagent_containers/food/snacks/grown/pineapple,
+/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,
+/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,
+/obj/item/reagent_containers/food/snacks/grown/tomato,
+/obj/item/reagent_containers/food/snacks/grown/tomato,
+/obj/item/reagent_containers/food/snacks/grown/bluecherries,
+/obj/item/reagent_containers/food/snacks/grown/citrus/lime,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDF" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDG" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDH" = (
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDI" = (
+/obj/structure/closet/crate/freezer,
+/obj/effect/spawner/lootdrop/three_course_meal,
+/obj/item/reagent_containers/food/snacks/chocolatebar,
+/obj/item/reagent_containers/food/snacks/chocolatebar,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDJ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bDK" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"bDL" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bDM" = (
+/obj/structure/table/reinforced,
+/obj/item/transfer_valve{
+ pixel_x = 6
+ },
+/obj/item/transfer_valve{
+ pixel_x = 6
+ },
+/obj/item/transfer_valve,
+/obj/item/transfer_valve,
+/obj/item/transfer_valve{
+ pixel_x = -6
+ },
+/obj/item/transfer_valve{
+ pixel_x = -6
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins Lab - Starboard";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (Common)";
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bDN" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bDO" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bDP" = (
+/obj/machinery/computer/message_monitor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/circuit,
+/area/bridge)
+"bDQ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"bDR" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"bDS" = (
+/turf/open/floor/plasteel/stairs,
+/area/crew_quarters/bar)
+"bDT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall,
+/area/science/robotics/lab)
+"bDU" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "AIChamberShutter";
+ name = "AI Chamber Shutters"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"bDV" = (
+/turf/open/floor/plasteel/stairs/left,
+/area/crew_quarters/bar)
+"bDW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "AI Chamber";
+ req_access_txt = "65"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/ai)
+"bDX" = (
+/turf/open/floor/plasteel/stairs/right,
+/area/crew_quarters/bar)
+"bDY" = (
+/obj/structure/sign/barsign,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"bDZ" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4;
+ sortType = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bEa" = (
+/obj/structure/chair/stool/bar,
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"bEb" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"bEc" = (
+/obj/structure/table,
+/obj/item/radio/off{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/radio/off{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/obj/item/radio/off{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/circuit,
+/area/bridge)
+"bEd" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bEe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "router_off"
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bEf" = (
+/obj/structure/reagent_dispensers,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"bEg" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"bEh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "router_off"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bEi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bEj" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/structure/closet/crate,
+/obj/machinery/camera{
+ c_tag = "Waste Disposal - Starboard"
+ },
+/obj/item/stack/tile/noslip/thirty,
+/obj/structure/sign/poster/official/ue_no{
+ pixel_y = 32
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/disposal)
+"bEk" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bEl" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bEm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel's Office";
+ req_access_txt = "57"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"bEn" = (
+/obj/machinery/computer/card{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"bEo" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bEp" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/solars/starboard/fore)
+"bEq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bEr" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/locker";
+ dir = 8;
+ name = "Locker Room APC";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bEs" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/storage/eva";
+ dir = 4;
+ name = "EVA APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"bEt" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"bEu" = (
+/obj/structure/sign/warning{
+ name = "\improper CONSTRUCTION AREA";
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"bEv" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"bEw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Starboard Bow Solar Maintenance";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"bEx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "router_off"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bEy" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/stock_parts/cell/high/plus,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"bEz" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"bEA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Starboard Bow Solar Maintenance";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
+"bEB" = (
+/obj/structure/rack,
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 32
+ },
+/obj/item/radio/off{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/obj/item/flashlight,
+/obj/item/crowbar/red,
+/obj/item/crowbar/red{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/radio/off{
+ pixel_x = -8
+ },
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/obj/machinery/camera{
+ c_tag = "Starboard Bow Maintenance - Port";
+ pixel_x = 22
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"bEC" = (
+/obj/structure/table/glass,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bED" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bEE" = (
+/obj/structure/table,
+/obj/item/clothing/under/shorts/red,
+/obj/item/clothing/under/shorts/red,
+/obj/item/clothing/gloves/boxing{
+ pixel_y = 8
+ },
+/obj/item/clothing/gloves/boxing{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bEF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bEG" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"bEH" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/kitchen/backroom)
+"bEI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bEJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bEK" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bEL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bEM" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bEN" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/camera{
+ c_tag = "Bridge - Captain's Quarters";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Captain's Desk";
+ departmentType = 5;
+ name = "Captain RC";
+ pixel_x = 30
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bEO" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bEP" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/structure/sign/poster/official/high_class_martini{
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bEQ" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/disposal";
+ dir = 8;
+ name = "Waste Disposal APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bER" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"bES" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"bET" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bEU" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bEV" = (
+/obj/item/radio/intercom{
+ frequency = 1359;
+ name = "Station Intercom (Security)";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"bEW" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bEX" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"bEY" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bEZ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "AIChamberShutter";
+ name = "AI Chamber Shutters"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"bFa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/router)
+"bFb" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/router)
+"bFc" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bFd" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bFe" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bFf" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/aiModule/supplied/oxygen{
+ pixel_x = 2;
+ pixel_y = 10
+ },
+/obj/item/aiModule/supplied/quarantine{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/item/aiModule/zeroth/oneHuman{
+ pixel_y = 4
+ },
+/obj/effect/spawner/lootdrop/aimodule_harmful{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/item/aiModule/supplied/protectStation{
+ pixel_x = -2
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bFg" = (
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bFh" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bFi" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bFj" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/circuit/telecomms,
+/area/science/xenobiology)
+"bFk" = (
+/turf/open/floor/circuit/telecomms,
+/area/science/xenobiology)
+"bFl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"bFm" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bFn" = (
+/turf/open/floor/plating/asteroid,
+/area/chapel/main)
+"bFo" = (
+/obj/machinery/smartfridge/extract/preloaded,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bFp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bFq" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line,
+/obj/item/slime_scanner,
+/obj/item/slime_scanner,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bFr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"bFs" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bFt" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bFu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics";
+ name = "robotics lab shutters"
+ },
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"bFv" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bFw" = (
+/obj/machinery/monkey_recycler,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/science/xenobiology";
+ name = "Xenobiology Lab APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bFx" = (
+/obj/machinery/mecha_part_fabricator,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bFy" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bFz" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/item/paper/guides/cogstation/janitor,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bFA" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bFB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/science/lab)
+"bFC" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/snack/random,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bFD" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bFE" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bFF" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bFG" = (
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bFH" = (
+/obj/machinery/power/apc{
+ name = "Customs APC";
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bFI" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bFJ" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bFK" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFL" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFM" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFN" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bFO" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFP" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFQ" = (
+/obj/structure/table,
+/obj/item/clothing/under/shorts/blue,
+/obj/item/clothing/under/shorts/blue,
+/obj/item/clothing/gloves/boxing/blue{
+ pixel_y = 8
+ },
+/obj/item/clothing/gloves/boxing/blue{
+ pixel_y = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bFR" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-08"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bFS" = (
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bFT" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFU" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFV" = (
+/obj/structure/window/reinforced,
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFW" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"bFX" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bFY" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bFZ" = (
+/obj/machinery/chem_heater,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bGa" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bGb" = (
+/obj/machinery/conveyor/auto{
+ id = "router"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bGc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bGd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bGe" = (
+/mob/living/simple_animal/crab/Coffee,
+/turf/open/floor/plating/asteroid,
+/area/chapel/main)
+"bGf" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGg" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bGh" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bGi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bGj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bGk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/router)
+"bGl" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/poster/contraband/punch_shit{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bGm" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bGn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"bGo" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"bGp" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"bGq" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"bGr" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bGs" = (
+/obj/machinery/vending/assist,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"bGt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bGu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Fore Maintenance";
+ req_one_access_txt = "12;46"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/port/fore)
+"bGv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Arcade"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"bGw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Fitness Room"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"bGx" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness)
+"bGy" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/massdriver{
+ id = "eng_in";
+ name = "mass driver button (Engineering)";
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/obj/machinery/button/massdriver{
+ id = "router_out";
+ name = "mass driver button (Other)";
+ pixel_x = 24;
+ pixel_y = 12
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bGz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"bGA" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bGB" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bGC" = (
+/obj/structure/closet/emcloset,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/camera{
+ c_tag = "Starboard Quarter Maintenance - Starboard";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bGD" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bGE" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bGF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Starboard Quarter Solar Access";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bGG" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"bGH" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"bGI" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/central)
+"bGJ" = (
+/obj/structure/rack,
+/obj/item/storage/box/bodybags,
+/obj/item/clothing/gloves/color/grey,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bGK" = (
+/obj/machinery/conveyor{
+ id = "starboard_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"bGL" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bGM" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-20";
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bGN" = (
+/obj/structure/closet/wardrobe/white,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bGO" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/machinery/door/window/eastright{
+ name = "Bathroom Stall"
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"bGP" = (
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "secserv";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"bGQ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/violet/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bGR" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/clothing/under/misc/staffassistant,
+/obj/item/clothing/under/misc/staffassistant,
+/obj/item/clothing/under/misc/staffassistant,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bGS" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/machinery/door/window/eastright{
+ name = "Bathroom Stall"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"bGT" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"bGU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"bGV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"bGW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/port/fore)
+"bGX" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bGY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bGZ" = (
+/obj/structure/closet/crate/internals,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"bHa" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d8b1b1"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/router/eva";
+ dir = 4;
+ name = "EVA Router APC";
+ pixel_x = 24
+ },
+/obj/machinery/button/door{
+ id = "evablock";
+ name = "Router Access Control";
+ pixel_x = 24;
+ pixel_y = 10;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel,
+/area/router/eva)
+"bHb" = (
+/obj/structure/closet/wardrobe/black,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHc" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/obj/structure/window/reinforced/spawner/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bHd" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"bHe" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/violet/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bHf" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHg" = (
+/obj/machinery/atmospherics/pipe/simple/violet/visible,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bHh" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bHi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"bHj" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin/towel,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHk" = (
+/turf/closed/wall,
+/area/crew_quarters/locker)
+"bHl" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/fore)
+"bHm" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/port/fore)
+"bHn" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bHo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHp" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bHq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHr" = (
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHs" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHt" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bHu" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHv" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/clothing/under/misc/staffassistant,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHw" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/clothing/under/misc/staffassistant,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHx" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHy" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-14"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bHz" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bHA" = (
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bHB" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/crew_quarters/locker)
+"bHC" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bHD" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/aft)
+"bHE" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bHF" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/timer{
+ pixel_x = -5
+ },
+/obj/item/assembly/timer{
+ pixel_y = -7
+ },
+/obj/item/assembly/timer{
+ pixel_y = 6
+ },
+/obj/item/assembly/timer{
+ pixel_x = 8
+ },
+/obj/machinery/airalarm/unlocked{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bHG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/maintenance/aft)
+"bHH" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/space_cube{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/gateway)
+"bHI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bHJ" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-03"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bHK" = (
+/obj/structure/sign/warning/biohazard,
+/turf/closed/wall,
+/area/medical/morgue)
+"bHL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bHM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bHN" = (
+/turf/closed/wall,
+/area/maintenance/solars/starboard/aft)
+"bHO" = (
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bHP" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = -32
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bHQ" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bHR" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bHS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/circuit/telecomms,
+/area/science/xenobiology)
+"bHT" = (
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bHU" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bHV" = (
+/obj/machinery/processor/slime,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bHW" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bHX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Port Bow Maintenance";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"bHY" = (
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bHZ" = (
+/turf/closed/indestructible{
+ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
+ icon_state = "riveted";
+ name = "hyper-reinforced wall"
+ },
+/area/science/test_area)
+"bIa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bIb" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bIc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ sortType = 14
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bId" = (
+/obj/structure/table,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/item/storage/box/bodybags,
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"bIe" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 1
+ },
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 1
+ },
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_y = 31;
+ receive_ore_updates = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bIf" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemistry Maintenance";
+ req_access_txt = "5; 33"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"bIg" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/reagent_containers/food/snacks/chips,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bIh" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery/white,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bIi" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/turf/closed/wall,
+/area/medical/chemistry)
+"bIj" = (
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/item/tank/internals/anesthetic,
+/obj/item/clothing/mask/breath,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"bIk" = (
+/turf/closed/wall/r_wall,
+/area/science/robotics/lab)
+"bIl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bIm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bIn" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bIo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/directions/evac{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bIp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bIq" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bIr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bIs" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bIt" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bIu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access_txt = "5;6"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bIv" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bIw" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bIx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bIy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10;13"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bIz" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bIA" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bIB" = (
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bIC" = (
+/obj/machinery/conveyor/auto{
+ id = "disposal"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bID" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"bIE" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/circuit/telecomms,
+/area/science/xenobiology)
+"bIF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bIG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bIH" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bII" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bIJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bIK" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/item/extinguisher{
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/obj/item/extinguisher,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bIL" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/dropper,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bIM" = (
+/obj/machinery/shower{
+ desc = "The HS-451. Standard Nanotrasen Hygiene Division design, although it looks like this one was installed more recently.";
+ dir = 8;
+ name = "emergency shower";
+ pixel_y = -4
+ },
+/obj/structure/window/reinforced/spawner/north,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"bIN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bIO" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bIP" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bIQ" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bIR" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bIS" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bIT" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/violet/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bIU" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bIV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bIW" = (
+/obj/structure/table/wood,
+/obj/machinery/light,
+/obj/item/reagent_containers/food/drinks/bottle/absinthe,
+/obj/item/stack/spacecash/c20,
+/obj/item/coin/gold,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"bIX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bIY" = (
+/obj/machinery/atmospherics/pipe/simple/violet/hidden,
+/turf/open/space/basic,
+/area/space)
+"bIZ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bJa" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bJb" = (
+/obj/machinery/bloodbankgen,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bJc" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bJd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bJe" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bJf" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemistry Maintenance";
+ req_access_txt = "5; 33"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"bJg" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/storage/box/rxglasses{
+ pixel_x = 2
+ },
+/obj/item/pen,
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bJh" = (
+/obj/structure/sign/warning/biohazard,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/morgue)
+"bJi" = (
+/obj/structure/bodycontainer/morgue,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bJj" = (
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bJk" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bJl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bJm" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/lawoffice";
+ dir = 1;
+ name = "Information Office APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bJn" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clothing/mask/muzzle,
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bJo" = (
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"bJp" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bJq" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"bJr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 1
+ },
+/turf/open/floor/circuit/telecomms,
+/area/science/xenobiology)
+"bJs" = (
+/obj/structure/rack,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/item/clothing/suit/hooded/wintercoat/science,
+/obj/item/clothing/suit/hooded/wintercoat/science,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/shoes/winterboots,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bJt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bJu" = (
+/obj/effect/turf_decal/loading_area,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/science/lab";
+ dir = 8;
+ name = "Research and Development APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bJv" = (
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bJw" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bJx" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bJy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bJz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bJA" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Circuitry Lab";
+ req_access_txt = "47"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bJB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bJC" = (
+/obj/machinery/camera{
+ c_tag = "Library";
+ network = list("ss13","rd")
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/library)
+"bJD" = (
+/obj/machinery/disposal/bin{
+ name = "Corpse Disposal Unit"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/stripes/red/full,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"bJE" = (
+/obj/machinery/mecha_part_fabricator,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bJF" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bJG" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bJH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics2";
+ name = "robotics lab shutters"
+ },
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"bJI" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bJJ" = (
+/obj/machinery/computer/med_data,
+/obj/structure/window/reinforced/spawner/east,
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"bJK" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/medical/medbay/lobby)
+"bJL" = (
+/obj/machinery/dna_scannernew,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"bJM" = (
+/obj/machinery/camera/preset/toxins{
+ dir = 4
+ },
+/obj/item/target,
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"bJN" = (
+/obj/machinery/clonepod,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"bJO" = (
+/obj/structure/table,
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/item/storage/firstaid/radbgone,
+/obj/item/reagent_containers/glass/beaker/synthflesh,
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"bJP" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bJQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bJR" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bJS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ sortType = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bJT" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bJU" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bJV" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
+ dir = 1;
+ name = "euthanization chamber freezer"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bJW" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bJX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bJY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bJZ" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Main Access";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bKa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bKb" = (
+/obj/machinery/chem_heater,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bKc" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 4
+ },
+/obj/item/reagent_containers/dropper,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bKd" = (
+/obj/structure/table,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bKe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics";
+ name = "robotics lab shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"bKf" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bKg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bKh" = (
+/obj/machinery/door/window/westleft{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"bKi" = (
+/obj/machinery/disposal/bin{
+ name = "Morgue Delivery Bin"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/stripes/red/full,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bKj" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bKk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Morgue Maintenance";
+ req_access_txt = "6"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bKl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet,
+/turf/open/floor/plating,
+/area/router)
+"bKm" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/item/storage/box/bodybags,
+/obj/structure/table,
+/obj/structure/table,
+/obj/item/bodybag,
+/obj/item/pen/blue,
+/obj/item/pen/red{
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bKn" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/red/full,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bKo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum/external,
+/turf/open/floor/plating,
+/area/quartermaster/miningoffice)
+"bKp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hop)
+"bKq" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bKr" = (
+/obj/item/stack/packageWrap,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bKs" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bKt" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bKu" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bKv" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bKw" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/library)
+"bKx" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bKy" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bKz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/medical/genetics)
+"bKA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/medical/genetics)
+"bKB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bKC" = (
+/obj/structure/sign/warning/biohazard,
+/turf/closed/wall,
+/area/medical/genetics)
+"bKD" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Mining Dock Ferry";
+ req_access_txt = "48"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bKE" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bKF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bKG" = (
+/obj/machinery/computer/cargo/request{
+ dir = 1
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/heads/hop)
+"bKH" = (
+/obj/item/beacon,
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"bKI" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/engine,
+/area/science/mixing)
+"bKJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hop)
+"bKK" = (
+/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/crew_quarters/heads/hop)
+"bKL" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bKM" = (
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bKN" = (
+/obj/structure/table,
+/obj/item/storage/backpack/duffelbag/med/surgery,
+/obj/structure/window/reinforced/spawner/west,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"bKO" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"bKP" = (
+/obj/machinery/door/window/southright,
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"bKQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"bKR" = (
+/obj/structure/bookcase/random/religion,
+/turf/open/floor/wood,
+/area/library)
+"bKS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Genetics Lab";
+ req_access_txt = "9"
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bKT" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bKU" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/vending/wardrobe/gene_wardrobe,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bKV" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/clipboard{
+ pixel_y = 3
+ },
+/obj/item/paper_bin,
+/obj/item/hand_labeler,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bKW" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/folder/white,
+/obj/item/storage/pill_bottle/mannitol{
+ pixel_x = 4
+ },
+/obj/item/storage/pill_bottle/mutadone,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bKX" = (
+/obj/structure/table_frame,
+/obj/item/t_scanner{
+ pixel_x = -4
+ },
+/obj/machinery/camera{
+ c_tag = "Supply - Warehouse Fore";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bKY" = (
+/turf/closed/wall,
+/area/medical/genetics)
+"bKZ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bLa" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bLb" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/item/stack/ore/glass,
+/obj/item/stack/ore/iron,
+/obj/item/stack/ore/silver,
+/obj/item/stack/ore/silver,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bLc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bLd" = (
+/mob/living/simple_animal/slime,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bLe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hop)
+"bLf" = (
+/obj/machinery/door/window/eastleft{
+ name = "Containment Pen";
+ req_one_access_txt = "55"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bLg" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bLh" = (
+/obj/structure/bed,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -28
+ },
+/obj/item/bedsheet/captain,
+/obj/effect/landmark/start/captain,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bLi" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"bLj" = (
+/obj/machinery/door/window/westright{
+ name = "Containment Pen";
+ req_one_access_txt = "55"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bLk" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bLl" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bLm" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bLn" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/item/caution,
+/obj/item/shovel,
+/obj/item/stack/tile/plasteel{
+ pixel_x = 10;
+ pixel_y = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bLo" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bLp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"bLq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Genetics Lab";
+ req_access_txt = "9"
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bLr" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bLs" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/landmark/start/geneticist,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bLt" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bLu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bLv" = (
+/obj/machinery/light,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bLw" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bLx" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bLy" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bLz" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bLA" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/glass,
+/obj/item/flashlight,
+/obj/item/assembly/health,
+/obj/item/assembly/voice,
+/obj/item/assembly/timer,
+/obj/item/assembly/infra,
+/obj/item/assembly/igniter,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bLB" = (
+/obj/machinery/light,
+/obj/item/target,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"bLC" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bLD" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bLE" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/button/ignition/incinerator/toxmix{
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/obj/machinery/button/door/incinerator_vent_toxmix{
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bLF" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"bLG" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Research Aft";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bLH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bLI" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"bLJ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bLK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bLL" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bLM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
+"bLN" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bLO" = (
+/obj/item/pipe{
+ pixel_x = -3
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/mob/living/simple_animal/bot/cleanbot{
+ auto_patrol = 1;
+ icon_state = "cleanbot1";
+ name = "Mopficcer Sweepsky"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bLP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bLQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bLR" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bLS" = (
+/obj/machinery/atmospherics/pipe/simple/violet/visible,
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bLT" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bLU" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bLV" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bLW" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"bLX" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-02"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bLY" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bLZ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bMa" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bMb" = (
+/obj/machinery/dna_scannernew,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bMc" = (
+/obj/machinery/computer/scan_consolenew{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bMd" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/white/full,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bMe" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bMf" = (
+/obj/machinery/computer/scan_consolenew{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bMg" = (
+/obj/machinery/dna_scannernew,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bMh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bMi" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"bMj" = (
+/turf/closed/wall,
+/area/medical/medbay/central)
+"bMk" = (
+/turf/closed/wall,
+/area/medical/virology)
+"bMl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/medical/virology)
+"bMm" = (
+/obj/structure/table/wood,
+/obj/machinery/light,
+/obj/item/clothing/under/misc/assistantformal{
+ pixel_y = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"bMn" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/door/airlock/medical/glass{
+ name = "Monkey Pen";
+ req_one_access_txt = "9;39"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMo" = (
+/obj/structure/closet/l3closet/virology,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMp" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bMq" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Starboard Quarter Maintenance - Port";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bMr" = (
+/obj/machinery/vending/wardrobe/viro_wardrobe,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMs" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMt" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bMu" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMv" = (
+/turf/open/floor/grass,
+/area/medical/virology)
+"bMw" = (
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/virology)
+"bMx" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/sign/warning/biohazard{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bMy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/sign/warning/biohazard{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bMz" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/router";
+ dir = 4;
+ name = "Router APC";
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4;
+ sortType = 19
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bMA" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/router)
+"bMC" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMD" = (
+/obj/structure/flora/tree/palm,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/medical/virology)
+"bME" = (
+/obj/structure/flora/tree/palm,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/grass,
+/area/medical/virology)
+"bMF" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/window/southright{
+ name = "Cloning Access";
+ req_one_access_txt = "9;45"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bMG" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bMH" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/crowbar,
+/obj/machinery/requests_console{
+ department = "Mining";
+ name = "Mining RC";
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bMI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille/broken,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4;
+ sortType = 15
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bMJ" = (
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMK" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bML" = (
+/obj/structure/flora/tree/palm,
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/virology)
+"bMM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bMN" = (
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMO" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMP" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMQ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bMR" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/rust,
+/area/router)
+"bMT" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start/virologist,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMU" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMV" = (
+/obj/machinery/light,
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/virology)
+"bMW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bMX" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bMY" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bMZ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNa" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNb" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNc" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start/virologist,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNd" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/engine/atmos)
+"bNe" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/machinery/door/window/northleft{
+ name = "AI Upload Chamber";
+ req_one_access_txt = "65"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/ai)
+"bNf" = (
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/router)
+"bNg" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Virology Interior Airlock";
+ req_access_txt = "39"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNi" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/grass,
+/area/medical/virology)
+"bNj" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNk" = (
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bNl" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bNm" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/pen/red,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNn" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "router_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bNo" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "starboard_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"bNp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"bNq" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bNr" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bedsheetbin,
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bNs" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNt" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bNu" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/medical/virology)
+"bNv" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bNw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNx" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNy" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNz" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNA" = (
+/obj/machinery/smartfridge/chemistry/virology/preloaded,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNB" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/healthanalyzer,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNC" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bND" = (
+/obj/machinery/computer/pandemic,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNE" = (
+/obj/machinery/computer/station_alert{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/engine/atmos)
+"bNF" = (
+/turf/open/floor/plasteel/stairs,
+/area/medical/medbay/central)
+"bNG" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNH" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"bNI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/departments/evac,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"bNJ" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/hallway/secondary/exit)
+"bNK" = (
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard/aft)
+"bNL" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"bNM" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel,
+/area/maintenance/port/fore)
+"bNN" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/router/eva)
+"bNO" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bNP" = (
+/obj/machinery/power/smes,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"bNQ" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"bNR" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"bNS" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"bNT" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/port/fore)
+"bNU" = (
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard/aft)
+"bNV" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bNW" = (
+/turf/open/floor/plasteel/stairs/left,
+/area/hallway/secondary/exit)
+"bNX" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/stairs/right,
+/area/hallway/secondary/exit)
+"bNY" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/stairs/left,
+/area/hallway/secondary/exit)
+"bNZ" = (
+/turf/open/floor/plasteel/stairs/right,
+/area/hallway/secondary/exit)
+"bOa" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum/external,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"bOc" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"bOd" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"bOe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external/glass{
+ name = "Departures Shuttle Dock"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOf" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"bOg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOk" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"bOl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOn" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Shuttle Maintenance Access"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/docking,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"bOp" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Departures Shuttle Dock"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bOq" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/open/floor/plating/airless,
+/area/solar/starboard/aft)
+"bOr" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bOs" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/bz,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"bOt" = (
+/obj/structure/table,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bOu" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/prox_sensor{
+ pixel_x = 8
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = 8
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = 8
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = 8
+ },
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science RC";
+ pixel_x = 30;
+ receive_ore_updates = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bOv" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bOw" = (
+/obj/structure/lattice,
+/obj/item/reagent_containers/food/drinks/bottle/grappa,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bOx" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bOy" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"bOz" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bOA" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"bOB" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/router/eva)
+"bOC" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/router/eva)
+"bOD" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4
+ },
+/obj/machinery/sparker/toxmix{
+ pixel_x = 25
+ },
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"bOE" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/hand_labeler,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bOF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bOG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bOH" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bOI" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen{
+ dir = 1;
+ name = "Test Chamber Monitor";
+ network = list("xeno");
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bOJ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/mob/living/simple_animal/pet/cat/space,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bOK" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/northright{
+ name = "Secure Xenobiological Containment";
+ req_one_access_txt = "55"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bOL" = (
+/obj/machinery/computer/card{
+ dir = 8
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 8;
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"bOM" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bON" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bOO" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"bOP" = (
+/obj/machinery/shieldwallgen/xenobiologyaccess,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"bOQ" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/captain)
+"bOR" = (
+/obj/structure/table/wood,
+/obj/item/pinpointer/nuke,
+/obj/item/card/id/captains_spare,
+/obj/item/hand_tele,
+/obj/item/disk/nuclear,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/captain)
+"bOS" = (
+/obj/structure/table/wood,
+/obj/machinery/light,
+/obj/item/storage/photo_album/Captain,
+/obj/item/camera{
+ pixel_y = -6
+ },
+/obj/item/stamp/captain,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/captain)
+"bOT" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bOU" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bOV" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"bOW" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bOX" = (
+/obj/structure/table/reinforced,
+/obj/item/electropack,
+/obj/item/assembly/signaler,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bOY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/machinery/camera{
+ c_tag = "Customs - Aft";
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "HoPAft";
+ name = "HoP Aft Desk Shutters"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"bOZ" = (
+/obj/structure/bed,
+/obj/item/bedsheet/purple,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPa" = (
+/obj/item/beacon,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPb" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPc" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPd" = (
+/obj/structure/table/reinforced,
+/obj/item/book/random/triple,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPe" = (
+/obj/structure/table/reinforced,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPf" = (
+/obj/machinery/light,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPg" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPh" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bPi" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPj" = (
+/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,
+/obj/machinery/light,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPk" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/under/misc/staffassistant,
+/obj/item/clothing/under/misc/staffassistant,
+/obj/item/clothing/suit/apron/surgical,
+/obj/item/clothing/suit/apron/surgical,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"bPl" = (
+/obj/structure/chair/sofa/right,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/item/book/manual/wiki/research_and_development,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bPm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bPn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bPo" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bPp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/ai)
+"bPq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/mineral/stacking_machine{
+ input_dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bPr" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bPs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bPt" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/bridge)
+"bPu" = (
+/obj/effect/landmark/start/cook,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bPv" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/multitool,
+/obj/item/multitool{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/t_scanner{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/t_scanner{
+ pixel_x = -4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bPw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bPx" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bPy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bPz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"bPA" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bPB" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPC" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Waste In"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPD" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Escape Hall - Fore";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bPE" = (
+/obj/structure/table/glass,
+/obj/item/clipboard,
+/obj/item/storage/crayons,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bPF" = (
+/obj/structure/table/glass,
+/obj/item/storage/fancy/cigarettes,
+/obj/item/lighter{
+ pixel_x = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bPG" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bPH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bPI" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bPJ" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPK" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bPL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bPM" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bPN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bPO" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"bPP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"bPQ" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bPR" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bPS" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bPT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 4
+ },
+/area/hallway/secondary/exit)
+"bPU" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Upload Access";
+ req_access_txt = "16"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/ai)
+"bPV" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"bPW" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/vehicle/ridden/atv,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bPX" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bPY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bPZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ sortType = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bQa" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bQb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "AI Foyer";
+ network = list("minisat");
+ pixel_x = 22
+ },
+/obj/machinery/turretid{
+ control_area = "/area/ai_monitored/turret_protected/ai";
+ dir = 1;
+ name = "AI Chamber turret control";
+ pixel_x = 5;
+ pixel_y = 24;
+ req_access_txt = "65"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"bQc" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bQd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bQe" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bQf" = (
+/obj/structure/rack,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"bQg" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=sci";
+ location = "market"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bQh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bQi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bQj" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bQk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bQl" = (
+/obj/structure/bed/roller,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bQm" = (
+/obj/structure/bed/roller,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bQn" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bQo" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"bQp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/maintenance/aft)
+"bQq" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/table/wood,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/paper/guides/cogstation/letter_atmos,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bQr" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bQs" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"bQt" = (
+/obj/machinery/conveyor/auto{
+ dir = 5;
+ id = "router"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bQu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bQv" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1;
+ sortType = 24
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bQw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bQx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bQy" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bQz" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bQA" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -28
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bQB" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/item/weldingtool,
+/obj/item/wrench/medical,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bQC" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bQD" = (
+/obj/machinery/power/apc{
+ name = "Tech Storage APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bQE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bQF" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bQG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bQH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bQI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bQJ" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "Medbay Treatment Center APC";
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bQK" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bQL" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bQM" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bQN" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bQO" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bQP" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bQQ" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/science/robotics/lab)
+"bQR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/directions/evac{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bQS" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bQT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ frequency = 1447;
+ name = "Station Intercom (AI Private)";
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bQU" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"bQV" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bQW" = (
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bQX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bQY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bQZ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/landmark/start/scientist,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bRa" = (
+/obj/item/cigbutt,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"bRb" = (
+/obj/machinery/door/window/southleft{
+ name = "Captain's Equipment";
+ req_access_txt = "20"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/heads/captain)
+"bRc" = (
+/obj/machinery/suit_storage_unit/captain,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/captain)
+"bRd" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/engine/storage";
+ dir = 4;
+ name = "Canister Storage APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"bRe" = (
+/obj/machinery/computer/security/wooden_tv,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bRf" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bRg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bRh" = (
+/obj/structure/sign/warning/securearea{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bRi" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bRj" = (
+/obj/machinery/atmospherics/components/trinary/filter/flipped,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bRk" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bRl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/router)
+"bRm" = (
+/obj/structure/closet/bombcloset,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bRn" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bRo" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bRp" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bRq" = (
+/obj/machinery/portable_atmospherics/scrubber/huge/movable,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bRr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bRs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bRt" = (
+/obj/structure/closet/wardrobe/miner,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/quartermaster/miningoffice";
+ dir = 8;
+ name = "Mining Office APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bRu" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bRv" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"bRw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bRx" = (
+/obj/structure/table,
+/obj/item/circuitboard/machine/cyborgrecharger,
+/obj/item/disk/design_disk,
+/obj/machinery/camera/motion{
+ c_tag = "Computer Core";
+ dir = 1;
+ network = list("minisat")
+ },
+/turf/open/floor/circuit/green,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bRy" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bRz" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bRA" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/engine,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bRB" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 29
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bRC" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bRD" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"bRE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bRF" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"bRG" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"bRH" = (
+/obj/structure/chair/sofa/right,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 29
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"bRI" = (
+/turf/closed/wall/r_wall,
+/area/medical/medbay/central)
+"bRJ" = (
+/obj/structure/chair/sofa/left,
+/obj/effect/landmark/start/assistant,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay - Waiting Room";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"bRK" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bRL" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bRM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs/left,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bRN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/stairs/medium,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bRO" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bRP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Storage";
+ req_access_txt = "18"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"bRQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"bRR" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bRS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bRT" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin{
+ name = "Lab Delivery"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bRU" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"bRV" = (
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel/dark/side{
+ dir = 9
+ },
+/area/science/robotics/lab)
+"bRW" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/status_display/ai{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bRX" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bRY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bRZ" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/wood,
+/area/library)
+"bSa" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/storage/belt/medolier,
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bSb" = (
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bSc" = (
+/obj/machinery/vending/wardrobe/medi_wardrobe,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bSd" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
+"bSe" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
+"bSf" = (
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/item/healthanalyzer,
+/obj/item/plant_analyzer,
+/obj/item/aicard,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 29
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bSg" = (
+/obj/machinery/rnd/production/techfab/department/medical,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bSh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"bSi" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bSj" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/xeno_spawn,
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Kill Chamber";
+ dir = 4
+ },
+/turf/open/floor/circuit/telecomms,
+/area/science/xenobiology)
+"bSk" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/public/glass{
+ name = "AI Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSl" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bSm" = (
+/obj/machinery/modular_computer/console/preset/engineering,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bSn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/electricshock,
+/turf/open/floor/plating,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bSo" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bSp" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bSq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bSr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSs" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"bSv" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bSw" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/machinery/light,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/turf/open/floor/plating,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bSx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bSy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bSz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1;
+ sortType = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bSA" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel/stairs/right,
+/area/hallway/primary/central)
+"bSB" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bSC" = (
+/turf/closed/wall,
+/area/science/lab)
+"bSD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/router)
+"bSE" = (
+/turf/closed/wall/r_wall,
+/area/science/lab)
+"bSF" = (
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "router"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router)
+"bSG" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/lab)
+"bSH" = (
+/obj/structure/sign/departments/science,
+/turf/closed/wall/r_wall,
+/area/science/lab)
+"bSI" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/router)
+"bSJ" = (
+/obj/structure/closet/crate/science,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/science/circuit";
+ dir = 1;
+ name = "Circuitry Lab APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bSK" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSL" = (
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSM" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stack/cable_coil/red,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/obj/item/folder/white,
+/obj/item/disk/design_disk,
+/obj/item/disk/design_disk,
+/obj/item/disk/tech_disk,
+/obj/item/disk/tech_disk,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSO" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/public/glass{
+ name = "AI Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bSP" = (
+/obj/machinery/computer/rdconsole/core,
+/turf/open/floor/plasteel,
+/area/science/lab)
+"bSQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bST" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"bSW" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bSX" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/white/full,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_x = 28;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bSY" = (
+/obj/structure/table,
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 4
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 4
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -6
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -6
+ },
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/capacitor,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bSZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTb" = (
+/turf/open/floor/plasteel,
+/area/science/lab)
+"bTc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/lab)
+"bTd" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass,
+/obj/item/stack/sheet/glass,
+/obj/item/stack/sheet/glass,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTe" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/scientist,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTg" = (
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/science/robotics/mechbay";
+ dir = 1;
+ name = "Mech Bay APC";
+ pixel_y = 28
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/mechbay)
+"bTh" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/start/cyborg,
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bTi" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark/side{
+ dir = 5
+ },
+/area/science/robotics/lab)
+"bTj" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 4
+ },
+/obj/item/reagent_containers/dropper,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTk" = (
+/obj/item/rack_parts,
+/obj/structure/table_frame,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/quartermaster/warehouse";
+ dir = 1;
+ name = "Warehouse APC";
+ pixel_y = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bTl" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTm" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTn" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTo" = (
+/obj/structure/table/reinforced,
+/obj/item/integrated_electronics/debugger,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bTp" = (
+/obj/machinery/vending/wardrobe/law_wardrobe,
+/obj/effect/turf_decal/bot,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bTq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/circuit)
+"bTr" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"bTs" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"bTt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/central)
+"bTu" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTv" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bTw" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTx" = (
+/obj/item/stack/tile/plasteel{
+ pixel_x = 8;
+ pixel_y = 14
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bTy" = (
+/obj/item/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTz" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bTA" = (
+/obj/structure/filingcabinet/medical,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bTB" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/medical/medbay/lobby)
+"bTC" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bTD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bTE" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bTF" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bTG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"bTH" = (
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bTI" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bTJ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bTK" = (
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bTL" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bTM" = (
+/obj/structure/table,
+/obj/machinery/light,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/camera{
+ c_tag = "Research - Development Lab";
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science RC";
+ pixel_y = -30;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bTN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/science/circuit)
+"bTO" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bTP" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bTQ" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bTR" = (
+/turf/closed/wall/r_wall,
+/area/science/circuit)
+"bTS" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d8b1b1"
+ },
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/radio/off{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bTT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/central)
+"bTU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "recycler"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bTV" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bTW" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bTX" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/status_display/ai{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bTY" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/hallway/primary/central)
+"bTZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bUa" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Entrance"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bUb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bUc" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bUd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bUe" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"bUf" = (
+/obj/structure/plasticflaps,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bUg" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "router"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"bUh" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bUi" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bUj" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bUk" = (
+/obj/structure/closet/crate,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bUl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bUm" = (
+/obj/structure/closet/crate/internals,
+/obj/item/tank/internals/emergency_oxygen/double,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bUn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bUo" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bUp" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/conveyor/auto{
+ id = "router"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bUq" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/aft)
+"bUr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/aft)
+"bUs" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bUt" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bUu" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/gateway)
+"bUv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/aft)
+"bUw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bUx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bUy" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bUz" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bUA" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"bUB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/engine/engine_smes";
+ dir = 1;
+ name = "Power Monitoring APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bUC" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bUD" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bUE" = (
+/turf/open/floor/plasteel/stairs/right,
+/area/hallway/primary/aft)
+"bUF" = (
+/obj/machinery/doppler_array/research/science{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bUG" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bUH" = (
+/obj/machinery/shieldgen,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bUI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bUJ" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"bUK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Quartermaster's Office";
+ req_access_txt = "31;41"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bUL" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bUM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
+"bUN" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Primary Tool Storage";
+ req_access_txt = "11"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bUO" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/storage/primary";
+ dir = 1;
+ name = "Primary Tool Storage APC";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bUP" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/quartermaster/sorting)
+"bUQ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "DeliveryDoor";
+ name = "Cargo Delivery Door Control";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bUR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/mob/living/simple_animal/bot/firebot,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bUS" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/item/clothing/suit/space/eva,
+/obj/item/clothing/head/helmet/space/eva,
+/obj/item/paper/fluff/cogstation/letter_qm,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bUT" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bUU" = (
+/obj/item/beacon,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bUV" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bUW" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/starboard/aft";
+ dir = 1;
+ name = "Starboard Quarter Maintenance APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bUX" = (
+/obj/structure/transit_tube/station/reverse/flipped{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bUY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/item/grown/bananapeel,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/router)
+"bUZ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/wirecutters,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bVa" = (
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bVb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"bVc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bVd" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bVe" = (
+/obj/machinery/photocopier,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"bVf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Power Monitoring";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"bVg" = (
+/obj/machinery/power/emitter,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bVh" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bVi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bVj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/conveyor/auto{
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bVk" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bVl" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bVm" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bVn" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"bVo" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bVp" = (
+/obj/machinery/computer/card/minor/rd{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"bVq" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bVr" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bVs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/cargo_technician,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bVt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bVu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/router)
+"bVv" = (
+/obj/structure/sign/departments/xenobio{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bVw" = (
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "cargo"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bVx" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "cargo"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bVy" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "cargo"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"bVz" = (
+/obj/structure/rack,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/item/extinguisher{
+ pixel_x = -4
+ },
+/obj/item/crowbar/red{
+ pixel_x = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bVA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/router)
+"bVB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bVC" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "AI SMES Access";
+ req_one_access_txt = "10;24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bVD" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bVE" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVF" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bVG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bVH" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bVI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVK" = (
+/obj/item/restraints/legcuffs/beartrap,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"bVL" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/noticeboard/rd{
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bVM" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bVN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "capblast";
+ name = "blast door"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/captain)
+"bVO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bVP" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bVQ" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVR" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/sign/warning/securearea{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bVS" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bVT" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bVU" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Law Office";
+ req_access_txt = "38"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"bVV" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"bVW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"bVX" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bVY" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/southright{
+ name = "Primary Tool Storage Desk";
+ req_access_txt = "11"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bVZ" = (
+/obj/machinery/power/apc{
+ name = "Cargo Bay APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bWa" = (
+/turf/closed/wall/r_wall,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWb" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWc" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWd" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/sign/poster/official/wtf_is_co2{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"bWe" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 1;
+ freq = 1400;
+ location = "Bridge"
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"bWf" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWg" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Law Office";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"bWh" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"bWi" = (
+/obj/structure/table/wood,
+/obj/item/cartridge/lawyer{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/obj/item/stamp/law,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"bWj" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"bWk" = (
+/obj/structure/table/wood,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"bWl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Toxins Storage";
+ req_access_txt = "7;8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/science/mixing)
+"bWm" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "AI SMES Access";
+ req_one_access_txt = "10;24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bWn" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bWo" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWp" = (
+/obj/machinery/atmospherics/miner/n2o,
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bWq" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "Routing Depot - Aft Exterior";
+ pixel_x = 22
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bWr" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera{
+ c_tag = "Research Entrance";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWs" = (
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWt" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bWu" = (
+/obj/machinery/vending/assist,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bWv" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bWw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/lawoffice)
+"bWx" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWy" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWz" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWA" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWB" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/extinguisher,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWC" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWD" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Medbay"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bWE" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWF" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWG" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"bWH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/stairs/medium,
+/area/hallway/primary/central)
+"bWI" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bWJ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"bWK" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bWL" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWM" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = -32
+ },
+/obj/machinery/camera{
+ c_tag = "Central Hall - AI Access";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWN" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bWO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bWP" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/command{
+ name = "Computer Core";
+ req_access_txt = "30"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bWQ" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bWR" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWS" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bWT" = (
+/obj/structure/chair/sofa/left,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWU" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWV" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWW" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWX" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bWY" = (
+/obj/structure/sign/warning/nosmoking,
+/turf/closed/wall/r_wall,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"bWZ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"bXa" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/item/multitool{
+ pixel_y = 4
+ },
+/obj/item/book/manual/wiki/robotics_cyborgs,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bXb" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bXc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"bXd" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"bXe" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/machinery/atmospherics/miner/toxins,
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bXf" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "EngiLockdown";
+ name = "Engineering Emergency Lockdown";
+ pixel_x = 24;
+ pixel_y = -6;
+ req_access_txt = "11"
+ },
+/obj/machinery/button/door{
+ name = "Privacy Shutters";
+ pixel_x = 24;
+ pixel_y = 6
+ },
+/obj/item/kirbyplants/photosynthetic,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"bXg" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bXh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXi" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bXj" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bXk" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bXl" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXm" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bXn" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bXo" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/router)
+"bXq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bXr" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Research Fore";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bXt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bXu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bXv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bXw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bXx" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXy" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/light,
+/obj/item/kirbyplants{
+ icon_state = "plant-16"
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXz" = (
+/obj/machinery/power/apc{
+ name = "Medbay Lobby APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bXA" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXB" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXC" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bXD" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bXE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bXF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/supply)
+"bXG" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"bXH" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bXI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "capblast";
+ name = "blast door"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/captain)
+"bXJ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXK" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/light,
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/white/full,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/storage/belt/utility,
+/turf/open/floor/plasteel,
+/area/maintenance/aft)
+"bXM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "router_off"
+ },
+/turf/open/floor/plating,
+/area/router)
+"bXN" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bXO" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Fore";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bXP" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/space/nearstation)
+"bXQ" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXR" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/atmospherics/miner/carbon_dioxide,
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bXS" = (
+/obj/structure/closet/bombcloset,
+/obj/machinery/camera{
+ c_tag = "Toxins Lab - Access";
+ network = list("ss13","rd")
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bXT" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bXV" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/space/nearstation)
+"bXW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bXX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bXY" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bXZ" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/radio/headset/headset_sci,
+/obj/item/radio/headset/headset_sci,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYa" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bYc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYd" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/central)
+"bYe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bYf" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "router"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/router)
+"bYg" = (
+/obj/machinery/door/poddoor{
+ id = "toxinsdriver";
+ name = "toxins launcher bay door"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/science/mixing)
+"bYh" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bYi" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/recharger,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bYk" = (
+/obj/machinery/vending/wardrobe/science_wardrobe,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYl" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ sortType = 6
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bYm" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bYn" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bYo" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/mech_bay_power_console,
+/turf/open/floor/circuit/green,
+/area/science/robotics/mechbay)
+"bYp" = (
+/turf/open/floor/plasteel/recharge_floor,
+/area/science/robotics/mechbay)
+"bYq" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/mech_bay_recharge_port{
+ dir = 8
+ },
+/turf/open/floor/circuit/green,
+/area/science/robotics/mechbay)
+"bYr" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYs" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Toxins Lab Access";
+ req_access_txt = "7;8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bYt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bYu" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYv" = (
+/turf/closed/wall,
+/area/science/robotics/mechbay)
+"bYw" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"bYy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"bYz" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bYA" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"bYC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bYD" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bYE" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bYF" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/recharge_station,
+/turf/open/floor/circuit/green,
+/area/science/robotics/mechbay)
+"bYG" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"bYH" = (
+/obj/structure/sign/poster/contraband/kss13{
+ pixel_y = -32
+ },
+/obj/structure/cable,
+/obj/machinery/recharge_station,
+/turf/open/floor/circuit/green,
+/area/science/robotics/mechbay)
+"bYI" = (
+/obj/effect/landmark/start/medical_doctor,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bYJ" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/storage/belt/medical,
+/obj/item/clothing/neck/stethoscope,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"bYK" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"bYL" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bYM" = (
+/obj/machinery/vending/wardrobe/cargo_wardrobe,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"bYN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bYO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bYP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bYQ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"bYR" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/solar/starboard/aft)
+"bYS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bYT" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bYU" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bYV" = (
+/obj/machinery/rnd/destructive_analyzer,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/lab)
+"bYW" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bYX" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bYY" = (
+/turf/open/floor/circuit/green,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bYZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/circuit/green,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bZa" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/item/storage/box/disks,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bZb" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "RDServer";
+ layer = 3.6;
+ name = "RD Server Lockup Control";
+ pixel_x = -24
+ },
+/obj/item/circuitboard/machine/rdserver,
+/obj/item/disk/tech_disk,
+/turf/open/floor/circuit/green,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bZc" = (
+/obj/machinery/computer/robotics{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/circuit/green,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bZd" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bZe" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/science/server{
+ name = "Computer Core"
+ })
+"bZf" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bZg" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bZh" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet/restrooms)
+"bZi" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"bZj" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4;
+ node1_concentration = 0.8;
+ node2_concentration = 0.2;
+ on = 1;
+ target_pressure = 4500
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bZk" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"bZl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bZm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=upload";
+ location = "med"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bZn" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/door/window/eastright,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"bZo" = (
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"bZp" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"bZq" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/door/window/eastright,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"bZr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bZs" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Bathroom Maintenance";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet/restrooms)
+"bZt" = (
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
+"bZu" = (
+/obj/structure/rack,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/item/extinguisher,
+/obj/item/crowbar,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bZv" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red{
+ pixel_y = 6
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/tank/internals/air,
+/obj/item/extinguisher,
+/obj/item/crowbar,
+/obj/machinery/camera{
+ c_tag = "Fire Suppression Storage";
+ pixel_x = 22
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bZw" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bZx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Fire Suppression Storage";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bZy" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"bZz" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Xenobiology Kill Room";
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"bZA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/library)
+"bZB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bZC" = (
+/obj/machinery/computer/libraryconsole,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/library)
+"bZD" = (
+/obj/machinery/chem_master,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"bZE" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bZF" = (
+/turf/open/floor/wood,
+/area/library)
+"bZG" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/sign/warning/fire{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"bZH" = (
+/turf/closed/wall,
+/area/library)
+"bZI" = (
+/obj/machinery/air_sensor/atmos/mix_tank,
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"bZJ" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/photocopier,
+/turf/open/floor/carpet,
+/area/library)
+"bZK" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/wood,
+/area/library)
+"bZL" = (
+/obj/machinery/air_sensor/atmos/nitrous_tank,
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"bZM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"bZN" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/rack_parts,
+/obj/item/rack_parts,
+/obj/item/wrench,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"bZO" = (
+/obj/machinery/air_sensor/atmos/toxin_tank,
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"bZP" = (
+/obj/machinery/air_sensor/atmos/carbon_tank,
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"bZQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bZR" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"bZS" = (
+/turf/closed/wall/r_wall,
+/area/library)
+"bZT" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/robotics_cyborgs{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/book/manual/ripley_build_and_repair{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/mmi/posibrain,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"bZU" = (
+/obj/structure/table/wood,
+/obj/machinery/door/window/northright{
+ name = "Library Desk Window";
+ req_access_txt = "37"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"bZV" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced/spawner/north,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"bZW" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"bZX" = (
+/obj/structure/table/wood,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"bZY" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"bZZ" = (
+/obj/machinery/vending/wardrobe/curator_wardrobe,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"caa" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"cab" = (
+/obj/structure/bookcase/random/adult{
+ name = "Forbidden Knowledge"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"cac" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"cad" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"cae" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light,
+/obj/item/storage/firstaid/toxin,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"caf" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cag" = (
+/obj/structure/table/reinforced,
+/obj/item/integrated_electronics/analyzer,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cah" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cai" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"caj" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cak" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"cal" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"cam" = (
+/obj/machinery/door/poddoor/incinerator_atmos_main,
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"can" = (
+/obj/machinery/power/turbine{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cao" = (
+/obj/machinery/power/compressor{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cap" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/air_sensor/atmos/incinerator_tank{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/machinery/igniter/incinerator_atmos,
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"caq" = (
+/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"car" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cas" = (
+/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"cat" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input,
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"cau" = (
+/obj/machinery/door/poddoor/incinerator_atmos_aux,
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cav" = (
+/turf/closed/wall/r_wall,
+/area/science/explab)
+"caw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
+"cax" = (
+/turf/closed/wall,
+/area/science/explab)
+"cay" = (
+/obj/machinery/air_sensor/atmos/nitrogen_tank,
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"caz" = (
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/mechbay)
+"caA" = (
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"caB" = (
+/obj/structure/closet/bombcloset,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"caC" = (
+/obj/structure/table,
+/obj/item/wrench,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/extinguisher{
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/cable_coil/red,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"caD" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/disposal)
+"caE" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"caF" = (
+/obj/machinery/air_sensor/atmos/oxygen_tank,
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"caG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"caH" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"caI" = (
+/obj/structure/table/reinforced,
+/obj/item/integrated_electronics/analyzer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science RC";
+ pixel_x = 30;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"caJ" = (
+/obj/machinery/air_sensor/atmos/air_tank,
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"caK" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/atmospherics/miner/nitrogen,
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"caL" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/miner/oxygen,
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"caM" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"caN" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"caO" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/science/robotics/lab)
+"caP" = (
+/obj/structure/chair/office/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/explab)
+"caQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Medbay Lobby"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white/side,
+/area/medical/medbay/lobby)
+"caR" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-06"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"caS" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"caT" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
+"caU" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/closed/wall/r_wall,
+/area/science/explab)
+"caV" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Pen 1";
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"caW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"caX" = (
+/turf/open/floor/engine,
+/area/science/explab)
+"caY" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"caZ" = (
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d8b1b1"
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Pen 2";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cba" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/science/explab)
+"cbb" = (
+/turf/closed/wall/r_wall,
+/area/science/storage)
+"cbc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/stack/sheet/metal/ten,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/item/screwdriver,
+/obj/item/screwdriver,
+/obj/item/multitool,
+/obj/item/multitool,
+/obj/machinery/camera{
+ c_tag = "Research - Circuitry Lab";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cbd" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/radio,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cbe" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/engine,
+/area/science/explab)
+"cbf" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cbg" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine,
+/area/science/storage)
+"cbh" = (
+/obj/machinery/rnd/experimentor,
+/turf/open/floor/engine,
+/area/science/explab)
+"cbi" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "capblast";
+ name = "blast door"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/captain)
+"cbj" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cbk" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/quartermaster/qm";
+ dir = 8;
+ name = "Quartermaster's Office APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"cbl" = (
+/obj/structure/table/reinforced,
+/obj/item/healthanalyzer,
+/turf/open/floor/engine,
+/area/science/explab)
+"cbm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"cbn" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"cbo" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cbp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "capblast";
+ name = "blast door"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/captain)
+"cbq" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/pen,
+/turf/open/floor/engine,
+/area/science/explab)
+"cbr" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cbs" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cbt" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/engine,
+/area/science/explab)
+"cbu" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/science/storage)
+"cbv" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/sign/warning/biohazard{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"cbw" = (
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cbx" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/syringes,
+/obj/item/pen/blue,
+/turf/open/floor/engine,
+/area/science/explab)
+"cby" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cbz" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/reagent_containers/dropper,
+/obj/item/pen/red,
+/turf/open/floor/engine,
+/area/science/explab)
+"cbA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/storage/eva)
+"cbB" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cbC" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"cbD" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cbE" = (
+/turf/closed/wall/r_wall,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cbF" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cbG" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cbH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/storage/eva)
+"cbI" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cbJ" = (
+/obj/structure/table/reinforced,
+/obj/item/analyzer,
+/obj/item/t_scanner,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/engine/supermatter";
+ dir = 4;
+ name = "Thermo-Electric Generator APC";
+ pixel_x = 24
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"cbK" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/sign/departments/chemistry{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cbL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cbM" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/item/storage/box/lights/mixed,
+/obj/item/stack/sheet/glass,
+/obj/item/stack/sheet/glass,
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cbN" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cbO" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cbP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"cbQ" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/item/reagent_containers/food/snacks/meat/slab/spider,
+/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"cbR" = (
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"cbS" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "starboard_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cbT" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = -2;
+ pixel_y = -27
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cbU" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Air to Distro"
+ },
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/engine/atmos";
+ name = "Atmospherics APC";
+ pixel_y = -28
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cbV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cbW" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cbX" = (
+/obj/structure/table,
+/obj/item/aicard,
+/obj/item/disk/tech_disk,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/circuit,
+/area/bridge)
+"cbY" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cbZ" = (
+/obj/machinery/computer/slot_machine,
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"cca" = (
+/obj/machinery/computer/slot_machine,
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"ccb" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/stairs/medium,
+/area/crew_quarters/bar)
+"ccc" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"ccd" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Robotics Lab";
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/science/robotics/lab)
+"cce" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/science/circuit)
+"ccf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "starboard_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"ccg" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cch" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "router"
+ },
+/turf/open/floor/plating,
+/area/router)
+"cci" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/mass_driver{
+ id = "workshop_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router)
+"ccj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Routing Depot";
+ req_one_access_txt = "10;31"
+ },
+/turf/open/floor/plating,
+/area/router)
+"cck" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ccl" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs,
+/area/maintenance/department/chapel)
+"ccm" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/science/robotics/lab)
+"ccn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "router"
+ },
+/turf/open/floor/plating,
+/area/router)
+"cco" = (
+/obj/machinery/conveyor/auto{
+ id = "router"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"ccp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"ccq" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/nanomichi_ad{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"ccr" = (
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"ccs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "starboard_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cct" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/science/robotics/mechbay)
+"ccu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"ccv" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Mining Office";
+ req_one_access_txt = "10;24;48"
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"ccw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"ccx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccy" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "router"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/router)
+"ccz" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"ccA" = (
+/obj/machinery/disposal/deliveryChute,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"ccB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/folder/white,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics2";
+ name = "robotics lab shutters"
+ },
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Robotics Desk";
+ req_access_txt = "29"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"ccC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"ccD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"ccE" = (
+/obj/machinery/mass_driver{
+ id = "eng_in";
+ name = "Router Driver"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/router)
+"ccF" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/flashlight,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"ccG" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/camera{
+ c_tag = "Atmospherics East";
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"ccH" = (
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "disposal_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"ccI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ccJ" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "starboard_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"ccK" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ccL" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/rnd/bepis,
+/turf/open/floor/engine,
+/area/science/explab)
+"ccM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"ccN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"ccO" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"ccP" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"ccQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"ccR" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"ccS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/courtroom)
+"ccT" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"ccU" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"ccV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Starboard Quarter Maintenance";
+ req_one_access_txt = "12;48"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"ccW" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"ccX" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"ccY" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/librarian,
+/obj/machinery/power/apc{
+ areastring = "/area/library";
+ dir = 4;
+ name = "Library APC";
+ pixel_x = 24
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"ccZ" = (
+/obj/structure/closet/cardboard,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cda" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"cdb" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cdc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cdd" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"cde" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/mineral/titanium/blue,
+/area/hallway/primary/central)
+"cdf" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cdg" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdh" = (
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cdi" = (
+/obj/machinery/disposal/deliveryChute,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cdj" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/machinery/microwave,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdk" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdm" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/paper/guides/cogstation/disposals,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdn" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cdo" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cdp" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
+/obj/machinery/atmospherics/pipe/simple/violet/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cdq" = (
+/obj/machinery/mass_driver{
+ id = "sq_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cdr" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cds" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdt" = (
+/turf/closed/wall/r_wall,
+/area/router/eng)
+"cdu" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdv" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdw" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"cdy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/closed/wall,
+/area/engine/break_room)
+"cdz" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdA" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/structure/sign/warning/enginesafety,
+/turf/closed/wall,
+/area/engine/break_room)
+"cdC" = (
+/turf/closed/wall,
+/area/engine/break_room)
+"cdD" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line,
+/obj/item/storage/box/monkeycubes,
+/obj/item/storage/box/monkeycubes,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science RC";
+ pixel_y = 30;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cdE" = (
+/obj/structure/table/wood,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/item/tape,
+/obj/item/taperecorder{
+ pixel_x = -4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"cdF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"cdG" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "engblock";
+ name = "Engineering Router"
+ },
+/turf/open/floor/plating,
+/area/router/eng)
+"cdH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall,
+/area/engine/break_room)
+"cdI" = (
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"cdJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdK" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdN" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/door/airlock/command{
+ name = "Chief Engineer's Office";
+ req_access_txt = "56"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cdO" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "EngiLockdown";
+ name = "Engineering Emergency Lockdown"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdP" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Hall - Primary Tool Storage";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cdQ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "EngiLockdown";
+ name = "Engineering Emergency Lockdown"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cdR" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/sign/poster/contraband/hacking_guide{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cdS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/engine/break_room)
+"cdT" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Asteroid Mining Access";
+ req_access_txt = "10;24"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cdU" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ id = "eng"
+ },
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "engblock";
+ name = "Engineering Router"
+ },
+/turf/open/floor/plating,
+/area/router/eng)
+"cdV" = (
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"cdW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics2";
+ name = "robotics lab shutters"
+ },
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"cdX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start/chemist,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cdY" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cdZ" = (
+/turf/closed/wall/r_wall,
+/area/medical/medbay/lobby)
+"cea" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/photocopier,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ name = "Cargo RC";
+ pixel_y = 30
+ },
+/obj/machinery/camera{
+ c_tag = "Supply - Delivery Office Aft";
+ network = list("ss13","rd")
+ },
+/obj/item/paper/guides/cogstation/disposals,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ceb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics3";
+ name = "robotics lab shutters"
+ },
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"cec" = (
+/obj/structure/table/glass,
+/obj/item/paicard,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"ced" = (
+/obj/machinery/computer/med_data{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cee" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cef" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"ceg" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"ceh" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"cei" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cej" = (
+/obj/machinery/vending/medical,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cek" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"cel" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cem" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/door/window/eastright{
+ name = "Medbay Desk";
+ req_access_txt = "5"
+ },
+/obj/item/folder/white,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cen" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/circuit,
+/area/bridge)
+"ceo" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/bridge)
+"cep" = (
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Satellite Exterior - Starboard Bow";
+ dir = 1;
+ network = list("tcomms");
+ pixel_x = 22
+ },
+/turf/open/space/basic,
+/area/space)
+"ceq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall/rust,
+/area/engine/teg_hot)
+"cer" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "eng_out";
+ name = "Router Driver"
+ },
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plating,
+/area/router/eng)
+"ces" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/conveyor/auto{
+ id = "eng"
+ },
+/obj/structure/window/reinforced/spawner/east,
+/turf/open/floor/plating,
+/area/router/eng)
+"cet" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"ceu" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"cev" = (
+/obj/machinery/vending/games,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"cew" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "service"
+ },
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plating,
+/area/router/eng)
+"cex" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"cey" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Arcade"
+ },
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"cez" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/brute,
+/obj/item/storage/firstaid/brute,
+/obj/item/storage/firstaid/brute,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"ceA" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/o2,
+/obj/item/storage/firstaid/o2,
+/obj/item/storage/firstaid/o2,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"ceB" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"ceC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
+"ceD" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry_home";
+ name = "port bay 2";
+ width = 5
+ },
+/turf/open/space/basic,
+/area/space)
+"ceE" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Ferry Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"ceF" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "Ferry Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"ceG" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "trash";
+ name = "Disposal Driver"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ceH" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ id = "trash";
+ name = "Disposal Bay Door"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ceI" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"ceJ" = (
+/obj/machinery/power/solar_control{
+ dir = 4;
+ name = "Starboard Quarter Solar Control"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"ceK" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/router/eng)
+"ceL" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/table,
+/obj/item/destTagger,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/eng)
+"ceM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/button/massdriver{
+ id = "eng_out";
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/obj/machinery/button/door{
+ id = "engblock";
+ name = "Router Access Control";
+ pixel_x = -24;
+ pixel_y = 32;
+ req_access_txt = "31"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/eng)
+"ceN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/eng)
+"ceO" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = 29
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/eng)
+"ceP" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/router/eng)
+"ceQ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = -32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"ceR" = (
+/obj/machinery/door/poddoor{
+ id = "TEGMixVent";
+ name = "Mixing Chamber Vent"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"ceS" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"ceT" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/computer/cargo/request{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/machinery/requests_console{
+ department = "Engineering Router";
+ name = "Engineering Router RC";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/router/eng)
+"ceU" = (
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 9
+ },
+/obj/structure/fireaxecabinet{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"ceV" = (
+/turf/open/floor/plasteel,
+/area/router/eng)
+"ceW" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/router/eng)
+"ceX" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/power/apc{
+ name = "Engineering Router APC";
+ pixel_y = -24
+ },
+/obj/machinery/light/small,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/router/eng)
+"ceY" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"ceZ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Asteroid Mining Access";
+ req_access_txt = "10;24"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cfa" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfb" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/carpet/blue,
+/area/medical/medbay/central)
+"cfc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"cfd" = (
+/obj/structure/closet/crate/wooden,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cfe" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Port Bow Hall - Starboard";
+ network = list("ss13","rd")
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cff" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfg" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/effect/landmark/start/research_director,
+/obj/machinery/camera{
+ c_tag = "Research Director's Office - Port";
+ network = list("ss13","rd")
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -8;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"cfh" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cfi" = (
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cfj" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cfk" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cfl" = (
+/turf/closed/wall,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cfm" = (
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cfn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cfo" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfp" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfq" = (
+/obj/structure/lattice/catwalk,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cfr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Mixing Chamber Access";
+ req_one_access_txt = "10;24"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/engine/teg_hot)
+"cfs" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cft" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Mixing Chamber";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/teg_hot)
+"cfu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"cfv" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cfw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Construction Area";
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cfx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cfy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"cfz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cfA" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfB" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfD" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cfE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"cfF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/teg_hot)
+"cfG" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage";
+ req_access_txt = "19;23"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"cfH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/on,
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/sparker{
+ id = "TEGMixIgniter";
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/ash,
+/obj/effect/decal/remains/human,
+/turf/open/floor/engine/vacuum,
+/area/engine/teg_hot)
+"cfJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"cfK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/teg_hot)
+"cfL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Access";
+ req_access_txt = "24"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cfM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cfN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cfO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cfP" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cfQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Library Access"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/library)
+"cfR" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cfS" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"cfT" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/visible,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cfU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/item/beacon,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cfV" = (
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cfW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/window/plasma/reinforced/spawner/north,
+/obj/structure/window/plasma/reinforced/spawner,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/engine/teg_hot)
+"cfX" = (
+/obj/item/pipe,
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"cfY" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"cfZ" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/stairs/right,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cga" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cgb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Mixing Chamber Access";
+ req_one_access_txt = "10;24"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/engine/teg_hot)
+"cgc" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cgd" = (
+/obj/structure/fans/tiny,
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cge" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cgf" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cgg" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cgh" = (
+/obj/machinery/pipedispenser,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"cgi" = (
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"cgj" = (
+/obj/machinery/conveyor/auto{
+ id = "cargo"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cgk" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/conveyor/auto{
+ id = "cargo"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cgl" = (
+/obj/machinery/button/door{
+ id = "TEGMixVent";
+ name = "Mixing Chamber Vent";
+ pixel_y = 24;
+ req_access_txt = "10"
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "atmos mix to burn"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cgm" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cgn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cgo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cgp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/obj/machinery/button/ignition{
+ id = "TEGMixIgniter";
+ name = "Mix Igniter";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cgq" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cgr" = (
+/obj/machinery/vending/wardrobe/robo_wardrobe,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cgs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cgt" = (
+/obj/structure/rack,
+/obj/item/caution,
+/obj/item/caution,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cgu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cgv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cgw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cgx" = (
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cgy" = (
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/rust,
+/area/maintenance/solars/starboard/aft)
+"cgz" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cgA" = (
+/obj/machinery/pipedispenser/disposal,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"cgB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cgC" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"cgD" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/teg_hot)
+"cgE" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cgF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/spawner/north,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/spawner/north,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgH" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgI" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgK" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgL" = (
+/obj/machinery/computer/rdservercontrol{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/dark,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgP" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/closed/wall/r_wall,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cgR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cgS" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4;
+ node1_concentration = 0.8;
+ node2_concentration = 0.2;
+ on = 1;
+ target_pressure = 4500
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cgT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cgU" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4;
+ name = "manual mix to burn"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cgV" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cgW" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ roundstart_template = /datum/map_template/shuttle/mining/delta;
+ width = 7
+ },
+/turf/open/space/basic,
+/area/space)
+"cgX" = (
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cgY" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cgZ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cha" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ sortType = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"chb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"chc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"chd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/landmark/start/cargo_technician,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"che" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"chf" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"chg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"chh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"chi" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer)
+"chj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"chk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"chl" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"chm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/closed/wall/r_wall/rust,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"chn" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/disposal/incinerator";
+ dir = 8;
+ name = "Incinerator APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cho" = (
+/turf/closed/wall/r_wall/rust,
+/area/maintenance/department/eva)
+"chp" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"chq" = (
+/obj/machinery/pipedispenser/disposal/transit_tube,
+/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"chr" = (
+/obj/machinery/atmospherics/components/binary/valve/digital,
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"chs" = (
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cht" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"chu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"chv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"chw" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"chx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"chy" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"chz" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"chA" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"chB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"chC" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"chD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"chE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_cold)
+"chF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/item/pipe_dispenser,
+/obj/item/wrench,
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"chG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"chH" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/closed/wall/r_wall/rust,
+/area/maintenance/fore)
+"chI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"chJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"chK" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/teg_cold)
+"chL" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"chM" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"chN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"chO" = (
+/obj/structure/table,
+/obj/machinery/requests_console{
+ department = "Atmospherics";
+ departmentType = 4;
+ name = "Atmos RC";
+ pixel_x = 30
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/multitool,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"chP" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Law Office";
+ req_access_txt = "38"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"chQ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"chR" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/science/mixing";
+ dir = 1;
+ name = "Toxins Lab APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"chS" = (
+/obj/machinery/suit_storage_unit/atmos,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"chT" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"chU" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"chV" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"chW" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"chX" = (
+/obj/structure/sign/warning/nosmoking,
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"chY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/storage/hypospraykit/fire,
+/obj/item/grenade/chem_grenade/smart_metal_foam,
+/obj/item/grenade/chem_grenade/smart_metal_foam,
+/obj/item/wrench,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"chZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cia" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cib" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cic" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cid" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/item/analyzer,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cie" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_cold)
+"cif" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cig" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cih" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cii" = (
+/obj/machinery/disposal/deliveryChute,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cij" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/westleft{
+ name = "Science Desk";
+ req_one_access_txt = "29;47"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/lab)
+"cik" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "router_in";
+ name = "Router Driver"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cil" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cim" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1;
+ sortType = 11
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cin" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cio" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/science/robotics/mechbay)
+"cip" = (
+/obj/machinery/mass_driver{
+ id = "cargo_in";
+ name = "Router Driver"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ciq" = (
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cir" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"cis" = (
+/obj/structure/sign/warning/vacuum{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cit" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ciu" = (
+/obj/structure/barricade/wooden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/poster/ripped{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"civ" = (
+/obj/structure/girder/displaced,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ciw" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"cix" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ciy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ciz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/item/reagent_containers/food/drinks/trophy,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"ciB" = (
+/obj/structure/frame/computer,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/airless,
+/area/maintenance/port/fore)
+"ciC" = (
+/obj/structure/table,
+/obj/item/paper/pamphlet/gateway,
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"ciD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"ciE" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"ciF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"ciG" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "disposal_off"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ciH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 6
+ },
+/obj/machinery/meter,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"ciI" = (
+/turf/closed/wall/r_wall/rust,
+/area/quartermaster/warehouse)
+"ciJ" = (
+/turf/closed/wall/rust,
+/area/quartermaster/warehouse)
+"ciK" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"ciL" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"ciM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ciN" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/donkpockets{
+ pixel_y = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "kitchenlock";
+ name = "Kitchen Lockup"
+ },
+/obj/machinery/door/window/northleft{
+ name = "Kitchen Slider";
+ req_access_txt = "28"
+ },
+/obj/machinery/door/window/southleft{
+ name = "Bar Slider";
+ req_access_txt = "25"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/kitchen)
+"ciO" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "disposal_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ciP" = (
+/obj/effect/turf_decal/delivery,
+/obj/item/weldingtool,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"ciQ" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"ciR" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/door/airlock/security{
+ name = "Cargo Security Checkpoint";
+ req_access_txt = "63"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"ciS" = (
+/obj/machinery/conveyor/auto{
+ dir = 9;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ciT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/closet/radiation,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = -4
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"ciU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"ciV" = (
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ciW" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8;
+ sortType = 11
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"ciX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ciY" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/obj/item/wrench,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/engine/teg_hot";
+ dir = 8;
+ name = "Hot Loop APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"ciZ" = (
+/obj/machinery/atmospherics/components/binary/valve/digital,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cja" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cjb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/landmark/start/shaft_miner,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cjc" = (
+/obj/structure/fans/tiny,
+/obj/structure/plasticflaps,
+/obj/machinery/door/poddoor{
+ name = "Disposal Router"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cjd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cje" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cjf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Cargo Detainment Cell";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cjg" = (
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cjh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cji" = (
+/obj/structure/fans/tiny,
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "disposal"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cjj" = (
+/turf/closed/wall,
+/area/crew_quarters/theatre/mime)
+"cjk" = (
+/obj/machinery/vending/autodrobe,
+/turf/open/floor/plasteel/checker,
+/area/crew_quarters/theatre/mime)
+"cjl" = (
+/obj/structure/closet/crate/wooden/toy,
+/obj/item/toy/figure/mime,
+/turf/open/floor/plasteel/checker,
+/area/crew_quarters/theatre/mime)
+"cjm" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/hallway/secondary/service)
+"cjn" = (
+/obj/structure/reagent_dispensers/cooking_oil,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/kitchen/backroom)
+"cjo" = (
+/obj/structure/table,
+/obj/item/flashlight/seclite,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"cjp" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/theatre/mime)
+"cjq" = (
+/turf/closed/wall/rust,
+/area/maintenance/port/central)
+"cjr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cjs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cjt" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/quartermaster/office";
+ dir = 1;
+ name = "Cargo Office APC";
+ pixel_y = 24
+ },
+/obj/structure/sign/poster/contraband/scum{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cju" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/table,
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/item/clothing/ears/earmuffs,
+/obj/item/extinguisher{
+ pixel_x = -12;
+ pixel_y = -2
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Hot Loop";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cjv" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/library)
+"cjw" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/wood,
+/area/library)
+"cjx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/library)
+"cjy" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"cjz" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/kirbyplants/photosynthetic,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cjA" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cjB" = (
+/obj/item/stack/cable_coil/cut/red,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"cjC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/clothing/mask/cigarette,
+/obj/structure/sign/poster/official/twelve_gauge{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cjD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/maintenance/department/eva)
+"cjE" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_y = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cjF" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_y = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cjG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"cjH" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning/electricshock{
+ pixel_x = -32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cjI" = (
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"cjJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Storage";
+ req_access_txt = "18"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"cjK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_cold)
+"cjL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"cjM" = (
+/obj/structure/table,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/radio/off,
+/obj/item/multitool{
+ pixel_x = -6
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"cjN" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Visitation Area";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"cjO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"cjP" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cjQ" = (
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"cjR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Security's Office";
+ req_one_access_txt = "58"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/hos)
+"cjS" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"cjT" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/landmark/start/security_officer,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"cjU" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"cjV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Engineering Sector"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cjW" = (
+/obj/structure/bed,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/item/bedsheet/hos,
+/obj/effect/landmark/start/head_of_security,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "hos";
+ name = "HoS Office Shutters";
+ pixel_y = -32;
+ pixel_x = -5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"cjX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 9
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_cold)
+"cjY" = (
+/obj/machinery/computer/station_alert{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cjZ" = (
+/obj/item/beacon,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"cka" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"ckb" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/science/robotics/lab)
+"ckc" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/aft/secondary";
+ dir = 8;
+ name = "Aft Air Hookup APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"ckd" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cke" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/wood,
+/area/library)
+"ckf" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"ckg" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark/corner,
+/area/ai_monitored/storage/eva)
+"ckh" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"cki" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ckj" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"ckk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/camera{
+ c_tag = "Research Maintenance";
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"ckl" = (
+/turf/open/space/basic,
+/area/space/station_ruins)
+"ckm" = (
+/turf/closed/wall/r_wall,
+/area/engine/teg_cold)
+"ckn" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "External Solar Access";
+ req_access_txt = "10;13"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"cko" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/engine/engineering";
+ dir = 4;
+ name = "Engine Room APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"ckp" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/landmark/start/chemist,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"ckq" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"ckr" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cks" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"ckt" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cku" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"ckv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Warehouse";
+ req_one_access_txt = "10;31"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"ckw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"ckx" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cky" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"ckz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/table,
+/obj/item/pipe_dispenser,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"ckA" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"ckB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/closet/crate/engineering,
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/item/rcl/pre_loaded,
+/obj/item/rcl/pre_loaded,
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stock_parts/cell/high/plus,
+/obj/machinery/camera{
+ c_tag = "Engineering - Cold Loop";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"ckC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ name = "gas to cold loop"
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"ckD" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/sign/warning/fire{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"ckE" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"ckF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/engine/teg_cold";
+ dir = 4;
+ name = "Cold Loop APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"ckG" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ckH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"ckI" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"ckJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/engine/teg_hot)
+"ckK" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/item/clothing/under/rank/cargo/miner,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"ckL" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/item/clothing/under/rank/cargo/miner,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"ckM" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/item/clothing/under/rank/cargo/miner,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"ckN" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/north,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"ckO" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"ckP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ckQ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ckR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/lab)
+"ckS" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"ckT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ckU" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ckV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ckW" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ckX" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"ckY" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/checker,
+/area/ai_monitored/storage/eva)
+"ckZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/ai_monitored/storage/eva)
+"cla" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"clb" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"clc" = (
+/obj/machinery/vending/wardrobe/chem_wardrobe,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cld" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cle" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/science/misc_lab";
+ dir = 1;
+ name = "Research Observatory APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"clf" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Pen 3";
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"clg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"clh" = (
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cli" = (
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"clj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"clk" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cll" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"clm" = (
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cln" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"clo" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"clp" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"clq" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"clr" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"cls" = (
+/obj/structure/window/reinforced/spawner,
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"clt" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"clu" = (
+/obj/machinery/door/window/northleft{
+ name = "Library Desk Door";
+ req_access_txt = "37"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"clv" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"clw" = (
+/obj/effect/landmark/start/librarian,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"clx" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cly" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"clz" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"clA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"clB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"clC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"clD" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clE" = (
+/obj/machinery/ntnet_relay,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clF" = (
+/obj/machinery/telecomms/server/presets/supply,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clG" = (
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"clI" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clJ" = (
+/obj/machinery/telecomms/broadcaster/preset_left,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clK" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clL" = (
+/obj/machinery/telecomms/bus/preset_two,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clM" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clN" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/tcommsat/server)
+"clO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Electrical Substation";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"clP" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"clQ" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"clR" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/transmitter,
+/obj/item/stock_parts/subspace/transmitter,
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"clS" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/treatment,
+/obj/item/stock_parts/subspace/treatment,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"clT" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass,
+/obj/item/stack/sheet/glass,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"clU" = (
+/obj/structure/table,
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/scanning_module,
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"clV" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Supply - Security Post";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"clW" = (
+/turf/closed/wall/rust,
+/area/storage/tech)
+"clX" = (
+/turf/closed/wall/rust,
+/area/maintenance/starboard/aft)
+"clY" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/closet/firecloset,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"clZ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Escape Hall - Port";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cma" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Escape Hall - Starboard";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cmb" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Supply - Mining Dock";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cmc" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Starboard Quarter Solar Maintenance";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"cmd" = (
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cme" = (
+/obj/structure/bed,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cmf" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cmg" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cmh" = (
+/obj/structure/sign/warning/radiation,
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"cmi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cmj" = (
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cmk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cml" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"cmm" = (
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cmn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cmo" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"cmp" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Gravity Generator";
+ req_access_txt = "11"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cmq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cmr" = (
+/obj/machinery/gravity_generator/main/station,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cms" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cmt" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cmu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/power/smes,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cmv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cmw" = (
+/obj/machinery/camera{
+ c_tag = "Engineering - Gravity Generator";
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/gravity_generator)
+"cmx" = (
+/obj/machinery/light,
+/turf/open/floor/engine,
+/area/engine/gravity_generator)
+"cmy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Starboard Quarter Maintenance";
+ req_one_access_txt = "12;48"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"cmz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Starboard Quarter Maintenance";
+ req_one_access_txt = "12;48"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"cmA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Bar Backroom";
+ req_access_txt = "25"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"cmB" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/northright{
+ name = "Emergency Shower"
+ },
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"cmC" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"cmD" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/deliveryChute,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cmE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cmF" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/mineral/titanium/blue,
+/area/hallway/primary/central)
+"cmG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cmH" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "cargoblock";
+ name = "Cargo Router"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cmI" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/radio/off{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cmJ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Mining Dock";
+ req_one_access_txt = "10;24;48"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cmK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cmL" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cmM" = (
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_x = -32
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cmN" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/item/radio/intercom{
+ frequency = 1359;
+ name = "Station Intercom (Security)";
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"cmO" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 1;
+ freq = 1400;
+ location = "Engineering"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cmP" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"cmQ" = (
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d8b1b1"
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Pen 4";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cmR" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"cmS" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cmT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/folder/red,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/door/window/northright{
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cmU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cmV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cmW" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Cargo";
+ name = "Cargo RC";
+ pixel_x = -30
+ },
+/obj/machinery/camera{
+ c_tag = "Supply - Quartermaster's Office";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"cmX" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"cmY" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Hot Loop";
+ req_one_access_txt = "10;24"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cmZ" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/atmospherics/components/unary/cryo_cell{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cna" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/atmospherics/components/unary/cryo_cell{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cnb" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line,
+/obj/item/storage/box/beakers{
+ pixel_x = -4
+ },
+/obj/item/storage/box/syringes{
+ pixel_x = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cnc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cnd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cne" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cnf" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cng" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"cnh" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Cold Loop";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cni" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cnj" = (
+/obj/machinery/camera{
+ c_tag = "Research - Observatory";
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cnk" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cnl" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1;
+ pixel_x = 5
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cnm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/gateway)
+"cnn" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"cno" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cnp" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/bridge)
+"cnq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/mob/living/simple_animal/cockroach,
+/turf/open/floor/plating,
+/area/maintenance/port/central)
+"cnr" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cns" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cnt" = (
+/obj/structure/fans/tiny,
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ dir = 8;
+ id = "disposal"
+ },
+/obj/machinery/door/poddoor{
+ name = "Disposal Router"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cnu" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/gateway)
+"cnv" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/frame/computer,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cnw" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cnx" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cny" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cnz" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/obj/structure/sign/departments/chemistry{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cnA" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cnB" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cnC" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"cnD" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cnE" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 9;
+ height = 22;
+ id = "emergency_home";
+ name = "CogStation Escape Dock";
+ width = 29
+ },
+/turf/open/space/basic,
+/area/space)
+"cnF" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/port/fore)
+"cnK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cnO" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/science/storage)
+"cnS" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/highcap/fifteen_k{
+ areastring = /area/maintenance/solars/starboard/aft;
+ dir = 1;
+ name = "Starboard Quarter Solars APC";
+ pixel_y = 26
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
+"cnT" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"cnU" = (
+/obj/machinery/door/poddoor/incinerator_toxmix,
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"cnV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"cnW" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/library)
+"cnX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/vehicle/ridden/wheelchair,
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cnY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/vehicle/ridden/wheelchair,
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cnZ" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/holopad,
+/obj/machinery/requests_console{
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"coa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cob" = (
+/obj/structure/closet/l3closet/virology,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/warning/biohazard{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"coc" = (
+/obj/machinery/camera{
+ c_tag = "Medbay - Reception";
+ dir = 4
+ },
+/turf/open/floor/plasteel/stairs,
+/area/medical/medbay/central)
+"cod" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/medical/medbay/lobby)
+"coe" = (
+/obj/structure/bodycontainer/morgue,
+/obj/machinery/camera{
+ c_tag = "Medbay Morgue";
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"cof" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cog" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"coh" = (
+/obj/machinery/power/smes,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/engine/storage_shared{
+ name = "Electrical Substation"
+ })
+"coi" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"coj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cok" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"col" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"com" = (
+/obj/machinery/chem_master,
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"con" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/station_engineer,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"coo" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cop" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "CEPrivacy";
+ name = "CE Privacy Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"coq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departures"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cor" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departures"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cos" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Workshop";
+ req_access_txt = "11"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cot" = (
+/obj/machinery/computer/apc_control{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cou" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/chief_engineer,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cov" = (
+/obj/structure/sign/warning/nosmoking{
+ pixel_y = -32
+ },
+/turf/closed/wall,
+/area/medical/medbay/central)
+"cow" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Asteroid Mining Access";
+ req_one_access_txt = "10;48"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cox" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"coy" = (
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"coz" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"coA" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera{
+ c_tag = "Aft Maintenance - Starboard Quarter";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"coB" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Hallway - MedSci Port";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"coC" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/camera{
+ c_tag = "Aft Maintenance - Starboard Bow";
+ pixel_x = 22
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"coD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"coE" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Hall - MedSci Starboard";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"coF" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/landmark/start/assistant,
+/obj/machinery/camera{
+ c_tag = "Aft Hall - Workshop";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"coG" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Research - Experimentation Lab";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"coH" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab";
+ req_access_txt = "29"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"coI" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/gateway)
+"coJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Virology Access";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/medical/virology)
+"coK" = (
+/obj/machinery/camera{
+ c_tag = "Medbay - Monkey Pen";
+ dir = 4
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/grass,
+/area/medical/virology)
+"coL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=cargo";
+ location = "eng2"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"coM" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"coN" = (
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ sortType = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"coO" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Central Hall";
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"coP" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/machinery/camera{
+ c_tag = "Central Plaza - Port";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"coQ" = (
+/obj/machinery/camera{
+ c_tag = "Central Docking Bay"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"coR" = (
+/obj/machinery/camera{
+ c_tag = "Ferry Docking Bay";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"coS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Ferry Docking Bay - Starboard";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"coT" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"coU" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Front Desk";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"coV" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/camera{
+ c_tag = "Medbay Entrance";
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"coW" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/techstorage/engineering,
+/obj/machinery/camera{
+ c_tag = "Technical Storage";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"coX" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay - Operating Theatre";
+ dir = 8;
+ network = list("ss13","medbay");
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"coY" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/machinery/camera{
+ c_tag = "Medbay - Cryogenics";
+ dir = 1
+ },
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"coZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cpa" = (
+/obj/structure/closet/crate/radiation,
+/obj/item/storage/firstaid/radbgone,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/head/radiation,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpb" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/sign/warning/biohazard{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/medical/virology)
+"cpc" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cpd" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/crew_quarters/fitness)
+"cpe" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/full,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"cpf" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cpg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cph" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cpi" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 5
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cpj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cpk" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpl" = (
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cpm" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/dark,
+/area/lawoffice)
+"cpn" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cpo" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpp" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor/auto{
+ id = "cargo"
+ },
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/preopen{
+ id = "cargoblock";
+ name = "Cargo Router"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cpq" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/abandoned_gambling_den{
+ name = "Arcade"
+ })
+"cpr" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cps" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"cpt" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/captain)
+"cpu" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/library)
+"cpv" = (
+/obj/structure/table,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cpw" = (
+/obj/machinery/computer/operating,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/space_cops{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"cpx" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/mineral/titanium/blue,
+/area/hallway/primary/central)
+"cpy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cpz" = (
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"cpA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpB" = (
+/obj/effect/landmark/carpspawn,
+/turf/open/space/basic,
+/area/space)
+"cpC" = (
+/obj/effect/landmark/carpspawn,
+/turf/open/space/basic,
+/area/space/station_ruins)
+"cpD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/engine,
+/area/science/storage)
+"cpE" = (
+/obj/structure/fans/tiny,
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cpF" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/eva)
+"cpH" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ pixel_y = -24
+ },
+/obj/structure/sign/directions/supply{
+ dir = 4;
+ pixel_y = -32
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_y = -40
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cpI" = (
+/obj/machinery/chem_dispenser,
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"cpJ" = (
+/turf/closed/wall/r_wall/rust,
+/area/quartermaster/office)
+"cpK" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cpL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cpM" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cpN" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/obj/item/cartridge/atmos,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"cpO" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/obj/item/cartridge/atmos,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"cpP" = (
+/obj/machinery/camera{
+ c_tag = "Research - Gateway Atrium";
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"cpQ" = (
+/obj/machinery/vending/wardrobe/atmos_wardrobe,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6;
+ layer = 2.03
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"cpR" = (
+/obj/structure/closet/crate/engineering/electrical,
+/obj/item/electronics/apc,
+/obj/item/electronics/apc,
+/obj/item/electronics/airalarm,
+/obj/item/electronics/airalarm,
+/obj/item/electronics/firelock,
+/obj/item/electronics/firelock,
+/obj/item/electronics/firealarm,
+/obj/item/electronics/firealarm,
+/obj/item/electronics/airlock,
+/obj/item/electronics/airlock,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpS" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpT" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpV" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cpW" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cpX" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"cpY" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/teg_hot)
+"cpZ" = (
+/obj/structure/table,
+/obj/item/tank/internals/air,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/dark,
+/area/engine/teg_hot)
+"cqa" = (
+/obj/machinery/autolathe,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqb" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cqc" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqd" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/mob/living/simple_animal/hostile/retaliate/goose{
+ check_friendly_fire = 1;
+ desc = "It may not be as wise as an owl, but the Head of Security's pet is far more dangerous.";
+ faction = list("neutral","silicon","turret","station");
+ name = "Officer Snooty"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"cqe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=eng1";
+ location = "sci"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cqf" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cqg" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cqh" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cqi" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"cqj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cqk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=med";
+ location = "cargo"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cql" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=eng2";
+ location = "evac"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cqm" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/item/storage/box/disks_nanite,
+/obj/item/book/manual/wiki/research_and_development{
+ pixel_x = 4;
+ pixel_y = -8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cqn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqo" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Warehouse";
+ req_one_access_txt = "10;24"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqr" = (
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/starboard/central";
+ name = "Central Starboard Maintenance APC";
+ pixel_y = -26
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/central)
+"cqs" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/paper/guides/jobs/engi/solars,
+/obj/item/pen,
+/obj/machinery/camera{
+ c_tag = "Engineering Foyer - Port";
+ network = list("ss13","rd")
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqt" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/noticeboard/qm{
+ dir = 4;
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cqu" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/computer/atmos_alert,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqv" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/machinery/disposal/bin,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/full,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqx" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/modular_computer/console/preset/engineering,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqz" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cqA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqB" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/absinthe,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"cqC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqD" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqE" = (
+/obj/machinery/conveyor_switch{
+ id = "EngiCargoConveyer"
+ },
+/obj/machinery/button/door{
+ id = "EngiDeliverDoor";
+ name = "Engineering Delivery Door Control";
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqF" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cqG" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqH" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"cqI" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqJ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqK" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/sign/plaques/atmos{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cqL" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqN" = (
+/turf/closed/wall/rust,
+/area/maintenance/department/security)
+"cqO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cqP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cqQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cqR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cqS" = (
+/obj/machinery/computer/rdconsole/experiment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science RC";
+ pixel_x = -30;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"cqT" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cqU" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cqV" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cqW" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cqX" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 5;
+ height = 7;
+ id = "supply_home";
+ name = "Cargo Shuttle";
+ width = 12
+ },
+/turf/open/space/basic,
+/area/space)
+"cqY" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cqZ" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cra" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Auxiliary Tool Storage"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"crb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/turf/open/floor/plating,
+/area/engine/teg_cold)
+"crc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"crd" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/destTagger,
+/obj/item/destTagger,
+/obj/item/destTagger,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_y = 32
+ },
+/obj/machinery/button/massdriver{
+ id = "cargo_out";
+ pixel_x = -8;
+ pixel_y = -4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cre" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Asteroid Mining Access";
+ req_one_access_txt = "10;48"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"crf" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/mechbay)
+"crg" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/door/airlock/medical/glass{
+ name = "Chemistry Lab";
+ req_access_txt = "5; 33"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"crh" = (
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "cargo_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cri" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"crj" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"crk" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/mineral/titanium/blue,
+/area/hallway/primary/central)
+"crl" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"crm" = (
+/obj/machinery/door/firedoor,
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "EngiCargoConveyer"
+ },
+/obj/machinery/door/poddoor{
+ id = "EngiDeliverDoor";
+ name = "Engineering Delivery Door"
+ },
+/turf/open/floor/plating,
+/area/engine/teg_cold)
+"crn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chem1";
+ name = "chem lab shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"cro" = (
+/turf/closed/wall/r_wall/rust,
+/area/maintenance/starboard/aft)
+"crp" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"crq" = (
+/obj/structure/closet/crate/freezer,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/medical/morgue";
+ dir = 4;
+ name = "Morgue APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"crr" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Central Hall - Fore";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"crs" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"crt" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cru" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"crv" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"crw" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"crx" = (
+/obj/machinery/camera{
+ c_tag = "Engine Room - Port Quarter";
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cry" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10;
+ pixel_x = -5
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/stack/cable_coil/random{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Robotics - Surgery";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"crz" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Satellite";
+ dir = 1;
+ network = list("tcomms")
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"crA" = (
+/obj/machinery/aug_manipulator,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"crB" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Satellite Exterior - Port";
+ dir = 8;
+ network = list("tcomms")
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"crC" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Satellite Exterior Starboard";
+ dir = 4;
+ network = list("tcomms")
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"crD" = (
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Server Room";
+ dir = 1;
+ network = list("tcomms")
+ },
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"crE" = (
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Satellite Exterior - Port Quarter";
+ network = list("tcomms")
+ },
+/turf/open/space/basic,
+/area/space)
+"crF" = (
+/obj/machinery/camera/motion{
+ c_tag = "Telecomms Satellite Exterior - Starboard Quarter";
+ network = list("tcomms");
+ pixel_x = 22
+ },
+/turf/open/space/basic,
+/area/space)
+"crG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"crH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"crI" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/science/mixing)
+"crJ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "toxinsdriver"
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/mixing)
+"crK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"crL" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"crM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/science/test_area)
+"crN" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"crO" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"crP" = (
+/obj/structure/lattice,
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"crQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"crR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"crS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"crT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"crU" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/crowbar,
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"crV" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"crW" = (
+/obj/machinery/computer/rdconsole/robotics{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"crX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"crY" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"crZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs/left,
+/area/hallway/primary/aft)
+"csa" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/sign/warning/pods{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"csb" = (
+/obj/structure/sign/warning/pods{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"csc" = (
+/obj/structure/fans/tiny/invisible,
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 1;
+ height = 4;
+ name = "escape pod loader";
+ roundstart_template = /datum/map_template/shuttle/escape_pod/default;
+ width = 3
+ },
+/turf/open/space/basic,
+/area/space)
+"csd" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cse" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/item/clipboard,
+/obj/item/paper/monitorkey,
+/obj/item/pen/fountain,
+/obj/item/stamp/ce,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 5;
+ name = "Chief Engineer's RC";
+ pixel_y = -32
+ },
+/mob/living/simple_animal/parrot/Poly,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"csf" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Research Director's Desk";
+ departmentType = 5;
+ name = "Research Director's RC";
+ pixel_y = -32;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"csg" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"csh" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"csi" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chem1";
+ name = "chem lab shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"csj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"csk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"csl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
+"csm" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"csn" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security RC";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"cso" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"csp" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"csq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Cold Loop";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"csr" = (
+/obj/structure/table,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"css" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"cst" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/teg_cold)
+"csu" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/gateway)
+"csv" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/item/storage/toolbox/mechanical,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/paper/guides/cogstation/letter_supp,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"csw" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"csx" = (
+/obj/structure/closet/secure_closet/RD,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/item/paper/fluff/cogstation/letter_rd,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"csy" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/xmastree,
+/turf/open/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"csz" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"csA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Visitation"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"csB" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"csC" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating/asteroid,
+/area/hydroponics/garden{
+ name = "Nature Preserve"
+ })
+"csD" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"csE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hop)
+"csF" = (
+/obj/structure/bed,
+/obj/effect/landmark/start/research_director,
+/obj/item/bedsheet/rd,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"csG" = (
+/obj/machinery/holopad,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/lawoffice)
+"csH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/library)
+"csI" = (
+/obj/structure/table/wood,
+/obj/machinery/light_switch{
+ pixel_x = 4;
+ pixel_y = -24
+ },
+/obj/item/flashlight/lamp/green,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = -32
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"csJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"csK" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/door/window/northright{
+ name = "Medbay Desk";
+ req_access_txt = "5"
+ },
+/obj/item/clipboard,
+/obj/item/clothing/glasses/hud/health,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/item/pen,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"csL" = (
+/obj/effect/landmark/xmastree/rdrod,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"csM" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"csN" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"csO" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"csP" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"csQ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"csR" = (
+/turf/open/floor/engine,
+/area/science/storage)
+"csS" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"csT" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"csU" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/storage/tech)
+"csV" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/button/door{
+ id = "robotics";
+ name = "Shutters Control Button";
+ pixel_y = 8;
+ req_access_txt = "29";
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/science/robotics/lab)
+"csW" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"csX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"csY" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"csZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cta" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"ctb" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/engine,
+/area/science/explab)
+"ctc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ctd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cte" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ctf" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ctg" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cth" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cti" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ctj" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"ctk" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 4
+ },
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"ctl" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/full,
+/obj/structure/window/reinforced/spawner/north,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"ctm" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ sortType = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ctn" = (
+/obj/structure/closet/secure_closet/engineering_chief,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/obj/item/paper/guides/cogstation/letter_chief,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cto" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/full,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ctp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ctq" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ctr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"cts" = (
+/obj/structure/rack,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"ctt" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"ctu" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/machinery/camera{
+ c_tag = "Supply - Cargo Office";
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/storage/box/disks,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"ctv" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"ctw" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"ctx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cty" = (
+/obj/effect/landmark/start/shaft_miner,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"ctz" = (
+/obj/structure/table,
+/obj/item/stamp/qm,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/coin/silver{
+ pixel_x = -12
+ },
+/obj/item/key{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"ctA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Bay";
+ req_one_access_txt = "31;48"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"ctB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"ctC" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"ctD" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"ctE" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/modular_computer/console/preset/engineering,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced/spawner/north,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"ctF" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"ctG" = (
+/turf/closed/wall,
+/area/engine/workshop)
+"ctH" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"ctI" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"ctJ" = (
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/engine/workshop)
+"ctK" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ id = "workshop_off"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"ctL" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Pen 5";
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"ctM" = (
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d8b1b1"
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Pen 6";
+ dir = 8;
+ pixel_y = -22
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"ctN" = (
+/obj/machinery/light/small{
+ dir = 4;
+ light_color = "#d8b1b1"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ctO" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/sign/warning/biohazard{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"ctP" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ctQ" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"ctR" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"ctS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/sign/warning/biohazard{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"ctT" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#c1caff"
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Aft";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"ctU" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"ctV" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/highcap/five_k{
+ areastring = "/area/hallway/secondary/exit";
+ name = "Escape Shuttle Hallway APC";
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/hallway/secondary/exit)
+"ctW" = (
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ctX" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"ctY" = (
+/obj/structure/sign/departments/xenobio{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"ctZ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cua" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cub" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cuc" = (
+/obj/machinery/door/airlock/virology/glass{
+ name = "Monkey Pen";
+ req_access_txt = "39"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cud" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Aft Access";
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cue" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "8;55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cuf" = (
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cug" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cuh" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cui" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cuj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cuk" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cul" = (
+/obj/structure/chair/comfy/black,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cum" = (
+/obj/structure/rack,
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cun" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/meat/steak,
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Test Chamber";
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cuo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"cup" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cuq" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cur" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cus" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cut" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 7;
+ height = 9;
+ id = "whiteship_home";
+ name = "SS13: Merchant Dock";
+ width = 13
+ },
+/turf/open/space/basic,
+/area/space)
+"cuu" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuv" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cuw" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/kirbyplants/photosynthetic,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cux" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cuy" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cuz" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cuA" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cuB" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cuC" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cuD" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cuE" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES";
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cuF" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuG" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cuH" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuI" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/screwdriver,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuJ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/screwdriver,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuK" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/engine/workshop";
+ dir = 1;
+ name = "Engineering Workshop APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuL" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuM" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/closed/wall,
+/area/engine/workshop)
+"cuO" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cuP" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/landmark/start/atmospheric_technician,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cuQ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"cuR" = (
+/turf/closed/wall,
+/area/router/air)
+"cuS" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "workshop_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cuT" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/machinery/conveyor{
+ id = "workshop_off"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cuU" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/build{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuV" = (
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cuW" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cuX" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay";
+ req_access_txt = "5"
+ },
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cuY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab";
+ req_access_txt = "29"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"cuZ" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/science/robotics/lab)
+"cva" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cvb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cvc" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cvd" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cve" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"cvf" = (
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cvg" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cvh" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/computer/rdconsole/production{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cvi" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cvj" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/machinery/conveyor{
+ id = "DeliveryConveyer"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cvk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "DeliveryConveyer"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cvl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/router/air)
+"cvm" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/central";
+ dir = 1;
+ name = "Airbridge Router APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cvn" = (
+/obj/structure/table,
+/obj/item/destTagger,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/router/air)
+"cvo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cvp" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/cargo/request,
+/obj/machinery/camera{
+ c_tag = "Airbridge Router";
+ pixel_x = 22
+ },
+/obj/machinery/requests_console{
+ department = "Airbridge Router";
+ name = "Airbridge Router RC";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cvq" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "workshop_off"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cvr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cvs" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cvt" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 10
+ },
+/area/science/robotics/lab)
+"cvu" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cvv" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Genetics";
+ name = "Genetics RC";
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cvw" = (
+/obj/structure/closet,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/item/wrench/medical,
+/obj/item/screwdriver,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"cvx" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/hypospray/mkii/tricord,
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cvy" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cvz" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4;
+ node1_concentration = 0.8;
+ node2_concentration = 0.2;
+ on = 1;
+ target_pressure = 4500
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cvA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/warning/securearea{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cvB" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/porta_turret/ai{
+ dir = 1;
+ req_access = list(16)
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cvC" = (
+/obj/machinery/computer/nanite_cloud_controller,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/structure/window/reinforced/spawner,
+/turf/open/floor/plasteel/dark,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cvD" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/rnd/server,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cvE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ id = "RDServer";
+ name = "RD Server Lockup"
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cvF" = (
+/obj/item/caution,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cvG" = (
+/obj/machinery/door/airlock/research/glass{
+ name = "Xenobiology Lab Access";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cvH" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Toxins Mixing Lab";
+ req_access_txt = "7;8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"cvI" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/computer/telecomms/server{
+ dir = 1;
+ network = "tcommsat"
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"cvJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"cvK" = (
+/obj/structure/chair/sofa/right,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"cvL" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cvM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"cvN" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cvO" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cvP" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Custodial Closet";
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cvQ" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/science/robotics/lab)
+"cvR" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ sortType = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cvS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"cvT" = (
+/obj/structure/extinguisher_cabinet,
+/turf/closed/wall,
+/area/medical/medbay/central)
+"cvU" = (
+/obj/structure/closet/crate/freezer/blood,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/virusfood{
+ pixel_x = -32
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cvV" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cvW" = (
+/obj/structure/chair/comfy/black,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cvX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "8;55"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cvY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Xenobiology Lab Access";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cvZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/clipboard,
+/obj/item/stamp/denied{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stamp,
+/obj/machinery/door/window/southright{
+ name = "Customs Desk";
+ req_access_txt = "57"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "HoPAft";
+ name = "HoP Aft Desk Shutters"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"cwa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/flashlight/lamp,
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "HoPAft";
+ name = "HoP Aft Desk Shutters"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"cwb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29"
+ },
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"cwc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/button/door{
+ id = "cargoblock";
+ name = "Router Access Control";
+ pixel_x = -24;
+ pixel_y = 24;
+ req_access_txt = "31"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cwd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cwe" = (
+/obj/structure/closet/secure_closet/exile,
+/turf/open/floor/plasteel/white,
+/area/gateway)
+"cwf" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cwg" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cwh" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cwi" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cwj" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/medical/virology)
+"cwk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/lounge)
+"cwl" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/book/manual/wiki/infections,
+/obj/item/folder/white,
+/obj/machinery/requests_console{
+ department = "Virology";
+ name = "Virology RC";
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cwm" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cwn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cwo" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/microwave,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cwp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/medical/virology)
+"cwq" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Hot Loop";
+ req_one_access_txt = "10;24"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cwr" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cws" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cwt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"cwu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cwv" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/warning/vacuum/external,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cww" = (
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cwx" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/full,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cwy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/plating,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cwz" = (
+/obj/structure/transit_tube/curved{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space)
+"cwA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"cwB" = (
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cwC" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cwD" = (
+/obj/structure/transit_tube/diagonal/topleft,
+/turf/open/space/basic,
+/area/space)
+"cwE" = (
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cwF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cwG" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/effect/landmark/event_spawn,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cwH" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall,
+/area/crew_quarters/toilet/restrooms)
+"cwI" = (
+/obj/structure/transit_tube/horizontal,
+/turf/open/space/basic,
+/area/space)
+"cwJ" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube/horizontal,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cwK" = (
+/obj/structure/transit_tube/crossing/horizontal,
+/turf/open/space/basic,
+/area/space)
+"cwL" = (
+/obj/structure/transit_tube/horizontal,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"cwM" = (
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/structure/transit_tube/station/reverse/flipped,
+/obj/structure/transit_tube_pod{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cwN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"cwO" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cwP" = (
+/obj/structure/bed,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/landmark/start/chief_engineer,
+/obj/item/bedsheet/ce,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/chief";
+ dir = 4;
+ name = "Chief Engineer's Office APC";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads/chief)
+"cwQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cwR" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cwS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Warehouse";
+ req_access_txt = "11"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cwT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/medical/virology)
+"cwU" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/mineral/titanium/blue,
+/area/hallway/primary/central)
+"cwV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cwW" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/public/glass,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cwX" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/public/glass,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cwY" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/air_sensor/atmos/toxins_mixing_tank,
+/turf/open/floor/engine/vacuum,
+/area/science/mixing)
+"cwZ" = (
+/obj/structure/table,
+/obj/item/storage/box/beanbag,
+/obj/item/gun/ballistic/revolver/doublebarrel,
+/obj/item/storage/hypospraykit/toxin,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/bar)
+"cxa" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 6
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cxb" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cxc" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cxd" = (
+/obj/machinery/computer/monitor,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cxe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cxf" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cxg" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cxh" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cxi" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/item/extinguisher,
+/obj/item/extinguisher,
+/obj/item/extinguisher,
+/obj/item/extinguisher,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Engineering - Primary Tool Storage";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cxj" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/reagent_dispensers/foamtank,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cxk" = (
+/obj/structure/tank_dispenser,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cxl" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/storage/primary)
+"cxm" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"cxn" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/item/t_scanner{
+ pixel_x = -4
+ },
+/obj/item/pipe,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/quartermaster/warehouse)
+"cxo" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Supply - Warehouse Aft";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cxp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/mob/living/simple_animal/bot/floorbot,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cxq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cxr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cxs" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/hand_labeler,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cxt" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cxu" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cxv" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cxw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cxx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Warehouse";
+ req_one_access_txt = "10;31"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
+"cxy" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs,
+/area/quartermaster/storage)
+"cxz" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Office";
+ req_access_txt = "48"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cxB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Cargo Office"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxE" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cxF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxI" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cxN" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxO" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cxP" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxQ" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxR" = (
+/obj/effect/landmark/start/shaft_miner,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cxS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cxT" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/paper/guides/cogstation/letter_supp,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cxU" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cxV" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cxW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Starboard Quarter Maintenance";
+ req_one_access_txt = "12;48"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"cxX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cxY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cxZ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/button/door{
+ id = "MiningConveyorBlastDoor";
+ name = "Mining Conveyor Access";
+ pixel_x = 8;
+ pixel_y = -24;
+ req_one_access_txt = "10;24;48"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cya" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cyb" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cyc" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Mining Dock";
+ req_one_access_txt = "10;24;48"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cyd" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cye" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cyf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cyg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cyh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Office Maintenance";
+ req_one_access_txt = "10;24;48"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/miningoffice)
+"cyi" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cyj" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cyk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cyl" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cym" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cyn" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cyo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Aft Maintenance";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"cyp" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cyq" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Restrooms APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"cyr" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cys" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cyt" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/power/apc{
+ areastring = "/area/science/robotics/lab";
+ dir = 8;
+ name = "Robotics Lab APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cyu" = (
+/obj/structure/closet/wardrobe/chemistry_white{
+ anchored = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cyv" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cyw" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"cyx" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cyy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Medbay Lobby"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white/side,
+/area/medical/medbay/lobby)
+"cyz" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cyA" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cyB" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/medical_green_cross{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cyC" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cyD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departures"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cyE" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cyF" = (
+/obj/structure/closet/secure_closet/chemical,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cyG" = (
+/obj/machinery/chem_master,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/medbay/central)
+"cyH" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cyI" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cyJ" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"cyK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cyL" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cyM" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cyN" = (
+/obj/machinery/chem_dispenser/apothecary,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/medbay/central)
+"cyO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyR" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyS" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyU" = (
+/obj/machinery/camera{
+ c_tag = "Aft Maintenance - Central Starboard";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"cyW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cyX" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cyY" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"cyZ" = (
+/obj/machinery/computer/arcade,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"cza" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"czb" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/item/paicard,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"czc" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/hallway/secondary/exit)
+"czd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cze" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czf" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 4
+ },
+/area/gateway)
+"czg" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/mob/living/simple_animal/hostile/retaliate/bat,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"czh" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"czi" = (
+/obj/structure/bed,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/effect/landmark/start/chief_medical_officer,
+/obj/item/bedsheet/cmo,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"czj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"czk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"czl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Aft Maintenance";
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"czm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czo" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czp" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czq" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/food/drinks/coffee,
+/obj/item/pen/blue,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czr" = (
+/obj/structure/table/glass,
+/obj/item/storage/toolbox/emergency,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czs" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czt" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"czu" = (
+/obj/machinery/suit_storage_unit/cmo,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"czv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"czw" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"czx" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"czy" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Gateway Chamber";
+ req_access_txt = "62"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"czA" = (
+/obj/machinery/modular_computer/console/preset/research{
+ dir = 8
+ },
+/obj/item/reagent_containers/food/drinks/coffee,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"czB" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"czC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"czD" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"czE" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"czF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"czG" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"czH" = (
+/obj/machinery/button/door{
+ id = "robotics2";
+ name = "Shutters Control Button";
+ pixel_x = 24;
+ pixel_y = -24;
+ req_access_txt = "29"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"czI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"czJ" = (
+/obj/item/beacon,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"czK" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"czL" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"czM" = (
+/obj/machinery/requests_console{
+ department = "Chemistry";
+ departmentType = 2;
+ name = "Chemistry RC";
+ pixel_x = 30;
+ pixel_y = 0;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"czN" = (
+/obj/structure/closet/crate/trashcart,
+/obj/structure/sign/departments/custodian{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/chapel)
+"czO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Waste Disposal";
+ req_one_access_txt = "12;50"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"czP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/medbay/central)
+"czQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"czR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/sorting/mail,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/department/chapel)
+"czS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access_txt = "26"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"czT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"czU" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"czV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"czW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/medbay/central)
+"czX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/rust,
+/area/maintenance/disposal)
+"czY" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"czZ" = (
+/obj/effect/landmark/start/janitor,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAa" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/structure/chair/sofa/right,
+/obj/item/reagent_containers/food/drinks/bottle/vermouth/empty,
+/obj/item/reagent_containers/food/snacks/grown/cannabis{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"cAb" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/structure/chair/sofa/left,
+/obj/item/storage/box/hug/medical,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"cAc" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"cAd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cAe" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAg" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAh" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Custodial Closet";
+ req_access_txt = "12;26"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAi" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"cAj" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"cAk" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/reagent_containers/pill/floorpill,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"cAl" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/stack/tile/plasteel{
+ pixel_x = 10;
+ pixel_y = 4
+ },
+/obj/item/camera,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"cAm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cAn" = (
+/obj/structure/disposalpipe/junction/flip,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cAo" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cAp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cAq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"cAr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal)
+"cAs" = (
+/obj/structure/mopbucket,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAt" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/window/southleft{
+ name = "Cloning Access";
+ req_one_access_txt = "9;45"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cAu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAv" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs,
+/area/medical/medbay/central)
+"cAw" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/soap,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/machinery/requests_console{
+ department = "Custodial Closet";
+ name = "Custodial RC";
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAx" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/landmark/start/janitor,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAy" = (
+/obj/item/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cAz" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cAA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/closed/wall,
+/area/storage/primary)
+"cAB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cAC" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cAD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Isolation Room A";
+ req_access_txt = "39"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cAE" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/caution,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cAF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Detective's Office";
+ req_access_txt = "4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"cAG" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start/virologist,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cAH" = (
+/obj/structure/table,
+/obj/item/storage/box/beakers,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cAI" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cAJ" = (
+/obj/structure/table/wood,
+/obj/item/storage/book/bible/booze,
+/obj/item/beacon{
+ pixel_y = -8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"cAK" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cAL" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Detective's Office";
+ req_access_txt = "4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/detectives_office)
+"cAM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"cAN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"cAO" = (
+/obj/effect/landmark/start/detective,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"cAP" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/cigarettes,
+/obj/item/lighter{
+ pixel_x = -4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -30
+ },
+/obj/machinery/camera{
+ c_tag = "Detective's Office";
+ dir = 1
+ },
+/obj/item/reagent_containers/food/drinks/bottle/hcider{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"cAQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
+"cAR" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"cAS" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/gateway)
+"cAT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/aft)
+"cAU" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cAV" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cAW" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cAX" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cAY" = (
+/obj/machinery/door/airlock{
+ name = "Catering";
+ req_one_access_txt = "25;28"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/bar)
+"cAZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cBa" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cBb" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"cBc" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cBe" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBg" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBh" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBi" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBj" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cBl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Power Monitoring";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_smes{
+ name = "Power Monitoring"
+ })
+"cBm" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/rnd/production/techfab/department/engineering,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cBn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cBo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBp" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cBq" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"cBr" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"cBs" = (
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"cBt" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"cBu" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/sign/departments/security{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBv" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Maintenance";
+ req_one_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/hallway/primary/port/fore)
+"cBx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cBy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cBz" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"cBA" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Hall - Fore";
+ pixel_x = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cBB" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cBC" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/aft/secondary{
+ name = "Aft Air Hookup"
+ })
+"cBD" = (
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cBE" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"cBG" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cBH" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cBI" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cBJ" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/power/apc{
+ name = "Engineering Foyer APC";
+ pixel_y = -24
+ },
+/obj/item/storage/firstaid/regular,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cBK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBL" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cBM" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"cBN" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"cBO" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"cBP" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"cBQ" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"cBR" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"cBS" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"cBT" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cBU" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs,
+/area/crew_quarters/bar)
+"cBV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"cBW" = (
+/obj/structure/sign/plaques/golden{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"cBX" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"cBY" = (
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/bar)
+"cBZ" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cCa" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCb" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/sign/departments/security{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cCc" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical{
+ name = "Medical Booth"
+ })
+"cCe" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cCf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Central Maintenance - Fore";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/central)
+"cCg" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cCi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Monkey Pen";
+ req_access_txt = "39"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cCl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cCm" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCn" = (
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/port/fore)
+"cCo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cCp" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/port/fore)
+"cCq" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"cCr" = (
+/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/medical/virology)
+"cCs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/office)
+"cCt" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Confessions";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/open/floor/plasteel/dark,
+/area/chapel/main)
+"cCu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/medical/virology)
+"cCv" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cCw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/medical/virology)
+"cCx" = (
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start/virologist,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCy" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/item/caution,
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Isolation Room B";
+ req_access_txt = "39"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cCA" = (
+/obj/machinery/computer/security/wooden_tv,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"cCB" = (
+/obj/machinery/light,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/office)
+"cCC" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/chapel/main)
+"cCD" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cCE" = (
+/obj/machinery/portable_atmospherics/canister/water_vapor,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/flip,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cCF" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "recycler";
+ name = "Recycler Conveyor Control"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cCG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cCH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cCI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cCJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/library)
+"cCK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Library Access"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/library)
+"cCL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cCM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=bridge1";
+ location = "router"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cCN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs/left,
+/area/hallway/primary/central)
+"cCO" = (
+/obj/structure/table,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/item/hand_labeler,
+/obj/item/reagent_containers/glass/bottle/formaldehyde,
+/obj/item/paper/guides/jobs/medical/morgue,
+/obj/item/paper/guides/cogstation/cdn_med{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"cCP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/landmark/start/depsec/engineering,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"cCQ" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cCR" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cCS" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cCT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/stairs/medium,
+/area/hallway/primary/aft)
+"cCU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cCV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"cCW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"cCX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/crew_quarters/heads/hos)
+"cCY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cCZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cDa" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cDb" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/glasses/science,
+/obj/item/pen,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cDc" = (
+/obj/structure/table,
+/obj/machinery/light,
+/obj/structure/bedsheetbin,
+/obj/item/clothing/glasses/hud/health,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cDd" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cDe" = (
+/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/medical/virology)
+"cDf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cDg" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ id = "DeliveryConveyer"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cDh" = (
+/obj/machinery/computer/card/minor/cmo{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -24
+ },
+/obj/item/paper/guides/cogstation/letter_cmo,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"cDi" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/closet/crate/solarpanel_small,
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cDj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"cDk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/port/fore)
+"cDl" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cDm" = (
+/obj/structure/plasticflaps,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "DeliveryConveyer"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cDn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cDo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/router/air)
+"cDp" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"cDq" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"cDr" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/security/courtroom)
+"cDs" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/sign/warning/securearea{
+ pixel_x = -32
+ },
+/obj/item/kirbyplants{
+ icon_state = "applebush"
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/bridge)
+"cDt" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters";
+ req_access_txt = "20"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/captain)
+"cDu" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads/captain)
+"cDv" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"cDw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/heads/captain)
+"cDx" = (
+/obj/machinery/light_switch{
+ pixel_x = -4;
+ pixel_y = 24
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 6;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet/blue,
+/area/crew_quarters/heads/captain)
+"cDy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
+"cDz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"cDA" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 30
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cDB" = (
+/obj/item/storage/secure/safe{
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/dresser,
+/obj/item/storage/lockbox/medal,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"cDC" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/captain,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/captain)
+"cDD" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/checkpoint/supply";
+ dir = 4;
+ name = "Cargo Security Checkpoint APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cDE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/cmo)
+"cDF" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/cmo)
+"cDG" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/cmo)
+"cDH" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"cDI" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"cDJ" = (
+/obj/machinery/computer/crew,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"cDK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Gateway Chamber";
+ req_access_txt = "62"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"cDL" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay - Apothecary";
+ dir = 8;
+ network = list("ss13","medbay");
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cDM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/table/glass,
+/obj/item/book/manual/wiki/chemistry,
+/obj/item/book/manual/wiki/chemistry{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"cDN" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/gateway)
+"cDO" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cDP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cDQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cDR" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cDS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"cDT" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red{
+ pixel_x = 3
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"cDU" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"cDV" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/command{
+ name = "Gateway Atrium";
+ req_access_txt = "62"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/gateway)
+"cDW" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"cDX" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cDY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/crew_quarters/heads/hor)
+"cDZ" = (
+/obj/structure/table,
+/obj/machinery/computer/med_data/laptop,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer RC";
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"cEa" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/cmo)
+"cEb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Research Director's Office";
+ req_access_txt = "30"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/hor)
+"cEc" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 1;
+ freq = 1400;
+ location = "Bridge"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEd" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEj" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEk" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Research Sector";
+ req_one_access_txt = "29;47"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEl" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEm" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEn" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Research Sector";
+ req_one_access_txt = "29;47"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEo" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEq" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEr" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEt" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Research Sector";
+ req_one_access_txt = "29;47"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"cEx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEy" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"cEz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEA" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1;
+ sortType = 24
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"cEC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/science/lab)
+"cED" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/scientist,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/lab)
+"cEE" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/aft";
+ dir = 8;
+ name = "Aft Maintenance APC";
+ pixel_x = -26
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cEF" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEG" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cEJ" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"cEL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/lab)
+"cEM" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cEO" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab";
+ req_access_txt = "29"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"cEP" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/science/robotics/lab)
+"cEQ" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cER" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Locker Room";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cES" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cET" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cEU" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Locker Room";
+ req_access_txt = "5"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cEV" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cEW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/landmark/start/paramedic,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cEX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cEY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cEZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFe" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFf" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFg" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cFh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFi" = (
+/obj/effect/landmark/start/paramedic,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFj" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFk" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFl" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFm" = (
+/obj/structure/closet/crate/freezer/blood,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFn" = (
+/obj/structure/closet/l3closet,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFo" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFp" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFq" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFr" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFs" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/item/storage/backpack/duffelbag/med/surgery,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFt" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay - Port";
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/medical/medbay/central";
+ dir = 8;
+ name = "Medbay APC";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFv" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFw" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/door/window/westright{
+ name = "Treatment Center";
+ req_access_txt = "5"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFy" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFz" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/suit/apron/surgical,
+/obj/item/clothing/mask/surgical,
+/obj/item/healthanalyzer,
+/obj/item/clothing/neck/stethoscope,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cFA" = (
+/obj/structure/table,
+/obj/item/storage/box/beakers{
+ pixel_x = 5
+ },
+/obj/item/storage/box/syringes{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/dropper,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cFB" = (
+/obj/machinery/vending/snack/teal,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"cFC" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/medical/medbay/central)
+"cFD" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/paramedic,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFF" = (
+/obj/effect/landmark/start/paramedic,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"cFG" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"cFH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Break Room";
+ req_access_txt = "5"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFI" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFK" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet/blue,
+/area/medical/medbay/central)
+"cFL" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"cFM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"cFN" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/medical/medbay/central)
+"cFO" = (
+/obj/structure/closet/crate/medical,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFP" = (
+/obj/structure/table/wood,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/item/reagent_containers/pill/patch/styptic,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/carpet/blue,
+/area/medical/medbay/central)
+"cFQ" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start/medical_doctor,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/carpet/blue,
+/area/medical/medbay/central)
+"cFR" = (
+/obj/structure/closet/crate/medical,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cFT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Virology Exterior Airlock";
+ req_access_txt = "39"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cFU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cFV" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/item/multitool{
+ pixel_x = 3
+ },
+/obj/item/multitool{
+ pixel_x = 3
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cFW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics2";
+ name = "robotics lab shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/robotics/lab)
+"cFX" = (
+/obj/machinery/chem_heater,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/medbay/central)
+"cFY" = (
+/turf/open/floor/plasteel,
+/area/router/air)
+"cFZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/obj/machinery/button/massdriver{
+ id = "airbridge_out";
+ pixel_x = -8;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cGa" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "airbridge_off"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cGb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "MedSci Router";
+ req_access_txt = "5"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cGc" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cGd" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Locker Room";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cGe" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/item/reagent_containers/blood/OMinus{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/drinks/coffee{
+ pixel_x = 6
+ },
+/obj/item/storage/box/masks{
+ pixel_x = -4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cGf" = (
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "airbridge_off"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cGg" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "airbridge_off"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cGh" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "airbridge_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cGi" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGk" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGl" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGm" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGn" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/research/glass{
+ name = "Xenobiology Lab Access";
+ req_access_txt = "55"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGs" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cGt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cGu" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/research{
+ name = "Research Sector"
+ })
+"cGv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "8;55"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Experimentation Lab";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cGy" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cGA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGD" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGE" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cGF" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/engine,
+/area/science/storage)
+"cGG" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/storage";
+ dir = 4;
+ name = "Toxins Storage APC";
+ pixel_x = 24
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/science/storage)
+"cGH" = (
+/obj/machinery/camera{
+ c_tag = "Toxins Lab - Storage";
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/engine,
+/area/science/storage)
+"cGI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"cGJ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"cGK" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine,
+/area/science/storage)
+"cGL" = (
+/obj/structure/table,
+/obj/item/extinguisher,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
+/obj/item/extinguisher{
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"cGM" = (
+/obj/structure/tank_dispenser,
+/turf/open/floor/engine,
+/area/science/storage)
+"cGN" = (
+/obj/structure/closet/l3closet,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cGO" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cGP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/storage)
+"cGQ" = (
+/obj/machinery/door/airlock/research{
+ name = "Plasma Canister Storage";
+ req_access_txt = "7;8"
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"cGR" = (
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cGS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cGT" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (Common)";
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cGU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access_txt = "5;6"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"cGV" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/science/storage)
+"cGW" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"cGX" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cGY" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cGZ" = (
+/turf/open/floor/plating/airless,
+/area/science/storage)
+"cHa" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/structure/sign/warning/fire{
+ pixel_x = -32
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins Lab - Plasma Storage";
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/science/storage)
+"cHb" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cHc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cHd" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cHe" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cHf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stock_parts/cell/high/plus,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/item/stack/cable_coil/red,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cHg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cHh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cHi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"cHj" = (
+/obj/structure/table,
+/obj/item/storage/hypospraykit/toxin{
+ pixel_x = -5
+ },
+/obj/item/storage/hypospraykit/fire{
+ pixel_x = 5
+ },
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/glasses/sunglasses,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"cHk" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"cHl" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"cHm" = (
+/obj/machinery/atmospherics/components/binary/pump,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"cHn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/explab)
+"cHo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHq" = (
+/obj/structure/closet/firecloset,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHt" = (
+/obj/structure/disposalpipe/junction,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHu" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Research - Experimentation Hall";
+ dir = 8;
+ network = list("ss13","medbay")
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/warning/biohazard{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"cHy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"cHz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"cHA" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Experimentation Lab";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/landmark/blobstart,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/science/explab";
+ dir = 4;
+ name = "Experimentation Lab APC";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHD" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/item/beacon,
+/turf/open/floor/engine,
+/area/science/explab)
+"cHE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"cHF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"cHG" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Experimentation Lab";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHI" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/explab)
+"cHJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"cHK" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cHL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cHM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cHN" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cHO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cHP" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/effect/landmark/start/geneticist,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cHQ" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cHR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_one_access_txt = "9;45"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"cHS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Genetics Lab";
+ req_access_txt = "9"
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cHT" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/rust,
+/area/medical/morgue)
+"cHU" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cHV" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cHW" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ name = "Chemistry Desk";
+ req_access_txt = "33"
+ },
+/turf/open/floor/plasteel,
+/area/medical/chemistry)
+"cHX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cHY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/recharge_station,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cHZ" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ name = "Airbridge Router"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cIa" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cIb" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/storage/firstaid/radbgone,
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cIc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cId" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cIe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cIf" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cIg" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cIh" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "workshop_off"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cIi" = (
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "workshop_off"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cIj" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/geneticist,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cIk" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cIl" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cIm" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/landmark/start/geneticist,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cIn" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cIo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Genetics Lab Maintenance";
+ req_access_txt = "9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
+"cIp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cIq" = (
+/obj/structure/window/reinforced/spawner,
+/obj/structure/window/reinforced/spawner/east,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "workshop_off"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cIr" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = -4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cIs" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics";
+ req_access_txt = "24"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cIt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cIu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cIv" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIw" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIx" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Hall";
+ network = list("ss13","rd")
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIz" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIA" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIB" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/kirbyplants/photosynthetic,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIC" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cID" = (
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIE" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIF" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIG" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ light_color = "#cee5d2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIH" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cII" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIJ" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIK" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Engineering Sector"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIQ" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIR" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIU" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=evac";
+ location = "eng1"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cIZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cJa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cJb" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cJc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cJd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cJe" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cJf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"cJg" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"cJh" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin/towel,
+/obj/machinery/camera{
+ c_tag = "Aft Restrooms";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"cJi" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ locked = 0;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cJj" = (
+/obj/machinery/computer/security/mining,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cJk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cJl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Engine Room - Starboard Quarter";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJm" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cJn" = (
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cJo" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/engine/atmos)
+"cJp" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/suit_storage_unit/engine,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJr" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cJs" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cJt" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cJu" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cJv" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Router";
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJx" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{
+ dir = 1
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cJy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/rnd/production/circuit_imprinter,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cJz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "DeliveryConveyor"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/warehouse)
+"cJA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJC" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Gravity Generator";
+ req_access_txt = "11"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cJD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cJE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cJF" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cJG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/table,
+/obj/machinery/light/small,
+/obj/machinery/power/apc/highcap/five_k{
+ areastring = "/area/engine/gravity_generator";
+ dir = 4;
+ name = "Gravity Generator APC";
+ pixel_x = 26
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"cJH" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cJI" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"cJJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cJK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cJN" = (
+/obj/machinery/light/small,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter{
+ name = "Thermo-Electric Generator"
+ })
+"cJP" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/light/small,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJQ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"cJR" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Canister Storage";
+ req_one_access_txt = "10;24"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cJS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cJT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cJU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cJV" = (
+/obj/structure/plasticflaps,
+/obj/machinery/door/poddoor{
+ id = "DeliveryDoor";
+ name = "Delivery Door"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "DeliveryConveyor"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cJW" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cJX" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cJY" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"cJZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cKa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cKb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cKc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Canister Storage";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/storage{
+ name = "Canister Storage"
+ })
+"cKd" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "DeliveryConveyor"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"cKe" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/public/glass{
+ name = "Airbridge Router"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cKf" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cKg" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/vending/engivend,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cKh" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cKi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/door/airlock/medical{
+ name = "Apothecary";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/medbay/central)
+"cKj" = (
+/obj/structure/closet/secure_closet/CMO,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/paper/guides/cogstation/letter_cmo,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"cKk" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/landmark/start/medical_doctor,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cKl" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"cKm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/stairs,
+/area/medical/medbay/central)
+"cKn" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cKo" = (
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ sortType = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cKp" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cKq" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/medical/morgue)
+"cKr" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cKs" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cKt" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cKu" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cKv" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cKw" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"cKx" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
+"cKy" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
+"cKz" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cKA" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cKB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cKC" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/landmark/start/chief_medical_officer,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"cKD" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cKE" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port/fore)
+"cKF" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cKG" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/wardrobe/yellow,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cKH" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cKI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"cKJ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"cKK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"cKL" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"cKM" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"cKN" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/signaler{
+ pixel_x = -4
+ },
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler{
+ pixel_y = 8
+ },
+/obj/item/assembly/signaler{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"cKO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/sign/departments/restroom{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cKP" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/structure/sign/departments/custodian{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cKQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output,
+/turf/open/floor/engine/vacuum,
+/area/engine/atmos)
+"cKR" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input,
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"cKS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output,
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"cKT" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input,
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"cKU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output,
+/turf/open/floor/engine/plasma,
+/area/engine/atmos)
+"cKV" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input,
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"cKW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output,
+/turf/open/floor/engine/co2,
+/area/engine/atmos)
+"cKX" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cKY" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cKZ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cLa" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cLb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"cLc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"cLd" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLe" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/engine/atmos)
+"cLf" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/engine/atmos)
+"cLg" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/violet/visible,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLh" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLi" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLj" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"cLk" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "CO2 Outlet Pump"
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 1
+ },
+/area/engine/atmos)
+"cLl" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLm" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cLn" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/under/misc/overalls,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cLo" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLp" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLq" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cLs" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLt" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{
+ dir = 1
+ },
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"cLu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{
+ dir = 1
+ },
+/turf/open/floor/engine/n2,
+/area/engine/atmos)
+"cLv" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{
+ dir = 1
+ },
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"cLw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{
+ dir = 1
+ },
+/turf/open/floor/engine/o2,
+/area/engine/atmos)
+"cLx" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{
+ dir = 1
+ },
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"cLy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{
+ dir = 1
+ },
+/turf/open/floor/engine/air,
+/area/engine/atmos)
+"cLz" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/under/misc/overalls,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"cLA" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Virology - Starboard";
+ dir = 8;
+ pixel_y = -22
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/medical/virology";
+ dir = 4;
+ name = "Virology Lab APC";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cLB" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/router/air)
+"cLC" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/machinery/camera{
+ c_tag = "Virology - Port";
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cLD" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cLE" = (
+/obj/structure/closet/crate/medical,
+/turf/open/floor/plasteel,
+/area/router/air)
+"cLF" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cLG" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cLH" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cLI" = (
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start/virologist,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cLJ" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/wirecutters,
+/turf/open/floor/plasteel,
+/area/router/air)
+"cLK" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/conveyor{
+ id = "airbridge_off"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cLL" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cLM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cLN" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cLO" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "airbridge_off"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cLP" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/item/storage/box/syringes,
+/obj/item/hand_labeler,
+/obj/item/radio/headset/headset_med,
+/obj/structure/sign/warning/biohazard{
+ pixel_x = 32
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medical)";
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cLQ" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "airbridge_off"
+ },
+/obj/machinery/door/poddoor{
+ name = "Airbridge Router"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cLR" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "workshop_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cLS" = (
+/obj/machinery/light,
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cLT" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"cLU" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "inc_in"
+ },
+/turf/open/floor/plating/airless,
+/area/medical/virology)
+"cLV" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLW" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cLX" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"cLY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{
+ dir = 4
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cLZ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"cMa" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_color = "#ffc1c1"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cMb" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cMc" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMd" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "N2 to Airmix"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMe" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMf" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer)
+"cMg" = (
+/obj/machinery/atmospherics/components/trinary/mixer/airmix{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMh" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMi" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{
+ dir = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cMk" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMl" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMm" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMn" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "N2 to Pure"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMo" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMp" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"cMq" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMr" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMs" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMt" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{
+ dir = 4
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cMu" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
+"cMv" = (
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_x = -40;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMw" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ name = "Waste Release"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMx" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMy" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "Nitrogen Outlet"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMz" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Starboard Aft";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMA" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMB" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "O2 to Airmix"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMC" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "O2 to Pure"
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cMD" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/engine/atmos)
+"cME" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/engine/atmos)
+"cMF" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Air to Pure"
+ },
+/turf/open/floor/plasteel/white/corner,
+/area/engine/atmos)
+"cMG" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"cMH" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cMI" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cMJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cMK" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer)
+"cML" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"cMM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"cMN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"cMO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"cMP" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/atmos)
+"cMQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cMR" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cMS" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cMT" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"cMU" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "workshop_off"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cMV" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "workshop_off"
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cMW" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cMX" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/table,
+/obj/item/storage/box/lights/mixed,
+/obj/item/multitool{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/multitool{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/multitool,
+/obj/item/multitool,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cMY" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/table,
+/obj/machinery/camera{
+ c_tag = "Engineering - Workshop";
+ dir = 1
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/t_scanner,
+/obj/item/t_scanner,
+/obj/item/t_scanner,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cMZ" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNa" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/chair,
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNb" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/chair,
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNc" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical,
+/obj/item/stack/cable_coil/red,
+/obj/item/stack/cable_coil/red,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNd" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/closet/crate/engineering,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNe" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ name = "Station Intercom (Common)";
+ pixel_y = -29
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNf" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNg" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNh" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/public/glass{
+ name = "Airbridge Router"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cNi" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cNj" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cNk" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/router/air)
+"cNl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/router/air)
+"cNm" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "airbridge_off"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cNn" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "airbridge_off"
+ },
+/turf/open/floor/plating,
+/area/router/air)
+"cNo" = (
+/turf/closed/wall/rust,
+/area/engine/workshop)
+"cNp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/southleft{
+ name = "Workshop Desk";
+ req_access_txt = "11"
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNq" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/southright{
+ name = "Workshop Desk";
+ req_access_txt = "11"
+ },
+/obj/item/folder/yellow,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/engine/workshop)
+"cNs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/engine/workshop)
+"cNt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/engine/workshop)
+"cNu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Workshop";
+ req_access_txt = "11"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/workshop)
+"cNv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/engine/workshop)
+"cNw" = (
+/turf/closed/wall/r_wall,
+/area/router/air)
+"cNx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cNy" = (
+/turf/closed/wall/r_wall,
+/area/quartermaster/miningdock/airless)
+"cNz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/miningdock/airless)
+"cNA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cNB" = (
+/turf/open/floor/plating,
+/area/quartermaster/miningdock/airless)
+"cNC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet/restrooms)
+"cND" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningoffice)
+"cNE" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNF" = (
+/obj/item/shovel,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNH" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNI" = (
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cNJ" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay - Starboard";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cNK" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/engine/teg_hot)
+"cNL" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/engine/teg_cold)
+"cNM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/circuitboard/machine,
+/obj/item/circuitboard/machine,
+/obj/item/circuitboard/machine,
+/obj/item/circuitboard/machine,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNN" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNO" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/frame/computer{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/miningdock/airless)
+"cNQ" = (
+/obj/structure/sign/warning{
+ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"
+ },
+/turf/closed/wall/r_wall,
+/area/router/aux)
+"cNR" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNS" = (
+/obj/machinery/power/apc{
+ name = "Mining Dock APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNU" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/sheet/plasteel/fifty,
+/turf/open/floor/plating,
+/area/quartermaster/miningdock/airless)
+"cNV" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cNW" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera{
+ c_tag = "Supply - Mining Exterior";
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/quartermaster/miningdock/airless/no_grav)
+"cNX" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/quartermaster/miningdock/airless/no_grav)
+"cNY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Refinery";
+ req_access_txt = "48"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cNZ" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Refinery";
+ req_access_txt = "48"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock/airless)
+"cOa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cOb" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOc" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera{
+ c_tag = "Supply - Refinery Exterior";
+ pixel_x = 22
+ },
+/turf/open/space/basic,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOd" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/medical/medbay/lobby)
+"cOe" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cOf" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space/basic,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOg" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/space/basic,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOh" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOi" = (
+/obj/machinery/conveyor_switch{
+ id = "MiningConveyer"
+ },
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOj" = (
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOk" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOl" = (
+/turf/closed/wall/r_wall,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOm" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "MiningConveyer"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOn" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOo" = (
+/obj/structure/table,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOq" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cOr" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOs" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/glass/fifty,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOt" = (
+/obj/structure/closet/crate,
+/obj/item/stack/rods/fifty,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOu" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOv" = (
+/obj/item/storage/toolbox/emergency,
+/obj/structure/table,
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningdock/airless/no_grav)
+"cOw" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cOx" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/router/medsci";
+ dir = 1;
+ name = "MedSci Router APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/router/medsci)
+"cOy" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/router/medsci)
+"cOz" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/router/medsci)
+"cOA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/router/medsci)
+"cOB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/router/medsci)
+"cOC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/router/medsci)
+"cOD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cOE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/router/medsci)
+"cOF" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/router/medsci)
+"cOG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/router/medsci)
+"cOH" = (
+/obj/machinery/computer/cargo/request{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/router/medsci)
+"cOI" = (
+/turf/closed/wall/r_wall,
+/area/router/medsci)
+"cOJ" = (
+/obj/machinery/conveyor{
+ id = "medsci_off"
+ },
+/turf/open/floor/plating,
+/area/router/medsci)
+"cOK" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/destTagger,
+/obj/machinery/light,
+/obj/machinery/button/massdriver{
+ id = "medsci_out";
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/machinery/requests_console{
+ department = "MedSci Router";
+ name = "MedSci Router RC";
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/router/medsci)
+"cOL" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "medsci_off"
+ },
+/turf/open/floor/plating,
+/area/router/medsci)
+"cOM" = (
+/turf/closed/wall/r_wall,
+/area/janitor/aux)
+"cON" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Auxiliary Custodial Closet";
+ req_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plating,
+/area/janitor/aux)
+"cOO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/janitor/aux)
+"cOP" = (
+/obj/machinery/mass_driver{
+ id = "medsci_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating,
+/area/router/medsci)
+"cOQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/janitor/aux";
+ dir = 1;
+ name = "Auxiliary Custodial Closet APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cOR" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cOS" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/storage/box/lights/mixed,
+/obj/item/light/tube,
+/obj/item/radio/off,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cOT" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ name = "MedSci Router"
+ },
+/turf/open/floor/plating,
+/area/router/medsci)
+"cOU" = (
+/obj/structure/plasticflaps,
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ name = "MedSci Router"
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "medsci_off"
+ },
+/turf/open/floor/plating,
+/area/router/medsci)
+"cOV" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/item/storage/box/mousetraps,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cOW" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cOX" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cOY" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/janitor/aux)
+"cOZ" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Custodial Closet - Auxiliary";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cPa" = (
+/obj/structure/mopbucket,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cPb" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/janitor/aux)
+"cPc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cPd" = (
+/obj/machinery/conveyor{
+ id = "sq_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPe" = (
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "sq_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPf" = (
+/obj/machinery/conveyor/auto,
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPg" = (
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "medsci_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPh" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "sq_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPi" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "viro_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPj" = (
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "viro_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPk" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "viro_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPl" = (
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "viro_in";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPm" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "sq_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPn" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "sq_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPo" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "viro_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPp" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "viro_out";
+ name = "Router Driver"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPq" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "sq_off"
+ },
+/turf/open/floor/plating/airless,
+/area/router/aux)
+"cPr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hydroponics/lobby)
+"cPs" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/bridge)
+"cPt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/dark,
+/area/security/checkpoint/customs)
+"cPu" = (
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cPv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/circuit,
+/area/science/robotics/mechbay)
+"cPw" = (
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/mechbay)
+"cPx" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cPy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/lusty_xenomorph{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cPz" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube/curved{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cPA" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cPB" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cPC" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cPD" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cPE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cPF" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cPG" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Supply - Warehouse Exterior";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/space/basic,
+/area/space/nearstation)
+"cPH" = (
+/obj/machinery/conveyor_switch{
+ id = "EngiCargoConveyer"
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ areastring = "/area/quartermaster/sorting";
+ dir = 8;
+ name = "Delivery Office APC";
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"cPI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Foyer";
+ req_one_access_txt = "10;24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cPJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Foyer";
+ req_one_access_txt = "10;24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cPK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Access";
+ req_one_access_txt = "10;24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cPL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Access";
+ req_one_access_txt = "10;24"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"cPM" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security RC";
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cPN" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cPO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"cPP" = (
+/obj/effect/landmark/start/paramedic,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"cPQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/medical/genetics";
+ dir = 8;
+ name = "Genetics Lab APC";
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cPR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/cmo)
+"cPS" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "CMO's Office";
+ req_access_txt = "40"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/cmo)
+"cPT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/cmo)
+"cPU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cPV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cPW" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cPX" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cPY" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cPZ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQa" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQb" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQc" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQd" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQe" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "xenobio2";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQg" = (
+/obj/machinery/door/window/westright{
+ name = "Containment Pen";
+ req_one_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cQh" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQi" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQj" = (
+/obj/machinery/door/window/eastleft{
+ name = "Containment Pen";
+ req_one_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cQk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQl" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/north,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "xenobio1";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQm" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQp" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQq" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQr" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/button/door{
+ id = "xenobio4";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQs" = (
+/obj/machinery/door/window/westright{
+ name = "Containment Pen";
+ req_one_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cQt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQu" = (
+/obj/machinery/door/window/eastleft{
+ name = "Containment Pen";
+ req_one_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio4";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cQv" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/button/door{
+ id = "xenobio3";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQw" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQx" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/button/door{
+ id = "xenobio6";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQy" = (
+/obj/machinery/door/window/westright{
+ name = "Containment Pen";
+ req_one_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio5";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cQz" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQB" = (
+/obj/machinery/door/window/eastleft{
+ name = "Containment Pen";
+ req_one_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cQC" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/button/door{
+ id = "xenobio5";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQD" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQE" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQF" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/xenobiology)
+"cQH" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "xenobio7";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQI" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/science,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
+"cQJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQK" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQM" = (
+/obj/machinery/door/window/southright{
+ name = "Secure Xenobiological Containment";
+ req_one_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "containment blast door"
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"cQN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cQQ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"cQR" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"cQS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"cQT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"cQU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"cQV" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-02"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"cQW" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/machinery/camera{
+ c_tag = "Bridge - Port Quarter";
+ dir = 1
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"cQX" = (
+/obj/machinery/photocopier,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"cQY" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"cQZ" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"cRa" = (
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "MiningConveyer"
+ },
+/obj/machinery/door/poddoor{
+ id = "MiningConveyorBlastDoor";
+ name = "Asteroid Mining Load Door"
+ },
+/turf/open/floor/plating/airless,
+/area/quartermaster/miningoffice)
+"cRb" = (
+/obj/machinery/computer/cloning,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment,
+/obj/item/paper/guides/jobs/medical/cloning{
+ pixel_x = -4
+ },
+/obj/item/paper/fluff/cogstation/cloner{
+ pixel_x = 6
+ },
+/turf/open/floor/plasteel,
+/area/medical/medbay/central)
+"cRc" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/door/airlock/research{
+ name = "Aft Observatory";
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cRd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/door/airlock/research{
+ name = "Aft Observatory";
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/misc_lab{
+ name = "Research Observatory"
+ })
+"cRe" = (
+/obj/machinery/computer/upload/ai{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/turret_protected/ai)
+"cRf" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/flasher{
+ id = "ID";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/ai)
+"cRg" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/white/corner,
+/area/engine/atmos)
+"cRh" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/turretid{
+ control_area = "/area/science/server";
+ icon_state = "control_stun";
+ name = "Computer Core turret control";
+ pixel_x = -3;
+ pixel_y = -23;
+ req_access_txt = "65"
+ },
+/turf/open/floor/plasteel,
+/area/science/server{
+ name = "Computer Core"
+ })
+"cRi" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/science/robotics/lab)
+"cRj" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark/side{
+ dir = 6
+ },
+/area/science/robotics/lab)
+"cRk" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_y = 3;
+ pixel_x = 4
+ },
+/obj/item/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/machinery/button/door{
+ id = "robotics3";
+ name = "Shutters Control Button";
+ pixel_x = 24;
+ pixel_y = -24;
+ req_access_txt = "29"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cRl" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"cRm" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/red/full,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = -32
+ },
+/obj/machinery/disposal/bin{
+ name = "Corpse Disposal Unit"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/zone2{
+ name = "Medbay Treatment Center"
+ })
+"cRn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"cRo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"cRp" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/plasteel/dark,
+/area/science/robotics/lab)
+"cRq" = (
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cRr" = (
+/obj/machinery/droneDispenser,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5;
+ layer = 2.03
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/lab)
+"cVq" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"cVO" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dpO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dVR" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dYm" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"eCy" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"eIh" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "N2O Outlet Pump"
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/engine/atmos)
+"eKM" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/pipe/manifold/supplymain/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"eTZ" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"eUF" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"fgS" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Plasma Outlet Pump"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"fkx" = (
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"frb" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"fti" = (
+/obj/machinery/atmospherics/components/binary/pump,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"fui" = (
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space)
+"fuE" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"fuR" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"fIw" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"guK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/space/basic,
+/area/space)
+"gDY" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Fuel Pipe to Incinerator"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"gGG" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"gVV" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine,
+/area/science/storage)
+"hcR" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/bridge)
+"hiV" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"hlo" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"hlV" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"hDz" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"hFa" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"hKC" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"hMZ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Pure to Port"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"hXk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"ifC" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/orange/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"iAW" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"iQY" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 4
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"jiZ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"jml" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ layer = 2.4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"jon" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"jyu" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"jMO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"jXo" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"kxw" = (
+/obj/machinery/atmospherics/pipe/simple/violet/visible,
+/turf/open/space/basic,
+/area/space)
+"kzb" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/bridge)
+"kOG" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix to Engine"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"lcD" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Air to Port"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"lRy" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"mkx" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"mqB" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"mxW" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"mBP" = (
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"mEa" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"mIm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ light_color = "#cee5d2"
+ },
+/turf/open/floor/engine,
+/area/science/storage)
+"mIT" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"mKP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"mNN" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"ntC" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Port to Fuel Pipe"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"nvn" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"nAF" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Mix to Port"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"nBM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"nEX" = (
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"nLV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"ony" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"opd" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"oMB" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"pgu" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"prx" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"qeq" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"qgO" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"qlJ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"qvB" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"qHL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"qWY" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ name = "Waste In"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"rdF" = (
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"rTW" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 6
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"rUl" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"sdp" = (
+/obj/structure/reagent_dispensers/foamtank,
+/turf/open/floor/engine,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"sHB" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"sRD" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"sVC" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"tjb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/engine/engineering{
+ name = "Engine Room"
+ })
+"tpQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"tuF" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"tyI" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"tXV" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ layer = 2.4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"tZj" = (
+/obj/structure/tank_dispenser{
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"tZC" = (
+/obj/machinery/atmospherics/pipe/manifold4w/orange/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"urj" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 8;
+ icon_state = "intact"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"uwK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/secure_construction{
+ name = "Engineering Construction Area"
+ })
+"uAY" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/t_scanner,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"uVD" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"vcb" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"vsO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"vxU" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"wbu" = (
+/obj/machinery/atmospherics/pipe/simple/violet/visible,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
+"wPS" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/violet/visible{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"wWH" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"xcO" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Mix Outlet Pump"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"xjk" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"xkC" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"xoj" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"xxP" = (
+/turf/closed/wall,
+/area/quartermaster/storage)
+"xCy" = (
+/obj/machinery/atmospherics/components/binary/pump,
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"xKr" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
(1,1,1) = {"
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaabpaakaaraaraaraaraaraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaraaraaraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaavaavaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaavaaDaaYabrabDabEaavaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFabJabJabJabJaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabMabMabMabRabMacMaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUahvabMabRabMabVabMabWabMabRabMaRvaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabRabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabRacaaceaceacfaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjacjacjacmacqabracracxacjaczaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacBabRabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabRacGaWjaWjaWjaWjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaUabpaWjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUacJabMacWaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUadcabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaUaakabMacGaWjaaaaaaaaaaaaaaaaddadfadfadfadfadfadhaaaaaUaaaaaUaaaaaaadjadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadkadladwaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadcabRabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaZGaaaaWjaaaaaaaaaaaaaaaadCaadaadaadaadaadadCaaaaaUaaUaaUaaaadjadjadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadGabMadHaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadLabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaadCaadaadaadaadaadadCadjadjadjadjadjadMadPadFadXadXadXadFadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjadjadjadCaadaadaadaadaadadCadYadYadYadYadYadMaepaeqaeuaeyaezaeAadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaUaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjaeCaeRaeSaadaadaadaadaadafbafcaeRafcaeRaeRafeaeRafjafkadMafuaeAadFadjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTaaVabcabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaaaWjaaaaaaadjafvafxadjaadaadaadaadaadadjafyadFafzafBafIafLafIafNafPadYafTaeAadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaadoadoadoadoadoadoaaUaaVaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaUaaUaakaaUaWjaWjaWjaaUadjadFagaadjaadaadaadaadaadadjagbadFagkagpagtadMagFadFagKagKagKadFadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaXaaZabaaaaaaaaaaaaaaaaaaaaaaabaabbabgaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaahaanaasaasaasaasaasaanaayaaaabpaakaTdaWjabpaWjaaUadjagMafIagNaadaadaadaadaadagOadFadFagRagSagVadMadMadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaazaaAaaAaaAaaAaaAaaAaaAaazaaUaaUaakaaUaWjaWjaWjaaUadjadjadjahLaadaadaadaadaadadjahMadFafzagpadFahQadMadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaUaaUaaUaWjaaUaaUaaoaaoaaoaaoaaoaaUaaoaaoaaoaaoaaoaaUaaUaaUaaVaaUaaoaaoaaoaaoaaoaaoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAaaCadBaaHablabkaaAbPoaaaaaUaaaaaUaaaaaUaaaaaUaaUaaaaaaahLaadaadaadaadaadadjahMadFahRagpadFahVadMaaUaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaapvaYpagdaYpaaxabuabKaaxaaaaaaaaaaaaaaaaaaaaaaaxabuabKaaxaYpagdaYpadqaaUaaVaaVaaVabcabjabjabjabjabjadxabjabjabjabjabjadxadxaaTaaVabcabjabjabjabjabjabjaaTaaVabcadxadyaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAabnaaFaicaaFaboaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaUaaUaaaahLaadaadaadaadaadadjaieaigafzagpaihaiIadMaaUaaUaacabvchHabzacbabzaaiaaaaaaaaaapvcdccdccdcapvcqVcqVaaxaaUaaaaaaaaaaaaaaaaaUaaxcqVcqVapvcdccdccdcadqaaUaaVaaUaaUaaUadoadoadoadoadoaaUadoadoadoadoadoaaUaaUaaUaaVaaUadoadoadoadoadoadoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabqaaJaaFaaQabwaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaUahLadMaiMaiMaiMadMadMadMadMaiWaiXadMadMadMactactacEacPacSacXaftacPadeaaaaaaaaacrPcrQcrRcrRcrScsaabNaaxaaxaaaaaaaaaaaaaaaaaxaaxacgcsbcrScrRcrRcrTadqaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabGabmaaFabAabPaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaajafDaajaajaamaapaaqaatbHXaiZajpajradmadtadtabQadvadUaefaenaghagzaefaevaaUaaUajwajwajFajFajFajwacsabLacRaaxaaxadnadqadnaaxaaxadrachadsadSadTadTadTaecaecabeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAackacdacuabAacyaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaaEafQaaIaaIaaIabdaaIabfabYajLajRajWaeHaeOaeOaeXaeOaeOafgafiagBadtacSactaaUajwajwajXakcakfakhajwaduadQabLaeaafOahZaibajhajmaeaachadQajKadSaeoaeEaeFafMaecaePaaVaaUaaUaaUaaUaaUaaUaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaVaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazaaAaaAaclaaAacCaaAaaAaazaaaaaUaaaaTxaaaaaUaaaaaaaaaaajacnageamiacoacwabTacFacFacFacFagjagnacFacFacFabUafWafWagfaggaimabBabCacQacQacQakiakkakmakhakhakxadQadQadQadQalaamPasyamPaoQadQadQadQadQaeWafmafmafpagxbEpagXahPahPaioaioahPahPaaUaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTaaVabcabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOadaadbacDacUacZadbadaaegaaaakEakNakEakPakEaaaaaaaaaaajacnageakXakXakXakXakXacIacVadgagqagwadJaekalealealealealeahjaimafEahYaiyaiDacQalgalialkalialpajwajwajwaQOadQabLaeaaeaaeaachadQacTadSadSadSaiAafmaiVajabEpajSahPaknakZalbalfahPaaUaaaaaaaaaadoadoadoadoadoadoaaUaaUaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUanUanUanUanUanUaaGadKadWanUanUanUanUakEalqakEalsakEaaaaaaaaaaajacnagyakXalAalEalOakXaemadiadiagqajJadiaesalealQalTalValeajfaimafEajgajkajqacQalYamnamHamRamTancanfajwaeiaeraetadQannadQadQadQafRadSaeGapoaptapTanvaoMbEpaHjahPaJRbiOaKeafhahPaaUaaaaaaaaaaaaaaaaaUaaaaaaaaUaaUaTxaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUaaNaebanUaaRaehaeLasVaeQaeQaeVagvansalqanCanWakEbUobUoaajaajacnageakXaoeaoiaokakXaexaeTaeUagqahwafqafraleaolaomaonaleajfaimafEabIaqRarcacQaooaopaozajwajwajwajwajwatZaucaeKaykazGaykaFraFtapvadSadSadSbveadSaecaecbEpbvmbzpbEgbEtbEwbEyahPaaUaaUaaUcjjcjjcjjcjjcjjaaaaoKaoSaoKaoTaoKaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaccaaSapcapQaqaaqfasOaeMaeMaeMaeMaeNapgapnappaprakEaaUaaUaajaauafwageakXapAapDakXakXahtafqaeUacHanQagYahialealeapNapOaleajfaimafEacQatsatJacQajwaqbajwajwawNaxeawNawNaFvapvafUaGZaagaGZaKgapvapvadVafdaxLafSbEuaxSagibEpahPahPahPbEAahPahPahPaaUaaaaaacjjcjkagGamOcjjaaUaoKaqeaoKaqyaoKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUauEauIauKawYauSauTadAaniadDadEabSaqEaqFaqHaqJakEacLacLaajahnacnafCaqVaqXarfarharjaRzaijagragsaUSaijailaruarzarAarCarDaAxaqsaFuaHraLbbmpahDbAtbEIagAbGcbGcbGcbGcbGcbGdagJaheaKnaelaKnahOaiFajbajdajIagZahKahNahNahNahNahNahNaifaikbEBaizaaUaaUaaaaaacjjanbaiuafocjpaoKaoKaqearKarLaoKaoKaoKaoKarMarMarMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUahgahgahgahgahyahyahgadOaguahEaedaewaewaewaewaewaewaewarRakEafsafFaajajHajNakKarSarUarZasbasebrBcdIalDalKckGbrBckHasfashasnasoasqalNaquaeOaeOaeBbGiasraeObGjalPaeOahIaeOaeObGlbGmampaiJbEGagQalRamlamramtajjafKaeZaixafaafKafKafKafKaiBassajlbGoaizaaUaaUaaUaaUcjjajoajvcjlcjpasAasEasQasZasZatdateatgathatiatlatnaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahgakpaksaktakuakyakAacNajxakQaflaeJafnafGafJafYagDaewajCahmaiTaipaajajYamSakGakXapAatpakXakXankadianjagqcwkadialralealeatrapOaleanoaimaeYaeYaeYaeYaeYaeYaffanAaffaffahzahzahAaffaffahzbEXajebqQabXaqLanHaqLaqLagmajMahaahbahcahdafKafKafKajPafAaizaizaizaizasdcjjajVakbcjjcjpatuatwatxatyatDatEatGatGatGarMarMarMaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUahgalwakYatIalyamIamQamZanaahEaflaeJagIagPagPagPahraewagHakoacobeVaajalBamSalCakXatNatTatYakXarJadiajJanRaBmamfavnaleauaaudaonaleanoaimaeYahBamsahFahGaeYahHaotahSahWaiwaiwaiQaiRaiSahzbEXakMaoxakdaoyaAQazraqLaqWakHahxahxahxahxahTahUafKalhahNahNahNamwamDahNahNanGanZbGqaoKaueatwaufaujaukaumauqaurauuatGarMaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaahgafHalFammaoqaodamaacNaguahEaflaeJaidagPagPagPaiHaewakCalxalGacoaajamjaoXaalakXauvauxauBakXamoanlajJapfaohaocapbaleauFauGauJaleanoawcaeYaiYahCapxapMapZaqGaqKajQajQajQaraardargartarIasganzanDaoAaoDaoGbwlaqLahXakHahxaiaahxahxahxaitafKaqNaiCaiCaiCaiCaiCaiCaiCaroarGbEfaoKauOatwauUauXatDavaatGatGatGatGarMaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWagWahgahgahgameaoRamBahgaqYaguahEaiKaewaewaiLajBaiLaewaewambbfacjoamdaajapeamSapeakXakXakXakXakXacFacFauMauQacFasJasJalealealealealeauZaxxaeYaeYakSakUakVaeYakWavoaxOayialLaysalIamuamvahzbEXakMaoxawtaojbvpbEnaqLaiUasPasTatmajsajDahxajEafaatoalzakealcaldafValHaiCavbavfavmaoKarMarMavpavqavsavsavxavzavBavDavsaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaahfahkahlahoahpahqapsakLaoVajyabSajzaguahEajAaeJajGajTakvakvakwaewamkaajaajaajaajaalamSaalavNavOavRavSavXavNaVDayDazzarlasJatBazLaALaAOaBzaBHaBLayNaBNaCkaCoaCpaqvaeYanyaCsanXanXanXanXanXamuakRahzbEXakMaoxaDbaDmaDFanJaqLafZakHahxalXatOatCahxamCafaautavtavtavuavZamKamKamLawbawfawbawbawbawgawiawjawlawpawpawxawxawxawpawpaaUaaUaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaainainainaisaiEaiGagWakDaoYakFabSalMaguahEajAaeJalUanuanwanwaoBaewauHbNMaGccitaviciuaDEaDUawyawzawCawCawFavNaxPayDazzayXasJaBUaCjaCwasJaEUbGzbnHaAAawNaeYaoraoraoraeYaosaFoaoCaoCaoCaoCaoCapiapjaffaXvapqaFpaqLaqLaFkaqLaqLaglakHahsahxaylahxahxahxanFaywazxaDDaDDaGYaHcaDDaQZawIawUawIawIaxaaxbaxdaxnaxqaxDaxEaxUaxUaxYaygawpaaUaaUaaUahuahuahuallalmalnalnalmalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUainaklakqakragWamhapuawGawZaxKaqfaqzaewaeJaewaskaymakvakwaewapecivbNTciwaalaalamSaalavNaypayqayraytavNaCAayDazzaDjasJaDkaDlaPiasJaGDayuaxhaBMawNaeYaeYaeYaeYaeYapkaotaplaqhaqiarmaqhahJatAaffbEMaqZaHhanBajiaHhawhafKapWbhjafKarxbmlbmrbvobvobvqbDBbEvaqpaqxaqQbEHaqpaqxamcamcamNamNamcamcayvayxayBayEayHayLayPayZazaawpaaaaaaaaUahuamUamVamVamVamVamVamVamVamVamWahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaaaaaaaaaaaaaaaaaaaaainainainakOakTaljagWaBAaeDaxWaEyaxXasVatVavgavFawHayFazNakvaqDaewcivcixciycizaalapeamSbGHavNazbazpazAazCavNbGMaIeazzbGNasJbGOaIhaPiasJaJFaimanqaCqanqanqanIanLanPanqatQaotahJahJahJahJahJahJatKaffbEOavTaJSalSaKsaKBamxamyamzbEJaGRamFarybPuamMaImafKbSubZMauiawvaycazVaAgbvwagUawVanMaiianOamcazDazHavbawpazMazOazUazWazYawpaaaaaaaaUahuaovamVamVamVamVamVamVaowamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaaaaaaaabfqaltahkalvahoaAdariasFarqarTasjaySazkaCtaCWaewaeJaewaCXaDeakvaewaewavGavGcnFciBaalamjaKRaalavNavNavNaAfavNavNavNaLgazzbGRasJbGSaLBbGTasJaJFaimanqaDxanTaofaoLaoUaqPanqatLaotcpdahJahJatMapPahJaqgaffbEPavTaMyaMCaNlaNuaNUaODamzcfSaAaafKafKciNapWapWaAacjmavtaAmbvrbvAbvCbCJbvwairaoOaoOaoOarnamcayvaAraAsawpaAtaAuaAEaATaBcawpaaUaaUaaUapCapEapFapIapIapJapKamVamVamVamVapXahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWalWatqamgainawJaaSawRabSacNagEaECaxiaeJaxjaEEaDeakvayhaxkaxlaxmbGUbGVbGWaCMapYaOHaBkaBlaBoaBraBtaBwavNaEoaUAbHbasJasJaVEasJasJaJFaimanqapyanTcpqanTanTapzanqatkaotahJahJazKaAlaAlaAlaCOaffamEaCNaxGapRapUaouaqjaqlaqmbEJareakaatRclyarsarvakaasmavdbvwbDnbZNcbQcjnbvwaZKaqqaoOaqraqtamcaBDaAraBJawpawpawpawpaBOawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUagWamXatHamXainawJaNMaxoabSacNatUaELatWaeJayQaEEaDeaAhaewaszaCuaCCbHlbHmacobHdbRaaalavNaBPaBQaBRaBZaBZaChbnJboHbvdbvtaDzbyRbHjbHkaJFaimanqarVanTasaasaanTasKanqbBdbCOaqGaqGbDobDObFLbFLbFMahzaspavTaJSatPatPaouajiawBamzcmlcmocmAcmCaCvcwNaubatSaqobDpbDqbDrbDsbDsbDtantanNaqqaoOaSRatXamcaCxaCIawpawpaFlaCPaCRaCSaCTaCYaqCaugaunauoaupadIauwauyauzaqBaqBauAaveaveavkapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUabhaaUaaUaaUaaUaaUaaUaaUaaUaqwabxagWagWanUanUanUanUanUanUanUazlaAVaBaaCEaewaewaESaETaewaewaewaewaCKaoFaLuapHafXcjOarbaDaaDcaDdaDfaDdaDoaDpbHobDZbHqaDvarkbHrbHsbHkbEraimanqapyanTaoLbEzanTapzanqbFNahJbEDbEEbFKbFLcqibFLbFPahzauhavTaHhajiajiajiajiboOamzamAavPakaaSUcwZazRazSakaaAobDvaulbDxaaBbDzbDAaoNawDavhaoOawEayVazFaDwaDyawxaDAaDCaDGaDHaDJaDKaDQaxraxsaxsaxyaxsaxHaxJazsazsazIaGOauyauyaIRaJqahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUagLaeeabhaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaUabxabxaiNaiNaiNaiNabxaiOaiPaiOanUaCraEwaHbaHNaIlaIVaJwauVaGGaCHaDWaDYaGTaHgaEWaUyaGVaFGaFZasWataaoFatcatcatcaDSaBQaBQaDZaEdaDoaDpbHqbEFbHfbHubHvbHvbHwbHkbEKaimanqaxganTanTbESanTbtkanqatMahJbETbFQbFKbFLbEUbFObFMahzayGaAbaHhazmaBTaBWaFVaApaAqamAaAWakaakaakaaBGaBGaqlbDiaiCbDAbDCaEgaNebDAaJHaoOazXaoOaoOaJJaJYaElaEnaEraEtaxUcPraEzaEBaEGaEHaAMaANaANaBdaBnaBBaBEaBEaBEbrnauyauybXHauybrpahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUabiabiabiabiabiabiabiabiabiabiaaUaiqabxajuaqwakgakjakzakBaluaCdamqanVaobasLaKdasXasYatjanUanUanUaGPaHHanUaewaewaHTaHSalUalUakvaIzaewatzataauPauWaVratcaDSaEJaEKaENaEOaEPavNbHfbHxbHfbHyaPFaPFaPFaPFbEKaimanqceuanTanTbESanTcevanqbFRahJbETbFSbFTbFUbFVbFUbFWaffaNXavTaHhazmbuPaBXaivaCnbGaamAaDqakaaERaEXaEYaEZaFaaFbaFdbDAbDFbDGbDHbDAanSazTaCVaFIbrxbrCbrDaFgaFsaFxaFAaFBaFDaFHaFJaFKaFLaqCbscbsdaJIbbRbsgauyauybsjaqBaqBbskbsmbsmbsnapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaLaoHaoPaoWapSanVaDOaDTaDTaDVavWauLbUAasLaLJaNjaNGayfanUayjanUblsaIsanUaInaewaJtaLfakvakvaLvaewaewavJatabGfavLavMatcaDSaFMaFMaFMaFMaFMaDSarwbHkarwbHBaPFbGpbGsaHtbGuaEhanqanqcexceybGvcexanqanqaffahzbGwahzaffahzbGxahzaffaffaEAaCNaCzaCBaCDaCFaMjamAbGGaMlaNnakaaFOaFQaFRaFSaFWaGfaGjbDAbDEbDIbDAbDAamcbsocraamcamcbsqbsraGkaAraGlaGmawxawpaGwawpawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUajcabxaqMaqwarraslasHatvaGyaEpawdawrawkaziazjaNJaNVaznanUanUanUaKOaJyanUaewaewaJNaJOaKaaymalUaPZawQawSawTbHhaxwavLatcaByazPazQaAeaAjaAjaAUaBgaBhaBiaAjaJAaAjaAjaKcbHiaEqbIDbIDbNpbRFccgbRFccqcczcfebRFchQaAjaAjaAjchWaCmazPakabviavTaHhazmbvlbuXamAbvDbGGbcWbvhakaaGFaGIaGUaHdaHmaHwaHBbDAbDKbDKbDAaHCaHXaIbaIpaItaIwaIyaIBaIWaIYaIZaIZaIZaJaaJbaJsaJPaKbaaUaaUaaUapCapEbsBbsmbsmbsCbsEamVamVamVamVbsFahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUabhaaUaaUaqwabxabxawmawoawuaEsawKawMajUasLaphaphaBbaBeaBfaBjaLwaLxaKtaPXaFGaQfaQgaQiaKwaQgaQAaQYayOazBaAkcqdcqHcswcsAcwfaFfaFiaFCaIkaFCaFCaGgaGxaGxaGxaGxaGSaGxaGxaHaaHpaHuaHuaFCaFCaFCaFCaFCaHvaIkaEucAVcAWcAWcAWcAXaExazPakabvFavTaHhaRMbvZbAhbDuamycAYbvHaqlakaaKfaKfaKmaKraKfaKuaKzavmavmavmavmaKWaLdaLeaLhaLjaLjaLoaLjaLqaLraLraLraLraLraLtaLzaLCaKbaaaaaaaaUahuaovamVamVamVamVamVamVamVamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaEfaaUaaaaaaaaaaaUcepaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaUaaUaaUaaUaxcatvauLaIoaxfasLasLanUasLasLanUbzxanUanUabSayRaKCabSaewaSXakvalUalUakvaSZaTaaBxaBCcjNcBbbhNaBKaCacBcaIucBecAWcBfcBgcBhcBhcBhcBhcBhcBhcBhcBhcBicBjaIJaGraGraFFaFFagoaFFaFFaFFaIUaJcaJcaJCaJQaKDcBoaGJaGQaCebvLaHlcBqbarbasbatbatbascBqbvLaCeaLUaMbaMbaMcaMfaMraMEaMMaMOaMTaMWaNsaNtaNEaNPaOfaOgaOjaOmaOyaOGamGamGamGamGamGamYamYamYamYaaaaaaaaUahuamUamVamVamVamVamVamVamVamVbsHahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIakIakIakIakIakIaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaUawmaxpawuaEsawKaxuaxvaxzaxAaxBabSaxCaTpaxNaxTayCaLnayIaewaewaewaewaewaewaewaewaoFatcatcaFPaICaIDaCacBuaKJaEvaHkcBvaIjaHsaHsaHsaHsaHsaHsaHsaHsaHtcBwaLcaOJaOTaOUaOUaOTaOUaOUaOTaOXaPaaOTaOTaHOaLTaMwaNmaNvaNBaXnaNYaRTaSDaSDaSDaSDaSDaRTaXnaYKaNEaPlaPxaPxaPyaPAaPCaPGaLraLraLraLraLraPJaPLaPQandamYamYamYamYamGaneanpaneanpanYanpaoaamYaaUaaUaaUahuahuahubsJbsKalnalnbsKalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIadpadZajZahhajnakIaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUayJatvauLaNZaOKaOLaOWaPjaPkaPnaPvaPYaQbaQbaQbaQEaQHaQMayTayUayUayWazcazfaAPaDiaHRaIFaIGaKiaDPaLXaIdcBEaKJaEvaIiaIjaHsaHsaaUaaUaaUaaUaaUaaUaaUaDMcBFaQSaOTaPSaQtaQuaQzaQBaQIaQPaQQaQRaQXaRcaRBaSoaSpcBKcBLaDhcBMcBNcBOcBPcBQcBPcBRcBNcBScBMaDraRdaRfaLjaRgaRiaLjaRkaRnaRsaRtaRKaRNaRNaRNaRPaRSaoEaoZaqdapwapaapLanpaBSaztaBSaztaBSayAamYamYamYaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIajtchhanxaCfaLHakIaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUaqwazyaAcatvaAiasLaAnayMaMpaAvabSaAzaaSaaSaaSaMZaMqaSxaROaSQaSQaSQaSQaCbaEcbGYccMaJvaRUaMNaPsaSJaIxcKDcKEaEvaHQaHsaHsaaUaaUaaaaaaaaaaaaaaaaaaaDMcBFaQSaOTaSbaSfaSfaSfaSfaSfaSfaSfaSzaSEaOTaIOaSPaTAaJrbhRakabDScbZccabDVccbbDXcbZccacBUbDYaciacKadRanhaGHaqcaPxaSIaSOaSSaTeamYaSeamGamGaKqamYamYanpaneanpaneanpaneaBSazuayyazuaBSazvazwazZaAwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIchicMfakJakIakIakIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabhaaUaGqaGqaGqaGqaGqaGqaGqaGqceCasLaAScCPaOnaOOaPDaOhaQlbpoaAYaAZaQmaTFaBIaABaTgaABaABaFTbjBaDXaDXaJZaDXaQwaGhaHZaJxcBoaKJaEvaHQaHsaaUaaUaaaaaaaaaaaaaaaaaaaaaaDMcBFaQSaOTaTiaTjaTvaTwaTvaTvaTvaTvaTzaTCaOTaTGaTIaTKaTGaTMaqlbERbEabEabEbcBVcBWcBXcBXcBYbEdaqnaHLarXazoaIfaqnaTNaSIaUaandamYamYaACaADaneaLMaAFaAGaneaBSaBSaBSaBSaztaBSaAHayyazuaBSaBpamYamYamYaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIarWaxFaAIaAJaAKaGaaEaaEaaEaaEbaEaaEaaEaaEaaEaaEaaEaaEbaEaaEaaEaaEaaEaaEaaEaaEbaEaaDnaEeaXjaFEaJLaJMaJXaGqaARasLaCcaCgaCiaClabSaCGaguaAXavjaCLaShaUvaDsaDtaDuaDBaDLbjVasLaIqaJUaLYaYIcoUcsnatcaVccBZaKJaEvaHQaHsaaUaaaaaaaaaaEQaEQaEVaEVaEQaEQcBFaQSaOUaUdaTvaTvaTvaTvaTvaTvaTvaTzaUeaOTaUjaUlaUmaUnaTMaqlaqlamyamyaUqaUwaUqamyamyaqnaqnaqnaINaKjaKpaLsaciavmaUJaUNamYaBqaBsaADaBsanpaMuaMvaneanpaBVayyayyaBuaBvayyaBvaBSaBvayyaCyaHKaKIaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIaHoaIMaMxcMpaRCcMKcMKcMKaHEaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaLKaUzaZqbdzaURurjbdEbdJaEmaFjaFjaFmaFjaFjaFjbpXaSkaEDaSNabSaTRaVzbfwasLasLasLasLbpWasLatcatcaNAatcatcatcatcaydcCbaKJaEvaJTaHsaaUaaaaaaaaaaEQaFwaFyaFzaHnaDMcBFaQSaOUaTiaTvaTvaTvaUUaTvaTvaUWaVbaVfaOUaViaVnaVoaVpaTGaaaaaaaaaaaUaVsaVxaVsaaUaaaacKcCdaRjaMKaVyaNDaRAaciaVHaVUaWfamYaCQaneanpawPcsyaNyaDIaEiaDIaEkaEjbvEaEjaEjaEjaEkbAZaEkaEIaEMaMRaKMamYaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbuVmKPcnnaYabxnbxobxqbxtbabaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaGqbDPbDQbDRbEccbXcenceoaGzaFjaFXaGKaGbaZTaFjaGoaUgaVwaVIaVOaWSaWeaYoaYraYqaYqaYqaZObfmaYqaYqbkFaVQaVVaVZaydcfRcCeaKJaEvaHQaHsaaUaaaaaaaaaaEQaDRaGdaGeaWtaDMcCfaWuaOTaWsaTvaTvaTvaTvaTvaTvaTvaTzaVfaOUaWDaWLaWNaWTaTGaaaaaaaaaaaUaVsaWUaVsaaUaaaacKaREaNDaOcaRxaNDbkTaciaWXaVUaWYamYaFeanpaneanpaBsaSdaBsaADaBsaBVayyayyaBuaFhayyayzaFnayzayyaFqaMUaBSaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxucrzbxxbxmakIakIbxCakIaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaPUaGqaGqhcRaKFkzbaGqaGqaGqaGsaFjaGtcCWcCXaGvaLaaAzblYaBFaBFaKhbpSaTFaKoasLaXuaXuaXuaXuaXAaXuaXuaXuaWaaSgaXLaydaLlcCeaKJaEvaHQaHsaaUaaaaaaaaaaEQaDMaDMaDMaWzaDMaHGaWAaXPaYbaYiaYjaYMaYjaZaaZcaZcaZgaSEaOTaZhaWLaZkaZlaTGaaaaaaaaaaaUaVsaZmaVsaaUaaaacKaSYaVXaSAaSFaWHaWJaXQaZFaZHaZLamYaCJaCJaCJaCJaCJaTqaADaBsaADaBSaBSaBSaBSaKNaBSazuaFYazuaNaaNbaQVaBSaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIcMfbxDakIbxAakIakIakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaPVaPWaTHaKHaGLaGMaLmaGWaGXcvKaKYaOpbmcbnWbrGbGnbLpcjRcjScjTaKxaKyanUanUaWCanUanUaZUaZVaZWaZXaZYbaabajaXuaWaaXMcqNaydaydcCeaKJaEvaHQaHsaaUaaUaaUaaUaEQaLVaMgaUKaWWaXaaXbaXdaOTbanbaUbanbbibanbbibbHaVfaVfbcdaOTaTGbcebcgaTGaTGaaaaaaaaaaaUaVsaWUaVsaaUaaaaqnacKanKaToaTraHxaHzaHyanKbchbcqamYbFnbFnbGebFnaCJaVYaBsaADaBsaADaBsaADaBsaADaBSazuaFYazuaSCaGAamYaCJaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIbxBbxEbxIaNChiVbbkbxKakIaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbikaHDbRDcQQcQQcQQcQRaHIaHMaHMaHMaOZaHPcjWaGuaHWbEVaFjanUaLkaLLanUanUaLWaXiaaSabSaZVaZVaZVbcrbctbcLbcPbcUcCVaYqaYqchJcDkcDlaXKaMHaHQaHtaHYaHYaHYaHYaHYaDNaIaaGeaIcbdbaVCbreaOTbddbdhbdlaOTbdOaOTbdPbdPbdWbdYbdPaaUaaaaaaaaUaaaaaaaaaaaaaaUaVsaVxaVsaaUaaaaaaaaaanKaTtarHascbtbbDcaHzbeabcqamYbFnbFnbFnbFnamYaJjaGBaMVaHeaHfaHiaHJaGBaGNaLGaKNaFnaKNaSCaBsaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxQbxWbxJbxvcvIbxXbxYakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaPVcQSaIgaHFaHFaHFaHFaMiaILaHMcnpaHMaPuaHPaFjaMhbaKaIraFjaMYaNdaNfaNkabSaaSaXOaMPabSbebbebbebbeObePbeSbfgaXuaYtaYtaYtaOoaydcCnaYwaMSaOzaNpaHYaTLaVgaIvaHYaDNaGEalZalZalZalZalZaOJaOJaOJaOJaOTbfvbfybdPbfFbfJbfMbdPaaUaaaaaaaaUaaaaaaaaaaVsaVsaUqbfOaUqaVsaVsaaaaaaaHAaTJaVaaWnaWnaWwaWxbfSbgbbvuaJdaJdaJdaJdbvuaJdbsSaNqaJdaJdaJkamYaJfaJgaJhaJmaJoaADaTBaADaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxZbyabybbyfbybbygbyhakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaIAaHFaHFaIEaIHaIIaQhaKvaIPaIQaHMaOZaITaFjaFmaFjaFjaFjaNKaNLaNNaNLabSabSaYSabSabSaNOaNSbebbeObePbgmbgyaXuaBYbaBbaHbaMaydcCpaYVaNIaHtaHtaHYaVAaQFaIvaHYaDNaGEalZalZaogaogapBaogaogaogalZaOJbfvbgJbgRbhabhcbhgbhlcuAaaaaaaaaUaaaaaaaVsaVsbhqbhvaVxbhObidaVsaVsaaaaHAbsRaIKbvGbvRaWyaTrbiXaSOaJdaJibfHaJlbDeaJdbtmbvTaOibmIaJdaJdaJdaJdamYaLNamYaLPaMeaUxaMFaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibybbybbybbyjbybbybbybbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaJeaJnaIEaJuaJzabOaQNaGnaJBaJGaHMaOZaJKaGqaOraSsaOsaGnaNLaNLaNLaNLaNLaLZaZMaOvaNLaNLaOwbebbebbjvbjCbjDbjDaOBaOBbcRbcRbGIcCqbaJaOSbGIaPbaHYaWibbaaJWaHYaDNaGEalZaogapBapGaxVaxVayKaogapBaOJbfvbjLbdPbdPbdPbdPbdPcuyaaUaaUaaUaaUaaUaVsbjObjYbkaaWUbkabkvbkwaVsaaUanKbCGaKkaKlbCIaYmboAbkKbkQaKQaKUbdqaKVaKXaKQbdobdpbdpaZibcobdmbdsbdwaOtaOuaQyaMJbdBbdXbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayecrBbyibyibykbybbylbybbymbyibyicrCayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaLEaHFaIEaKAaKEaKGaRaaKKaHMaKLaHMaOZaKPbdQaKSbWeaIPbfAaPoaPqaPqaPqaPzaPBbbpaPHaPqaPqaPqaPMcDpcDqcDraNOaQnaNOaQoaPraPraPwaRbbcfaQDbGIbGIaHYaWobcKaHYaHYaDgaLialZaogaFcaFNaGpbfjbfkaxVaogaOJbkWblDaOJabpabpabpabpbccbrsbrsabpabpabpaUqbmkbkabkabmsbkabkabmtaVsanKanKbCKaTUbCQbDJaYDcAFbmAbmBaJdcCsbetbfzbetbfBbetcAJbfKbfLaJdaLAbfQbfTbfVcCtbgobgpbgrbhVbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibynbynbynbynbynbynbynbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaLyaHFaIEbhBaLIaReaRlaLQaHMbPtaHMaSaaSiaSBaSWcPsaTfaTuaTDaUCaUCaUCaUGaUVbcNbcQbdxbexbcQbcQbeLbhzbhWbcQbcQbcQbixbiCbiCbmCbjUbkebkPbkUblmblnblrbmgaRQaTbaUMaUTaHUaxVbfjaxVaxVaxVaxVaHVaogbmFbmJbmKaPNaPNaPNaPNaPNbcOaPRaQpaQqaQraQrbmObmUbmVbnbbndbnobnwbnBbnBcALcAMcANcAOcAPcAMaYEbCLbnEbnFaKQaLDbmubmxbmXbrtbsecARbsWbtMaJdaJdbugaJdamYbeAamYbuTbuUbuYbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibypbyqbyxbynbyybyzbyAbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaMQaJnaIEaMXaMXaXSaXTaGnaNgaNiaHMaSaaYhaGqcDsbdSaYyaGnaNLaNLaNLaNLaNLaYBaYJaUCaYOaNLaNLaNLaRmccQccRaNLaNLaNLbcSbeJbeJaYPaYQbmqaZJaZJbaqbmyaXqbmDaYeaWvbflbaIaHUaxVaxVaLOcsCaxVaxVaRraogbnTbofboibesbesbesbeybesbescuxcuxbesbesbeDaUqbokbkaboVboXboZbkabmtaVsanKbCMbCNcCAanKbCPaYFboAbchbpcaJdaLRaUsaLpaLSaJdaMdbuZcCBbvfaJdaMkbuLaMkaMsaMtamYcCCbyobMmbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyBbynbynbynbynbynbyCbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaNFaHFcsDaIEaIEbbbbbcbbdaSWaSWaSWbbecsraNRaNRaNRbbfaNRaNKaNLaNLaTOaNLbbgaNLaNLaNLaTOaTYaNLaNLccSaNLaUDaUEaULaQobftbftbftbgcbmLbeJbGIbGIaNTbbjbmRaNTaNTaOaaObalZaogaxVaxVaxVaxVbfjaxVaogaRJaQJaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcuyaVsbprbpsbptbpHbpJbrAbpZaVsaaUanKanKanKanKboAbeQanKaSIbqaaJdaJdbuQaMLaMLbvuaJdaJdaJdaJdbvuaMkbuLaMkaMsaNwamYbuNapVamYaCJaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUbyibyGbyHbynbyIbynbyJbyKbyiaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQTcQUaPpaHFaHFaHFaHFbbDbbGaHMaHMaHMbnGaNRaNRbiqaPtbsfaNRaVjaVjaVlaTPaVubcHaVJaVJaVLbhhaWkaWlaXwaXBaXGaXRaXRaXRaXRbdgbdgbcRbgdbgubeJbGIaPbaNTbdabnKaUOaNTaPIaPKalZaogapBaRLaxVaxVaxVaogapBaRJaQJaaUayeayeayeayebQeaaaaaaaaaaaaaaacuyaVsaVsangaRFangapdangaVsaVsaaaaaaaaaaaUarEaYCbjwbqbbqkbnFbqlaZDbvkaZebaYbAObdAbhebhibhwbdAbdAbhCbdAbhDbhEbfXbDjbgjaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyLclDbynclEbynclFclGbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbikcQVcQWcQXcQYcQQcQZbitbiFbjubjJbkAblfblyblAaYRbnIaNRaNRaNRaYTaYTaYTbnZaYWaYXaYTaYTaXRaXRaXRaYYaXRaXRaQGaQKaQLaaaaaUbdgbgdbeJbeJbGIbGIaNTbolbnLaQUaNTaPIaPKalZalZaogaogapBaogapBaogalZaRJaQJaaUayeaaUaaUaaUayeaaaaaaaaaaaaaaacuzcuAaVsangcogcohbfIangaVsaaaaaaaaaaaaaaUatfbrfbwuavmbrgbrhbribwEbwFbhFbwObxcbxgbxpbyMbyObxpbxpbySbzQaOAbtgbtrburbuubuIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyBbynbynbynbynbynbyCbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQTcQSaGqaQWaQWaQWcDtcDuaQWaQWaGqaGqaNRbjFbqhcsEaRoaRwbaoaNRbazbaAbaCbqibaFbaDbaGaYTazdaRIaRWaScawOcjyaRWaRWcjqaaaaaUbdgbgGbeJbeJcrrbgLaNTaSlaSmaSnaNTaPIaPKaStbvvalZalZalZaSGaSHaSHaSHchmaQJaaUbQeaaUaWjaaUayeaaUaaaaaaaaaaaaaaacuzcuAangbntcfyclHangaaaaaaaaaaaaaaaaaUaKTattbAdbrjbrybrEbrWbIXbVibXcbEibFdbvsbvxblPbBbbvsbvIaMncclbvNbvObvPbvSbvVaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyiclIclJclKbynclLclMclNbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbkCbmjbaPcDwcDxbuMbuOaaUaaUbuRbydbuGbvJbAnbCebDkbEmbFHbFIcPtbIlbIrbIVbbMbbPaTSaTSaTSaTTaUcaTSbsbbzTaQLaaaaaUbdgbgdbeJbeJbjjbGIaNTaNTaNTaNTaNTaPIaPKaStaUhaUhaUhaStaRhaStbeGaaaaaUaQJaaUayeaaUaWjaaUayeaaaaaaaaaaaaaaaaaaaaacuyangangclOangangaaaaaaaaaaaaaaaaaUarEattaMobsObtqbttbtucsBcvJbhGcwtczNaMAaMAaMAaMAaMAaMBaMDczOaMsbwbbwcbweaMsaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUbyibynbynbynbynbynbynbynbyiaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbBtbCdbEqbFybAXbuOaaaaaabKpaUBbIWaUFbKGaNRaNRaNRaYTaYTbcsbcJbcxbKgbczaYTaRWaRWaRWaUHcjqaQLaUIcnqaQLaaaaaUbdgbgdbeJbtGbjjbdgaaaaaaaaaaaaaStaPIaPKaStcjMaUPaUQaStaRqaStaaUaaaaaUaQJaaUaaUaWjaWjaWjaaUaaUaaUaaUaaUaaUaaUaaUcuzcuBcuCaRuaRXaaUaaaaaaaaaaaaarEarEarEattaMGavmavmbtJbsObwjbwnbhHczQczRczSczTczUbtcaNcaMAbEjczVbmoaMsbmoaMsaMsaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyiclPclQclRcrDclSclTclUbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaQWcDBcjQcpscDCbENaQWaaUaaabKJbKKbKKbKKbLeaNRaaUaaUaaUaYTaYTbOYcvZcwaaYTaYTbcRbcRbcRbcXbcRaUXaUYaVecjqaaaaaUbdgbgdbeJbeJbjjbdgaaaaaaaaaaaaaStaTnaVmbjAaVvbCCaVMchoaRqaTsaaUaaaaaUaRZaSqaSqaSuaSvaWjaWjaTyaWjaWjaTyaWjaWjaWjaWjaWjcuDaSvaSwaaUaaaaaaaaaaaaarEbGJattbtPbVtbVzaMIbmSaMIbmWbmWbhLczXbuhbuWbvaczYczZbvQaMAbvUczVcAacAbbwkbmWaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyibyibyibyibyibyibyibyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbLhbLkbMhbOJbOLbuOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdjbdrbdrbdrbdybdgbdNbcRbdUbelbcRaZEbewaRHaQLaaaaaUbdgbgdbeJbeJbjjbdgaaUaaUaaUaaUaStaPIbtRaVvaVvaZbaVNaStaRqchoaaUaaaaaUaaUaaUaaUaRZaSuaWjbnSbtTbtZbudbtTbnSaaUaaUaaUaaUcuDaSyaSMaaUaaaaaaaaUaaUarEbFecqrbwobwpbVKaMIbwqaMIbEQbwsbiocAdbwvbwxbwycAecAfcAgcAhcAicAjcAkcAlbwHbwIbCUbCVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaacrEaaaaaUaaaaaaaaaaaUaaacrFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQWaQWaVPbRbaVRaQWaQWaaaaaabdgbdgbdgbdgbdgbdgbdgbdgbdgbdgbeFbeJbeJbeJbeMbdgbeJcmdbeJcplbcRaVSaUYaVeaQLaQLaQLbcRboobeJbeJbIPbGIaStaStaStaStaStaPIaPKchobuebuebuebueaRqaStaaUaaaaaaaaaaaabtTbtTbukbtTbuqbtTbusbuEbtTbuqbtTbtTaaaaaacuyaSwaaUaaUaaUaaUaaUaWjarEatfarEarEbvbbGXbwWbwXaMIbxbaNWbiDcAnbxhaMAbxibFzbVHbxraMAaMAbxsbxybhAbxGaMIaMIaMIaVTaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaQWcptbOQbBjaQWaaUaaUaaUbdgbeNbeRbeJbeJbeJbeJbeJbeJbeJbeJbeJbeTbfdbfdbJybfdbfdbfdbfibcRbcRaWbaWcaTSaTSaTSbgNbTwbiSbiWbjebjhbjkbjkbjkbjkbjkbjpbjHaWqbuebvcbvgbuebvzbueaRvaWRbtTbvBbtTbtTbwhbwzbwBbwCbwLbwQbwSbwTbwZbxabtTbtTbtTcuEaTkaTlaTlaTlaTlaTlaTlbxPbxSbytbyubyvcbRbwWbwXbAkaNWbxdcAqcArbyPaMAcCEcAsbwAbyYbzfbzgbzlbzibgPbzmceGceGceHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbORbOSbRcbuOaaaaaaaaabdgbgxbeJbeJbeJbeJbbIbeJbeJbeJbeJbeJbbIbeJbeJcaWbeJbgzbeJbgAbgEbgFaRWaRWaRWaRWaRWbgFbgEbjRbqdbqnbqFbqGbqGbqGbqGbqGbqWbrcbrobxfbysbyEbyFbyZbzDaaUaaabzEbzFbzMbzPbAebAibAmbArbwLbBkbBvbBBbBCbBFbBHbBVbBXcuDaQJaaUaaUaaUaaUaaUaWjarEbzobzoarEceQceSbwWbzLaMIcCFbBKbkEbkLbkNaMAcAwcAxbAjcvPbApaMAbkgcAybzObAxbAKbAKaMIbALaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaTxaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabVNbXIcbibXIcbpaaaaaaaaabdgbdgbdgaXkbdgbdgbdgbdgbdgaXkbdgbdgbdgbdgbdgbdgbdgbgxbiibLHbLJbcRbcRbcRbcRbcRbcRbcRcoOcCGbcfbjjbGIaWBaWBaWBaWBaWBaUhbkVbwabBYbCcbCubCwbCybCEaaUaaabtZbCRbCTbCZbDDbEebEhbExbEYbFabFbbGbbGkbGybtTbtTbtTcuyaQJaaUaaaaaaaaaaaUaMIaMIaMIaMIaMIcgTbmWaMIbwXaMIbmWbASbmWbmWbmNaWEaWFbhUaMBaMBaMBaMBbPqbTUcaDbBhaMIbASaMIaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGKabMbGPaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUbdgbjgbdgaaUaaUaaUbdgbjgbdgaaUaaUaaUaaUaaUbdgbdgcoPbjibLVbLXcpcbcRbjGbjXbkubcRbkxbUwbwUbkxaWBaWBaWGaWIaWIaWBaWBaVvbwYbuebGZbHabuebvzbueaRvaWRbtTbtTbHcbKlbKrbKLbLobMzbMBbMIbMSbMWbNfbNkbNlbNnbtZcuyaQJaaUaaaaaaaaaaaacgdcgXcgYcgZchachcchvchwbBpbznbznbCqbBqbBrbngbznbBDbiNbznbznbznbznbznbznbznbBGaMIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGKabRbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpCcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgaXlbdgaaaaaaaaabdgaXlbdgaaaaaaaaaaaUaaaaaUbdgbdgblibfibLYbjjbcRblkcpnbllbcRblocCGbcfblCbslaWKaWMaWOaWPaWQaWBbkRbwYbuebNNbOBbOCbOVaStaaUaaaaaabtTbQtbQWbRlbREbSzbSDbSFbSIbBvbTFbBvbUcbvBbtTbtTcuEaQJaaUaaaaaaaaaaWRbwWchCbwWcifcigbmYbwWbwWbwWaMDbwWbwWbwWbwWbnMbwWbmSbiYbwWbjzbxGbwWbwWaMDbjzbAKaMIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbUeabMbNoaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacutaaaaaaaaUaWZaWZaWZaWZaWZaWZaWZblEbLYbjjbcRblFblJblKbcRblocCGbcfblOcjJaXoaXrbPzaXyaXzaWBaWBbwYbuebuebuebueaRqaStaaUaaaaaabvBbUgbUpbULbUYbVabVubVAbXpbXMbXMbXMbXMbXMbYfaaacuyaQJaaUaaaaaaaaaaaabeEcikcilcimcckccIcinciqciqciqciqciqciqciqbohciqciMbnecgYcgZbxFbxFbyWbzhciGciOcjcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbScbScbWcccadlccfabMaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaXCaXDaXEaZfaVGaWZbBWaVdbmhbmibmnbmZbmnbnabncbpxbCibnraXHaXIaXJbQfaXNaXUaXVaXWbClaXYaXZaYdchocjDaStaaUaaaaaabtTcchccibtTccjbtTbvBbtTbtTbvBbtTccnccobtTbtTaaUcuyaQJaaUaaaaaaaaaaaUbwWbwWbwWcmDbwWbmYaMDbwWbwWbwWbwWbwWaMDbwWbpIbwWbmScAzbwWbzHbxGaMDbCBbwWbAKbAKaMIaRvaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabMabRccrccsabMaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaYgaYkaYkaYkbnuaWZbgAbLYbnvbnxbnzbnAbnDbnPbnRcCGbcfblOcbAaYnaXraYsaXyaYuaYvaWBbCnbCoaXXaYxaStbnUaStaWjaaUaaUbtTccybtZbtTaSwaaUaaUaaUaaUbWqbtTccAccEbtTaaUaaUcuDaRZaSubghbszbszbszbszbsTbwWciSciVanmarpciVciVciVciVciVciVciVbqgciVciXbqfcilbJSbXsbELbICcihciVciVcntaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccHccJaaDaaYccOccPabMaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaYzaYkaYAaYkbnVboeawwbQgboubpnbpwbpybpCbpFbpGcCHbCpblOcbHcdacjGcjZckgckYaYNaZdaWdaWdaWdaWdckIbtwcpGaSqaSqaSqcjEaSqaSqcjEaaWabyabyabyabHacYbtTccybtZbtTaVtaTlcuGaVKaYUbGQaTlaTlaTlaTlbGQbCjbCjbCjasubCkbwWbwWbwWbwWbwWbwWbwWbqubwWbmYbqHbmWbmWciibAKbVjaMIaMIbASaMIaaUaaUaaUaaUaaUaaUrTWopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdbGhaaUaaUaaUaaUcdbabMcdiaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaZfaYkaYkaYkaYlaWZawLbQwbQxbQxbQxbQIbQxbQYbQxbRfbcfblOckZaZjaXraYsaXyaZnaWBaWBaStchoaZoaZoaStbnsaStaWjaaUaaUaaUaaUbghbszbszbszbszbszbAAadzcjFaTlaTlcjFadNqeqeUFcxacxbbITcxccxccxccxcbHeanranranranraqkaaUaaUaaUaaUaaUaaUaMDbrabrrbrPbrYbCtbmWcjgbjzcipaMIaaaaaaaaaaaaaaaaaaaaaaaaaaatpQaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUbHgaaaaaaaaaaaUbGKabRbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaZraZsbegaYgaZuaWZaGCbLYbqjbqAbllbllbllbqKbqYcCGbcfbafaZvaZwaXraYsaXyaZxaWBaaUaaUaaUaaUaaUbrsayabrsaaUaaaaaaaaaaaabIYaaUaaaaaaaaaaaabMKbszbMXbszbszbMXbszbPhbszbPrbszbPXaaaaaaatFatFbHAbHObHObHObHObRnbsTaaaaaaaaaaaaaaabwWbwWbCrbrXbsiaMIaMIcjiaMIcpEaMIbJjbJvbJvbJvbJvbJvbJvbJvbJvwPSaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxbHgbalaaaaaaaaUcdqabMbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaWZaWZaWZaWZaWZaWZaONbLYbjjaZyaZzaZAaZCaZybrMcCHbCsbRsbRPbRQbRUbSVaXybEsaWBaaabunbupavvavvavvavyavvavvavvbuvbuxaaabIYaaUaaaaaaaaaaaaaZpaaacdtcdGcdUcdtaaaguKaejsVCaejaaUaaaaaaatFausausaOPausausatFqlJbRoaaaaaaaaaaaaaaaaaabwWcwvbshbsvaMIaaUaaaaZGaaabLwbLSbMpbMpbMpbMpbMpbMpbMpbMpbMtaXxbcabRKbcaaXxbSbbSibSbaXxbTHbTIbTHaXxbTKbTLbTKaXxbHgbalaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaabdgbaZbdgaaaaaaaaabdgbaZbdgaaaaaaaaaaaUaaaaaUbdgbdgbeJaGCbLYbjjaZycpmaZIaZNaZybwrcCGbcfbxkaWBaZQaZRaZSaZZbacaWBaaUbxlajOajOajOajOaloajOajOajOajObxlaaUbRocdVaaaaaaaaaaaaceqaaUcdtcercescdtaaUhXkagcaNHagCatFaRDatFatFausbcMbiublXausatFqlJbRpbszbszbszbszbszbsTaaUbAQbsubsyaaaaaUaaaaaaaaabMMkxwcwAcwwcwwcwwcwwcwwcwwcwwpguaXxbcabcabcaaXxbSbbWpbSbaXxbTHbXebTHaXxbTKbXRbTKaXxtpQaaUaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaUaaUaaUbdgbjgbdgaaUaaUaaUbdgbjgbdgaaUaaUaaUaaUaaUbdgbdgbyVbSWbTubTybjjaZybadbaebCSaZybkxbUwbwUbkxaWBaWBaWIaWGbagaWBaWBaaaawqajOaGibCvavYawnaxZazeaGiajOazqaaabIYcdVayeayeayeayecetcdtcdtcewcescdtcdthXkagTbbQaoJatFciTciUcmhauscmicmjcmkausatFbcGanrcJxanranranranrbHebdRbAQbsxbsyaaaaaUaaaaaaaaabMMkxwcwAbMYbMZcpMbNbbjEbkHcwwpguaXxcatbZIcKQaXxcKRbZLcKSaXxcKTbZOcKUaXxcKVbZPcKWaXxbHgbalaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbdgbdgbhSbdgbdgbdgbdgbdgbhSbdgbdgbdgbdgbdgbdgbdgbeJbzBbUybUCaZyaZyaZybahchPbakbakbrIbVJbCDbjjbDNaWBaWBaWBaWBaWBayeaaUawqajOaxIaxIajOaISajOazJaxIajOaCUaaUbRocdVaaUaaUaaUaaUcetceKceLceMceNceOcePcJpcJqcJAcJBcJCcJDcJEcmpauscmqcmrcmsausatFcmtbcIcJFbcIbcIbcIaaUbRocJrcJscJtbsDaaaaaUaaaaaaaaabMMkxwcwAbMYbMZbNabNbbNqblzcwwpguaXxcKXbZRcKYaXxcKXbZRcKYaXxcKXbZRcKYaXxcKXbZRcKYaXxbHgbalaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbECbeJbeJbeJcoQcmdbeJbeJbeJbeJbeJcmdbeJbeJcaWbeJbeJbgAbJGbVQbVUbVVbavbaRbaSbAIbawblocCGbcfbFAcpvbGIaaaaaaaaaaaaaaaaaaawqajOaxIaNhajOaNoajOaNraIXajOaCUaaabIYcdVceRceRceRceRcetceKceTceVceWceXceKhXkapmaqOapmatFcmucJGatFcmwauscmxausausatFauRbgwbRAsdpaXpbcIaaabRpbTJbUVsVCbsIbfWbfWbgibgibgiifCbPAbgMbPBbPCbPJbPLbQKbNdcwwgGGbfWbQNbfWbQObfWbQNbfWbQObfWbQNfuEcLarTWbQSopdbQVopdwPSbalaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbgxbeRbeJbeJbeJbeJbeJbeJbeJbeJceIbeTbfdbfdbJybfdbfdbWfaZyaZyaZybWgbWhbWibWjbWkbWwbWEbWFbcfbjjbDNbGIaaaaaaaaaaaaaaaaaaawqajOaGiaNzaOIaJpaPfbCFaGiajOaCUaaabIYcdVcfacffcfacffcetcdVcdVasUcJvaeIaeIhXkaqSanEaqTatFatFcJIatFatFatFatFatFatFatFaYLbgwcJJbUXbVbcwycwzaaaaaacafcdpbRvbJvopdfuifuifuibJvwPScwAxojuAYbRCcwBqgObNEcwwvsOtuFnLVqHLonycwwcLbcwAcLccwwcLbbWKcLcwbucLbcwAcLccwwaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbdgbdgbdgbdgbdgbdgbdgbdgbGIbGIbGIbGIbdgbdgbdgbGIblcbXmaZybTpbJmaWgcsGaWhbaScdEaZyblocCGbcfbIPbGIbGIaaaaaaaaaaaaaaaaaaawqajOajObDwbDUbDWbEZbDwajOajOaCUaaabIYcdVcfocfocfocfpcfrcftcfuarBmkxaQxarNtjbarPanEarQarOarYcJKasiasvaqUcfvastasIaqUcfwbgwbsXbgwcfxbcIaaacwDaaabamsVCbsDaaaaaUaaaaaaaaaaaUaaacwAcwxcwFcwGcwBchOcwwcwwchSlRycLdeTZxcObUacLecLfeIhbhJcLhcLifgScLgcLjcalcLkcwwaWjaWjaWjaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbXPbXVbXVbXVbXVbXVbXVbYdbYPbZQaZybRebbmbbobQAcmNbbrbbsaZybGrcfzbGtbGAbdgaaUaaaaaaaaaaaaaaaaaaawqajObFfbFvbGgbGBbGDbPKcReajOaCUaaabIYcdVcfpcfAcfBcfCcfEcfFcdVaswcJwasDarFasxcphanEcpiasCawWcJLasiasNasGasIasIasIasMbapbdkcJMuwKbhsjMOjyujyucPzcPAcPBbwwcwIcwJcwKcwIcwKcwJcwIcwLcPCcwMcPDcwBcpNcpOcwwcpQftiftivcbhKCcMrcMocMocarcMocMoxKrcarkOGcMocLlctkcwwcwwcwwaWjaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGIcoSccNaZybawbawbawaZyaZyaZyaZyaZybIZcCGbJBbGEbdgaaUaaaaaaaaaaaaaaaaaaawqajOaPEbHpbIFaHqbJkbKxaZPajObbuaaabIYcdVcfCcfHcfHcfIcfJcfKcdVatbcJNasRasSasSasSaQTasSasSasScJOcJPcJQcJRcJScJTcJUcfLcJWcJXcJYbhmbmmbcIaaaaaaaaabamsVCbsDaaaaaUaaaaaaaaaaaUaaacwwcwwcwwbVEbVXbWGbWGcIscfMcfPcfTuVDcVOsRDhMZiAWtXViAWiAWnvniAWdVRqvBcLsprxcfVcJmcJnaWjaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdgbGIaXcccNbeJbZAaXebZCaXfaXgbJCbKRbZHbVIcCGblBbLgbGIaaUaaaaaaaaaaaaaaaaaaaOeaQabaWbLmbLzbkibLCbmvbmHaQaaQjaaabIYcdVcdVcfWcfWcdVcdVcgbcdVavlasRasRauCauDauNaybaTQauYavcasRasRavAawsclxcJZavwaqUbcIbcIbcIbcIbcIbcIaaaaaaaaabYlbZpcPEcbGcbGcbGcbGcbGcbGcbIcbLcbNcgecbTeKMcRgcJotyIcbUmEacggmqBsRDcMonAFfIwtZjcJucJucJujonxCycghcLsvxUcwwcwwcwwaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaceDbuBbjgbzbaXcceibfdcfQchUcjvbZJbZKbZFbRZbZHblocCHcCIbMGbGIbGIbGIaaaaaaaaaaaaaaaaQvajOaYZajObNebPpcRfajOaYZajOajOcjHbRpcgicglcgocgocgpcgucgwcdVaMaaweavEavHawXavKaxtavUazEawaaOQaweazhaqUawAcKabRdaqUbbFbbJbbJbbLaaUaaUaaUaaUaaUbamsVCcPFaaUaaUaaaaaaaaaaaUmITcwwcwwcwwcwwcwwjiZcMHcMJjXocLVcgxdpOcMecgzlcDwWHjmliAWhloiAWxjksHBcgAcLscLWcwwaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdgbGIaXcccNbjgbZAcjwaYcbZFbZFbZFbZFbZAaYHcCGblBbPRbGIaSVbGIaaUaaUaaUaaUaaUaaUajObeuajOajObPUbPVajObhtbmMajOaaaaaacgDcgRcgScgUchbchgchjchkcrvasSavQaxMaxQaxRaCZaynayoclAbevclBaOdaqUchlcKbazgaqUbbNbbFbbLbbNaaaaaaaaaaaaaaabamsVCcPFaaaaaUaaaaaaaaaaaUcJrbdRaaUaaUbhIbhIbhIbhIcLXcLmchnchptZCcaicaicaintCcVqcJHcJHcJHcaixkCchqcLsccGcwwaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbdgaXcccNbUtbZAcjwbZFcpucsHcjxcCJcCKcCLcCMblBbGEbGIbGIaRybqXbqXbqXbqXbqXbqXaRybeKaRybQbbQibQTaRybcYbcZbdiaaUaaUcdVchrchrchschtchsaXFchuaOEasSavQaxMbeHaAyaRGaFUbCbaLFcbJasSaOMaMzaNxcKcaNQaqUbbNbbNbbNbbNaaaaaaaaaaaaaaabamsVCcPFaaaaaUaaaaTxaaaaaUaaamITaaacakbhIbhIcLYcLZcMacMbeCychxqWYrdFfkxfkxnEXcMccMdcMecMecMgcMecMhcLscMicwwaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaabdgceEbdgaaaaaaaaaaaaaaUbdgaXcccNbaibqBckebaybaxbaybaybaEbZHaYHcCGbRgbRybRBbRWbSkbSrbSsbSsbSsbSsbStbSObTXbUibUjbUUbVqbVCbVDbVFbWmbWvbWvchychzchAchschtchBchDcdVaQcasSavQaxMaxQaOkaOlaOqayoaxMaOxasSaOCchEchFchGchIchKbbObbNbbNbbNaaaaaaaaaaaaaaabamfrbcPGaaabbTcmHbbTcppbbTaaUmITaaacamcancaocapcaqcMjcaschLchMrUlcMkcMlmNNhDzcMmcMncMocMocMqcMrcMqcMsiQYcwwaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbjgbdgaaUaaUaaUaaUaaUbdgaXcccNbaVbZSclubZUbZVbKwbaXbZSbZSbGIcCNbWHbSAbGIbgYaRybqXbqXbqXbqXbqXbqXaRybWIaRyaThbWJcRhaRybeCbTScjIaaUaaUchNchXchYchZciacibcidcdVclzasSavQaxMaZtaORaOVaOYbeiaxMaPcaPdaPeciecirciDciHchKbbLbbNbbNbbNbbVbbVbbVciIbbVbbXbvMbBLaaabbTcrhbbTcgjbbTaaUmITaaacakbhIbhIcMtcLZcMucMbcMvgDYcMwceUcMxcLocLpcMycMzcLqcMAcMBcMCcMDcMEcMFcwwaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbGIceFbGIbGIbGIbdgbdgbdgbGIaXcccNcKFbZScmPcnWbZXbZHbZHbZSbSBbTtcoMbWMbTwbTtcgCbGIaaUaaUaaUaaUaaUaaUbfhbWNbfhbfhbWPbfhbfhcgFcgGcgHaaaaaabWQcdVciYciZcjhcjscjucdVaMaavCbemaPhavIaPmavQaPOavVaPPbeqavCclCcjKcjLcjUcjXckmbcbbbObcbbbObbVbfNbggbgvbbVbbXbvWbBLbbVbbTbVxbbTcgkbbTaaUmITaaaaaaaaabhIcaubhIcMGcMHcMIjiZcfscMJcMJnBMoMBcMLcMJnBMcMNcMLcMLcMMcMNcMOcwwaaUaaUaaUbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbeJbeJbeJbeJbeJbeJbeJbeJaXccoZbbnbZSclwbbqccYbZHaaUbGIbTTbGIcprbZrcwWbGIbTTbGIaaaaaaaaaaaaaaacgIcgJcbjbfhbrbcbVcbYbfhbfhbfhcgNaaUaaUbWQcdVcktckuckwckyckzckAaQdaQeaQeaQkbeIaPmcmXaPOaQscrsaQeaQeaQCckmckBckCckFckmaaUbbVciIbclbbVbhkbgKbhkbbVbcnbvXbCmbhubbTbVwbbUcgjbbTaaUcJranranranranranranranranranrhlVcMPcxccxccfDmxWcLaaaUcKZaaUcMQcMRcMSaaUcMSaaUaaUbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbeJcisbbIbeJcoRbeJbeJbbKaXcblOcKGbZSbZZbcpcabbZHaaaaaabTWbutcpxcdebTYbutbTZaaaaaaaaaaaaaaaaaacgNbyecdfcdhbzNbzRcdnbBRbBSbEocgOaZBaZBcdockJclYcmfcmgcmEcmGcmYcksckxasRasSasSbBoaRpbCWasSasSasRaRRaRVcnhcnocnrcnsckmckmckmbjIbAabhkbhkbhkbhkbhkcnvbwdbwgbhrbbTbVybcVbcjbbTbbTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaXxcKXbZRcKYaXxcKXbZRcKYaXxcMTbZRcMTaXxaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbGIbGIbGIbGIbdgbdgbdgbGIbGIbGIbGIbZSbZHbZHbZHbZHaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaacgNcmIcnybzNbzNcvBcpfcqfcqhcqmcgNaaaaaaaPgcdVcnxcnKcofcokcoTcdVcrvcqPaSKaSKaSLaTmbkJbvYbwJcpjcrwcpjcJlckmcpacpkcpocpAcpFciebkBbkMbwibwtbwGbxebwtbxLbxUbzCbbTbbTbVwcrdcgjbdTbbTaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaXxcLtcaycLuaXxcLvcaFcLwaXxcLxcaJcLyaXxaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcrkbTYbutbTZaaaaaaaaaaaaaaaaaacgNbXabXkbYTbYUbOzbYUbYXbXkbZacgNaaaaaaaPgcdVcpKcnKcofcokcpLcdVcrxcrlaSraTWaTZaUbaUfasBbfnaUraUtaSrckockmcpRcpScpTcpUcpVckmbmPbjablNbjabjabjabBicpWbBTboCbdZbkmcwcbejbenbeXbbTbbTbbTbffbfCbfCbfCbfCbffaaUaaUaaUaaUaaUaXxbkZcaKbkZaXxblLcaLblLaXxcpXbpqblMaXxaaUaaUaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaacgNbfhcgLbYScgMcwdcgMbYScvCbfhcgNaaaaaacetcdVcdVcdVcpYcdVcpZcdVaeIcsQaeIaVBaWVbARaeIbARaXhbmTbpKaeIaeIckmcqacqccqncqocqpcqqbKjbKBbKXbLnbLvbLAbLObLPbLQbLRbrRbrVbuzbejbejbeUbfEbgkbEkbgQbfbbgSbgUbUSbfCaaaaaaaaaaaaaaaaXxbkZcaMbkZaXxblLcaNblLaXxblMcaSblMaXxaaaaaUaaUbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaaaPgbfhcvDcvEbYYbYZbYYcvEcvDbfhaPgaaaaaabpLbpNbBEbBOcwqbBObBObBObBOcqsbxzcqucqvbnfbnpbnqcqwcqxcqybQqbpvckmckmcqAcqCcqDcqEckmbbVbclciIbbVbbVbbVbbVbuHbLTbTxbbTcPHbAubfscqFbeUbihbbTbfDbffcmWbGLcngbAvbffaaUaaUaaUaaUaaUaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaafaawaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcwUbTYbutbTZaaaaaaaaaaaaaaaaaaaPgbfhcvFbYSbZbbZcbRxbYScvFbfhaPgaaaaaabBObCabCabUBcwVbPvcxdbSmbSncqGbwPbwRbwVbwRcmObEWbSxbwPbEWcqIcqJcqKckmcqLcqMcqOcrbcrmbfGbfGbfGbfGbfGbfGbTVbBzbQhbUbbUfbfUbCxbfYbfZbeUbkbbkdbVdbgQbicbipbCHbPWbfCaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaawaafbgDaafaawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcwbcwbcwbcybcybcybcybcyaaUbimaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaUkaUkaUkaUkbmEbUqcrVcATcwXbUqbUrbUqaaaaaaaaaaaaaaacgPcgJcgJcgJcgJcgQcgJcgJcgJcgJcgKaaUaaUbBObSobSpbSqcAUcBdcBdcBkcBlcrtcBncBxcBycBxcfUbQFbQGbQHbQFbQMcdgcrucsqcsscstckmckmckmbgebgebbVbbVbbVciJbgfbPYbLTbUhbbTbFDbPZbejbejbeUbkjbbTbkXbffcbkctzbRucBzbffaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbalbalbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaabnjaawacpacpacpaawbnjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaUZbdebeebdfbdtbecbedbcyaaUaaUaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaUkaTVaUiaUiaUiaTVaTVaTVaTVaUiaTVaTVaUkbnlbwKbwMbUubUvcrYcBAcqYbUvbUzbUqaaUaaUaaUaaUaaUaaUaaUaaUbfhbfhbZebfhbfhaaUaaUaaUaaaaaabBObSvbSwbVfcfhcficfjcfkbSncdmcBHcBIcBJcCRcmmcahcbdcdjcdkcdlcdscszckmckmckmckmbglbgnbgBbgebgHbgIbjfbUkbTkbUdbLTbUmbbTbgObUlblabABbLubkYceabUTbfCbfCbfCbUKbUMbfCbgTbgVbgTbgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaUaaaaaaaaaaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaawaawacpbefbehbFracpaawaawaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbcwbcwbcwmBPctjbekboJbcyaaaaaUaaUaaabgWbgWbgWbgXbgXbgXbgWbgWbgWaUoaUpaUuaUuaVhaTVaVkaVqciCaYfbHHaUkbAzbAFbANaUkbUqcrZcCTbUEbUqbUqbUqaaaaaaaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaaaTxaaaaaabBOcflcflcfmcoscfmcflcflcflctlctEctGcdycdzcricdAcdBcdCbmQcducdvcdwbUNbUObUGbjZbglbhnbhobgebhpbDlbkhbUHbURcdxcdFbUZbbTcqtbVcbVhbVkbVrbVsbVGbXwbYMbYNcbOccuccXbijbhZbhZbilbgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaabalbalbalaaUbalbalbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaafbHZbJMcrGbKHcrHacpcrGcrHaaaaaabbvaaaaaaaaabbvbbvaaaaaaaaabbvaaaaaaaaabbvbbvaaabbvaaaaaabbvaaabbvaaaaaaaaaaaaaaaaaaaaabbvbbvaaaaaabbvbbvaaaaaaaaaaaabYgcrIcrJbUFblHfuRbcyaaaaaaaaUaaUbgWbincfgbAwbiBcsFbiGbiIbgWaVWaWmcnuaWmbiPaTVbfubfxbzzbeoaWpcnmaWraXmaXsaXtbaLcsJcCUbaObaQbbhaaaaaaaaaaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaactGctJctKctGctXcuucuwcuFcuHcuIcuJcuKcuLcuMctGcuNcPIcdHcPJbiLbiQbiRcdNbiQbiQbiVcdRcfnblqbjbcuObjcbgebjdcuPblubVgcfOcgabVlbVmbUPbUQctectfctgcthcticgnchdbjobgTcgEchechfbhKbhKbhKbjqbjrbgTbgTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaawaawacpcrKcrLcrMacpaawaawaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbcybcybcybcyblTbOvbnmbzXbcybcwbcwbcybcwbgWbjsbjtbiAbiAcsNcvecqBcslcDHcDHcDIcDHcDHbAccsucuQcvMcuQczfczzcDNcDNcDNcDKcDOcDPcCYcDRcuRcuRcuRcuRcuRaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaactGcuScuTctGcuUcuVcuVcvacvbcuVcvccuVcvdcvgcvhcvicdJcdKcdLbkDcjYbjyciKbXfbiQcKgciLconbCzbjbbhnbjKbgebZibjMciIbVncjacgqbZdcbMbbTcvjcvkbkccjdcjecjecjeckibkkbgTbklckrckObknbknbkpbkqbkrbksbktaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaabnjaawacpacpacpaawbnjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbdcbfpbfobqJbfobwNbAlbgCbdfbhybiKbiTbgWbgWbepbiAcDSbiAbkyczAcAQbbSbcBcDTbOtbcCbrwcAScpPctscwecoIaUkbmGbmGbmGaXtbblbUIcCUbFccvlcvmcvncvpcuRcuRcuRcuRcuRcuRaRvaaUbfhcjrbfhaaUaWRctGctGcvqcuTcvrcwrcwEcuVcypcvdcyvcyzcyzcApcBacBmcBBcdMcPucmvcopcotcouctdbkGbiQcLncLrcoobCzbkIbhnbkIbgeboGccWccZcfdcjacgqcfXcfYbbTcDgcDmbcVctmcsvctoblbcttctxctActBctCckOcnwbknbhKbldbleblgblhcqXaaaaaaaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaawaafbLBaafaawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbyccwYblGbBNblIbJYboLbdfbdfbdfbdfbdfbnkbgWbVebiAcDUbiAbiAcBtbgWaUkaTVaTVaTVaTVaTVcDVaTVaTVaTVaTVaUkaUkaUkaUkbwmbbAbUIcCUbFccvlcDncDocFYcFZcGacGfcGgcGhcHZaaaaaUbrsbrLbrsaaUaaacIhcIicIqcuTctGcIrcuVcuVcuVcvdcuVcuVcuVcvdcJkcJycvicdJcdrcdLbkDbltcsdcwCcwPbiQcLzcwQcwRcgccicciccsmcwScxecgscgscgsbojbzwciPcJzcJVcKdcvkbcVblQbcVbcVblRblSblVbgVblWbVockObknbknblZbiwxxPbgTbgTaaaaaaaaaaaaaaaaaaaaaabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaafaawaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbdcbODbfobKIbfobLEbAGboRbpMbpRbpRbpRbqIbmbbVpbmdcDWcsLbiAcsxbgWbVLbVMbQZbIgbInbVMcDXbVRbVMbVSbVTbWabWrbWcbWbbWabbWbVBcCZcDacKecKfcLBcLEcLJcuRcLKcLOcLOcLQaaaaaUbrsbrLbrsaaUaaactJcLRcMUcMVctGcMWcMXcMYcMZcNacNbcNccNdcNecNfcNgcuNcdObqwcdQbiLcsebyrbmwctnbiQbmzbPxbPycxicxjcDicxkcxlcxmcxncxocxpcxqcxrcjBcjCbbTbenctpbnhbbwbbybcVbnibnnbnybgVcxscxtcxubhKbhKbhKbldbnCcgmblhaaaaaaaaaaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUbZWbcybcybcybOrbWSbOEcnTbDLbFpbJwbJTbwDbHFbgWcsfcsIcDYcDjcDjcDvcEbcEccEdcEdcEebINcEfcEgcEhcEfcEicEjcEkcElbWocEmcEncEocEpcDQcErcNhcNicNjcNkcNlcNmcNncuRcuRcuRbbhbbhbcTbVWbcTbbhbbhctGctGcvrcNoctGctGctGctGcvrcNpcNqcNrcNscNtcNucNscNvcPKcdScPLboabobbobbobbobbocbiVbodbVYcAAbiVbiVbiVbiVbgfbgfbgfckqcxvcxwcgtbhrbbTborctqbnhbcibckbcmbcAbcAbdKbgTbosbVZchfbovbowboBboBboDboEboFaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaabcwbJYboQboQbvjbLcbLlbLxbDMbgWbgWbgWbgWcDycDybgWbgWbXrbWscsOcEsbIObWxbWxbWybWzcEtbWAbWabWBbWCbWLbWRbblbUIcEqbPQcNwcvlcvlcuRcuRcuRcuRcuRcvLbdCbdDbdFbdDbVWcIvcIwcIxcIycIycIwcIzcIycIAbdGbdHbdGberbeWbyTbeYbeZbSycIBbhTbbYbUsbUDbhTcjzbhYbiabibbzVcdPbeWbWncAIbiebdHcvNbdIcICbBUbgfbgfbgfcxxbclckvbbTbcVbkXbcVbcibdMbdVbdMbdMbmabgVbgVbgVcxybgVbgTbgVbgVbgTbgTbgTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUbcwcKIcKJcKJcKKcKLcKMcKNbOubOvjyubOwbOxbPlbWTbWUbWVbWWbWscEucEvbIQaabbSEbufbSEcEwbSGbSEbSEbSEbSEbSHcoBcqecIDcIEcIFcIFcIFcIFcIGcIHcIFcIFcIIcIJcIKcILcIMcINcIObjmbjmbjmbjmbjmbWObjWcIPcIMcIMcIMcIQcIMcIRcIMcIScITcIMcIMcIMcIUcIVcIWbjmbXWbXXbXXbYmbXXbXXbYOcAZbZlbWObjmcNxbjmbnNbezbeBbrQcxzbfcbdVbrQbfectrbcAbfPbdMbdMbdMbdMbfRboMboNboIcxAboIboPboIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUcNycNzcNzcNzcNzcNyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaaaaaaaUaaabcwcbPbAPbAPbAUbAVbQXbWtbWubWSbXgbcybcybXxbXhbXlbXhbXhbXhbXhcExbIRbXockRbJubSKcEybSLbSMbSNbYVbSPbSGbblcqgbZmcEzccpccpccpccpccwcgvcgBcgBcgBcgBcgBciFciWcjVcgBcgBcgBcgBcmncgBcIXcKOcIYcoacoicgBcgBcgBcojcgBcozcoDbXXbXXbZlcoLcoNcIZcIMcJacIMcIMcJbcIMcIMcJccJdcqQcqRbXXbXXbXXcrccxBcxCcxCcxDbgsbgtbgtbgtbZwbgZcqjbhbcqkcNAbdMbhdboSboTboUcxEboWboYboIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaacNzcNBcNBcNBcNBcNzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbbcybcybcybcybRibRjbvybvybRkbcybXSbRmbcwbXTbYabXybXAbXBbXJbXKcEAbIQbXQbSEbSQbSRcEBbSSbSTbSUcECcEDcijcEFcEGcEHcEIbqobqrcpHcJecsMcoEbqrbqxbqrbqrbqraYGbqCbdubTvbYWbbhbbhbWZbbhbZhbZhcJfcwHbZhcoFbqNbqVbyTbtlbtybubbtybtycwOcykcylcymcymcynbtybtybzVbqEbqDbXbcBpbqDbqEbqDbqDbqDbuwbhfbgqbgqcxFcxGcxCcxHcxIcxJcxKcxLbhMbhPbhbbhPbhQccvbpdctycxMbpfbpkckKboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaacNzcNBcNBcNBcNBcNzaaaaaaaaaaaaaaaaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbcbghFacsRcbncbucbCchRbWlbSlbZfbZgbZjbZBcvHbYbbYjbYsbYubYwbWabXUbXUbXUbWacEJbIQbXZbSGbSYbSLcEKbUJbSZbTacELbTbbSGbuDbdvbdvbXibuFbbhbbhbbhcyobxMbbhbbhbbhbbhbcTbdubdubdubcTbcTbbhbpmbXjcoCbZhbZkcJgcyqbZhbcTbcTbcTbzYbBlbBlbIobBlbzrcyrcysbzIbzUbIpbQRbIpbIpbUnbcTbcTbcTccVcBrcBrcBscBrcBCaRYaRYcjAbhXbhXbifbhXcxNctvbezctwbirbisbivciEbivbplboSbppbpfcxObpubpfckLboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUcNycNycNBcNBcNBcNBcNycNyaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbchTcsRcsRcsRcsRcnOcnVbZWbRibZYcaacaccadbcycaebRqbcwbYAbYLbYcbpzbpzbpzbYccEMbIRbYibTcbTdbTebSSbSSbTfbaubvnbCXbFBbFCbqrbqrbgabpAbpBbqsbrJbBsbDdbDmbPwbPwbPwbPwbiUbXtbXubQEbQEbQEbQEbXvbpObZhbZncNCcywbZhaaUaaUaaUaaUaaUaaUaaUaaUbyTcyxbaNbHnbzVaaUaaUaaUaaUaaUaaUaaUbpPcItaRYaSTaTcbcubcvbcDaRYbiybizbiJcnAbiJcxPbiMbiZbjlbiZbjnciRcmTcDzbjnboIbqybpfcNDbpfbpYckMboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUcNycNEcNFcNGcNGcNGcNHcNyaaUaaUcNIaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbcpDcsRcGJgVVcGFcsRcGGbcybcybcybcybcybcybcybcybcybcybYAbZEbXUaaaaaaaaabXUcEJbIQbYkbSEbTjbTMbTlbSLbTmbTnbSCbSCbSCbqcbqecyycaQbqebqmbXzbtvblUbXtbFEbqzbqzbqzbqzbrFcsibqzbqzbsVbsVbsVbsVbpEbZhbZqbZocJhbZhaaaaaaaaaaaaaaaaaUcNKbImcfccyrbaNbzIcuobIxcNLaaUaaaaaaaaaaaUbpPcIubcEbcFbdLcsSbdLbcFaRYbjNbjPbjQcsgbjQcxQbjSbiZbGCcjtbjnbjTcnBcDAbjnbqZcxRcxSbpfctybrdboIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaacNzcNMcNNcNNcNNcNOcNPcNzaaacNQcNIabMaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaacbbcGHcsRdYmcGKcGLcsRcGMcbbaEFaSjaTEaTXaVFbSJbfrbigbYrbZGbZEbXUaaUaaUaaUbXUcEJbISbWabSEbSEbSEbSEbSCbSCbSCbSCbrkbhxbrmbrqcyAbXCceYbqmbqmbqmbqzbrHbIfbqzbqqbrKbsLbsNbsPbsQbqzbsGbtsbujbulbpEbZhbZhbZsbZhbZhaaaaaaaaaaaaaaaaaUaaUaaUbcTcyrbaNbzIbcTaaUaaUaaUaaaaaaaaaaaUbpPbMqaRYckcbiEbiHbkfbkzaRYbkOcJiccFbtWctucxUbkSbiZbpQbXEbXFbXGcshcDDbjncxTcxVbpYbrSbrSbrTboIaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUaaacNzcNOcNRcNScNTcNOcNUcNzaaUcNIcNIcNIaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcGPcGQcGPcbbbkobkoaTEaVFcGRcGScGTccecgVcmVcsPbWabXUbXUbXUbWacEJbIQbWaaaUaaUaaUbrUbrZbsabRHbRJbspbqvbstbstbstbvKbwfbywbyDbzJbADbAEbItbzAbzGbCfbzGbCgbACbCYbqzbHDbHGbpDbpDbpEbsVcEEbXNbsYbsZaaaaaaaaUblpbmebmebmeblpbmfcyDcoqcorbnOblpbmebmebmeblpaaUaaUbpPbJlaRYbnQbpVbnQbWYbnQaRYbiZbiZbiZbiZbiZcxWcpJbiZbpQbLZbjnclVcHVbnXbjnbMHcxVbtdbteboIboIboIcNWcNXaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcNycNycNYcNycNycNZcNycNyaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcGVcGWcGVcbbbkocsTaTEaVFcGXcGYbJzbJAcGicGjcGkbJFbKsaJVbKsbKtbKubIQbXUaaUaaaaaUbrUbtfbuAbthbthbthbtibstbstcyEbHIbHJbstbHJbstbIibILbJdbRTbFZbTCbFGbHCbHCbHEbJfbHDbQpbXLbsVbpEbzebpDbJpbtxbsZaaaaaaaaUbmebnYbogbombmeboncyJboxboybozbmebpibogbpjbmeaaUaaUbpPbLKbtzbtAbLZbtBbtCbtDbtzbXYbtzbtzbUWbtzcxXbtFbtzcOabLZbjnbjTcPMbjnbjnbtNcxVbtdcdTbtSbtScrecNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcObcNXcNXcNXcOccNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcHamImcGVcbbbkobkoaTEaVFcHbbuCbTobTqcGlcGmcGnbKvbKvbrzbLGbLUbQvbQPbXUaaUaaaaaUbrUbtUbJKcOdbTBbthbtYbstbVPcyKbYKcbrcbrcbscbKbBPcdXbXqciQckpckDclccmBbIMbqzbqzbMjbMjbsVbsVbpEbpDcmLbJpbumbsZaaUaaUaaUbmebpTbpTbpTbmebpUcyJboxboybqpbmebpTbpTbpTbmeaaUaaUbpPbYecOebMQbNtbNVbPmbPmbPnbPmbPmbPmbRrbPmcPNcxYcxYcPObYhbjncjfbjnbjnbRtbuycjbbDyceZccTccUcowcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOgcNXcNXcNXcNXcNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcbbbTrbTsbTGaVFcHccHdcagbigcGobYvcctbYvbYvbYvbYvbRMbRNcfZbXUaaUaaaaaUbrUceccegcegcekcegcodcsjcKhbuJbuKcDEcDFbuSbuSbuSbuScmKcolcomcpIbqzbqzbqzbqzcajcaHcbmcyOcyPcyQcyRcyScyTcyUbxjbxjbxjblpblpbqLbqMbqUbrvbrNcyVcyWcyXcyYcyZczaczbczcblpblpbxwcrobHLbtBbtabtabtabtabxHbtEbxHclWbxHbxHbxHclXbZtbZtcyabYnbjnbtHbtIbjnbxObRwcxVbxRbteboIboIboIcNXcNXcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOicOjcOjcOjcOjcOjcOkcOlaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbxTbJZbxVbKabxTbRhaVFaVFaVFaVFcHecHfcbcbigcGpbYvbYobYpbYqbTgbYvbROcEsbWXbXUaaUaaaaaUcdZbrUbqTbrlcsKbrUcdZbstbtjbstbstcDGcDJcDZbAJcaRbuScwscxhcyucyFbqzcyGcyNbMjcdYchVbyQbyNbyQbyQbyQbyQbPsczdbyUbyUbyUbtKbtLbtLbtLbtLbtLbtLczecpybtObtLbtLbtLbtLczebtLcmybzabzabYtbtBbtabtQbzdbtVbzcbzkbFFbPMbSfbzjbxHbZubZvbZtcyabYnbjnbtXbucbjnbzsbRzcybcxZbzubzubzvcRacOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOncOjcOjcOjcOjcOocOpaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbxTcbycOqcGqcGrbTOcGtcGscGscHgcHhcHicaIbTNcGuciockkbYxcPvbYycwbbRRbRSbWXbXUaaUaaaaaUbrUcedceecefcKkbSXbssbstbtjbstbstcEacKCczgczhczibuSczvczBczFczMbqzczPczWcAccAocDLbHKbzKbzScCOcrqbyQbYCczjczkczkczkczlczmcznczmczoczpczqczrbPDbPEbPFbPGbPHbPIczsbPHcmzbMQbMQbYDbtAbtabxNcehcfGbBgcrpcsUbzdbzdbzWbxHcmMbYnbZxcyabYEbjnckEcmebjnbzZcmJcycboIboIboIboIboIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcOrcOjcOjcOscOtcOucOvcOpaaaaTdaaaabpaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAbbAfbAgbMxcGvbMybxTbVvaVFaVFaVFbTPbTQbuCbTobigcGpcctbYFcPwbYHcrfbYvcytcENckfbWaaaUaaUaaUbrUcejcefcnZcKlcelcemcoVbAobAqbKibuScDhcztczucKjbuScmUcnkcDMcGIbqzbBQcFXcovcdYcoxcGUczwczwczxcspbyQbPNblpblpblpblpblpbzqczybuibPObAWbmebmebAYbmebmebBabBcbUxczybBeblpblpblpblpblpbtabDhbzdbtVcoWbBfbBgbBgbQDbBxbxHbYnbYnbZtcyacnibjnbjnbjnbjnbBybRGcydbBAcJjbBIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOlcOpcOpcOpcOpcOpcOpcOlaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbBJbxTcGwbxTbxTbTRbTRcavcawcawcawcaxcaxcaxcGxcctcctcazbYvbYvbuabDTcEObtnbIkbIkbIkbIkbIkbChcocbRIcKmbChbRIbChcuWcuXbPPbuScPRcPScPTbuSbuScrgbqzcrncHWbqzcKibRIbMjcupcvubyQbDabDbczCbPSbyQbPNblpcoyctHcqTcqUbuibuicOwbPTbBmbBmbBmbBwbBmbBmbBmbBMbUxbuibuicqUcnfctHcrUblpbtabHMbHMbtabxHbDfbDgbDhbxHbxHbxHbZtbZybZtcyecyfcygcyfcyfcyhcyicyjbFgbFhbztbFiboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbFmcnbbFocdDbFqcrNbFsbFtcGybzybFlaaUcavcavcaAcaBcaCbWdcaEcpgcGzbOObFubsUbFxbIebJEbKdbIcbIhbIdbIjcpwbJDbIkbRLbTzbTAcKncEQcERcEScETbFJbQabFXbFJczDczEbFYcnzcvRcKHcxfcxgcNJcNVcyBcyCcyHcyIbHKcoebBuczGbQcbyQbPNbmecddcddcddbBZclZbuibuibQdbuibuibuibCAccxccxccxccxccKbuicmablpcddcddcddblpaaaaaaaaaaaabxHbHMbHMbHMbxHaaUaaUbHNbHNbHNbHNcgybGFbHNbHNboIboIcmbbHRboIboKboKboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbHSbHSbFlbHTbHUbHVbHWbHYcrObIabIbcGybzybFlaaUcavcHjcHkcHlcHkcHmcHncHocHpcHqbKebRVbSdbSebSdbTibRXbRYbKNbKObKPbKQbIkbIsbTEbVOcKobXncEUcEVcEWcEXcEYcEZcFacFbcFccEXcEZcFdcFecFfcFfcAmcFfcFhcFfcFicyLbIubIvcrXbIwbQjbyQbPNbxjaYpcscaYpbmebuobuibuibQdbuibuibuicqlbuibuibuibuicOwbuibHtbmeaYpcscaYpblpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNbHzbHPbIybIzbIAcnSbHNaaUboKbHQbHRboKaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbSjbIEbZzbFtbOFbYzbIGbIHbIIbIJcsYcGybIKbFlaaUcavcqScaPcaPcaPcbvcskcbwcHrcHsbsMbQQbThbtobThcaOcRnbTDbTDbTDcRobYBccBccCccDcfNbYIbYJbShcgfckaclvcqWbAscFkbElbElbIUbJabElcFkbElbJbcAtbJcbJebtpbMFcyMbJhbJiczIczJbQobKkcAubxjaaaaaaaaabmebuobuibuibQrbQsctVbJqbJqbJqcrjbJRbuibuibuibHtbmeaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNcknbHNbHNcmcbIBbKZbHNaaaboKbHQbHRboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbJrbJrbFlbJsbJtcPUcPVcGAcGBcGCcGDcGEbJxbFlaaUcavcavcaTcaTcaTcaUcavbXdcGzcHtbsMccdbtocsZcqzckbcvSczHcmScrycrAcgrcFWcGNcGOcPxcPPbSabChcFjbQkbWDbJgayYcFlbJnaJDaJEaKZaMmcFmaOFbJJcAvbJLcRbbJNbNFbJObyQbDabBubBubJPbyQcChbxjaaaaaaaaabmebmebuibuibJobNHblpbmebNIbmeblpbNJbJRbuibuibmebmeaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKbNLaqAbNLbJQceJbNObNPbHNaaaboKbHQbJUboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbJVbJWcPWcPXbJXbFwbXObZDbKbbKcbxTcavcavcavcaXcaYcoGcbacavcavcHucHvbsMcsVbThbtobThcuZcmRbKfccmccmcdWbIkbIkcFnbTEckdbIqbScbChcFobQkcqbbQlbaTcFpbQmbbxbbzbbBbbCcFqbbEbKhcFgcHOcHPcHOcHQcKpcHRczwcKqbKmbKnbyQcChbxjaaaaaaaaaaaabmebmebuibNQbmebmeaaaaaaaaabmebmebNRbuibmebmeaaaaaaaaaaaaaaUbNSbYQbYQbYQbYQavrbNSbYQbYQbYQbYQavrbNLaaUbJQbJQbHNbHNbHNaaaboKbHQbHRbKoaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcPYcPZbKqbxTbxTbxTbxTbxTbxTcavcavccLcaXcaXcaXcnCcavcavcHwcaGcuYcvtcvQcEPcRicRjcRpcRlcoHcOxcOycOzcGbcGccGdcGecqZbSgbShcFrbQubKybYGbaTcFpcbfbbZbjxblvblwcFscoXbKzbKzbKzbKAbKzbKzcHSbKCbyQcHTbyQbyQbyQcChbxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUbNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbNLaaUaaaaaaaaaaaaaaaaaaboKbHQbHRbKDcgWaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQbcQccQdcQecQfbKMbKMctabxTcavcbecaXcaXcaXcHxcHycHzcHAcHBcHCbIkbZTcrWcRqcumcFVcRkcRrbJHcOAcOBcOCbRIbMjcvTbMjbMjbMjbMjcFtcFucFvcFwcFxcFybopboqbotczKblwcFzbbEbKSbKTbKUbKVbKWbKTcHUbKYcPQcPycHXcHYcODcIabxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbNLaaUaaaaaaaaaaaaaaaaaaboKbLabLbboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTcaVbLdbKMcQgbLfcQhcQibLibLjcQjbKMbKMcaZbxTcavcblcaXcbhcaXcHDcHEcHFcHGcHHcHIbIkbIkcebcebcebcebcebbIkbIkcOEcOFcOGcOHbMjcFAbLIbLWcFBcFCcFDcFEbJIbpabpbbbtbpebpgbotbphblwbqtbbEbLqbLrbKTbLsbLtbLrcIbbKYcIccIdcKPcyScIecIfbxjaaaaaaaaaaaaaaabmebNWbNXbmeaaUaaaaaaaaaaaUbmebNYbNZbmeaaaaaaaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKaaUbNLaaUbNKbNKbNKbNKbNKaaUboIboKboKboIaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQlcQmcQnbLickNcQobKFbKFbLybxTcavcbqcaXcaXcaXcHJcbtcaXcavcHKcHLcbBaaUaaUaaUaaUaaUaaUaaUcOIcOJcOKcOLbRIbMjckhckjcFFcFGcFHcFIcFJbJIbQnbqObqPbQzbpgbjxbqRblwblxbqSbKzbKTcIgczLcsobLtcvvbKYcIcbLDcOMcOMcONcOOcOMaaUaaUaaUaaUaaUbmebOabOabObaaUaaaaaaaaaaaUbObbOabOabmeaaUaaUaaUaaUaaUaaUbNSbYQbYQbYQbYQavrbNSbYQbYQbYQbYQavrbNLbOcbYRbYRbYRbYRbOdaaUaaUaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQhcQibLFbxTbxTbxTbxTbxTbxTcavcavctbcaXcaXcaXcpecavcavcHMcHNcbBaaUaaaaaaaaaaaaaaaaaacOIcOPcOIcOLbRIcfbcFKcFLcFMcFNbChcFObQLbLLbQCbrubrObXDbAybAHbAMbATbBnbQybLMbLNcIjcIkcIlcImcIncIocIpcoAcOMcOQcORcOScOMaaUaaaaaaaaaaaabmebOebOebmebmeaaaaaaaaabmebmebOebOebmeaaaaaaaaaaaaaaaaaabNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbOfaaUbNUbNUbNUbNUbNUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQrcQfbKMbKMbKMbxTcavcavcavcbxctIcbzcavcavcbEckPckQcbBaaUaaaaaaaaaaaaaaaaaacOIcOTcOIcOUbRIcFPcFQcnXcnYcvwbChcFRcFSbMacmZcoYbQBcnabQJcRmcvxcezceAceBbKzbMbbMcbMdbMebMfbMgbKzbxjbxjcOMcOVcOWcOXcOYaaUaaaaaaaaaaaabmebOibOgbOhbmeaaaaaaaaabmebOibOgbOhbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTclfbLdbKMcQsbLfcQhcQtbMibLjcQubKMbLdcmQbxTaaUcavcavcavcavcavcavcavcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUbChbChbChbChbChbRIcpzctDcFTctFcpzcpzctDcvocpzcpzbMkbMlbMlbMnbKzbKzbKzbKzbKzbKzbKzbKzaaUaaUcOMcOZcPacPbcOYaaaaaaaaaaaaaaabOncndbuicnebmeaaaaaaaaabmebOjbuicncbOnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQvcQhcQibLickNcQobKFbKFbLybxTaaUaaUcavcavcavcavcavaaUcbEckTckUcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlbMocFUcoJcvsbMrbMscvObMucvsbMwbMvbMwbMvbMwbMvbMvbMlaaUaaUaaUaaUaaUaaacOMcOMcOMcOYcOYaaaaaaaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOqaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQwcQibLibxTbxTbxTbxTbxTbxTaaaaaaaaaaaaaaaaaaaaaaaUcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlcobbNgcpbcwgcwhbMAcwibMCcwjbMDbMvbMvbMvbMvbMwbMEbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOobOpbmebOpbmeaaaaaaaaabmebOpbmebOpbOoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQxcQfbKMbKMbKMbxTaaaaaaaaaaaaaaaaaaaaaaaUcbEckVckWcbBaaUaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUcpzcpzcpzcpzcpzbNhcpzcpzcwlcwmcwncwocwpbMvbMwbNibMLbMvbMvbMvbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTctLbKMbKMcQybLfcQzcQAbLibLjcQBbKMcnDctMbxTaaaaaaaaaaaaaaaaaaaaUcbBcbEcRccRdcbEcbBaaUaaUaaUaaUaaUaaaabpaaaaTdaaacpzcpzcpzcpzcvUbMNbMObMPbNjbMRbMlbNmbMTcwubMUcwTbMvbMvbMvbMvbMvbMVbMvbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQCcQDcQEbLickNcQobKFbKFbLybxTaaUaaUaaUaaUaaUaaUcbBcbBcleclgcsXctWcbBcbBaaUaaaaaaaaUaaUaaUaaUaaUaaUcpzbNrbNvcpzctObMJbMJbMJbNwbNxbNybNzbNGcABbNccpzcvscpzcoKbMvbMlbMlbMlbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTcjPcbFcvVbxTbxTbxTbxTbxTbxTcbBcbBcbBcbBcbBcbBcbEcnjcsWctcctPcbDctNcbEaaUaaaaaaaaaaaaaaUaaaaaUaaacpzbQUcACcADcAEcAGcAHcAKcPccBDcBGcBTcCacCccCgcCicCjcucbMvbMvbMlaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabAbctQbxTbOscvzctTctRcnlckSbOyctUbOAcuectScvGctYcKrcKrcKrcKrcKscKtcKucKvcuacukctZclhcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcuvcCkcClbNsbMJcvybMJcCmcLAcpzcpzcCocCrcCrcCrcCucpzbNubMLbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaacKwcKxcKycKzcKAcKBcQFclacQGclackXclbcvXcudcvYcvAcubcufcubcubcugcuhcuicujcvWculctZclhcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcLCcCvcCwcLFcLGcLHcLIcCxcCycCzcCDcLLcLDcLDcLMcLNcvsbMlbMlbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaclicljbxTbOGbOHbOIcQHbOKcQIbOMbONbOGbxTcljbxTcbBcbBcbBcbBcbBcbBcbEclhcuqcurcurcldctNcbEaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcCQcCScpzbNAbNBbNCbNDcDbcLPcpzcDccDdcuvcuvcvfcLScClaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTclkbxTbOPcQJcQKcQLcQMcQNcQOcQPbOPbxTcllbxTaaUaaUaaUaaUaaUaaUcbBcbBcusclhclhcuscbBcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcwTcpzcpzcpzcpzctDcDecDfcLTcpzcpzcwgcCrcCrcCrcCrcCuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTcljbxTbxTbxTbOTbKMbKMbKMbOUbxTbxTbxTcljbxTaaUaaaaaaaaaaaaaaaaaUcbBcbEcbBcbBcbEcbBaaUaaUaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcLUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaTxaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclmbxTbOWbKMbKMbKMbKMbKMbKMbKMbOXbxTclmaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaTxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPdabMcPeaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbOZbKMbKMbKMbPabKMbKMbKMbPbbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMcPgaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPdabRcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbPcbKMbKMbKMbKMbKMbKMbKMbPdbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabRcPiaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcPdabMcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbPebKMbPfbPgcunbPibPjbKMbPkbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMcPjcPkcPkaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPlcPmcPnabRcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclpbxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbxTclpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMabRabRabMaRvaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabMabMcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaclqclrclsclsclsclsclsclsclsclsclsclrcltaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPocPocPocPocPpaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPqcPqcPqcPqcPhabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
-cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(2,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(3,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(4,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(5,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(6,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(7,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(8,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(9,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(10,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(11,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(12,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(13,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(14,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(15,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(16,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(17,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(18,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(19,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(20,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(21,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(22,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(23,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaw
+aaf
+aaw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(24,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bnj
+aaw
+bHZ
+aaw
+bnj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(25,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaw
+aaw
+acp
+bJM
+acp
+aaw
+aaw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(26,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+acp
+bef
+crG
+crK
+acp
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(27,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaw
+bgD
+acp
+beh
+bKH
+crL
+acp
+bLB
+aaw
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(28,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+acp
+bFr
+crH
+crM
+acp
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(29,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaw
+aaw
+acp
+acp
+acp
+aaw
+aaw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(30,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bnj
+aaw
+crG
+aaw
+bnj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(31,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaw
+crH
+aaw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(32,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(33,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(34,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(35,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(36,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(37,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+cpC
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(38,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(39,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(40,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(41,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(42,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(43,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+crB
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(44,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aye
+aEf
+akI
+akI
+akI
+akI
+akI
+akI
+akI
+akI
+akI
+akI
+akI
+akI
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+crE
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(45,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aye
+aaU
+akI
+adp
+ajt
+chi
+arW
+aHo
+buV
+bxu
+akI
+bxB
+bxQ
+bxZ
+byb
+byi
+byn
+byp
+byB
+byG
+byL
+byB
+clI
+byn
+clP
+byi
+aaa
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(46,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aye
+aaa
+akI
+adZ
+chh
+cMf
+axF
+aIM
+mKP
+crz
+cMf
+bxE
+bxW
+bya
+byb
+byk
+byn
+byq
+byn
+byH
+clD
+byn
+clJ
+byn
+clQ
+byi
+aaU
+aye
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(47,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aye
+aaa
+akI
+ajZ
+anx
+akJ
+aAI
+aMx
+cnn
+bxx
+bxD
+bxI
+bxJ
+byb
+byb
+byb
+byn
+byx
+byn
+byn
+byn
+byn
+clK
+byn
+clR
+byi
+aaa
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(48,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aye
+aaa
+akI
+ahh
+aCf
+akI
+aAJ
+cMp
+aYa
+bxm
+akI
+aNC
+bxv
+byf
+byj
+byl
+byn
+byn
+byn
+byI
+clE
+byn
+byn
+byn
+crD
+byi
+aaa
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(49,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aye
+aaU
+akI
+ajn
+aLH
+akI
+aAK
+aRC
+bxn
+akI
+bxA
+hiV
+cvI
+byb
+byb
+byb
+byn
+byy
+byn
+byn
+byn
+byn
+clL
+byn
+clS
+byi
+aaa
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(50,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aye
+cep
+akI
+akI
+akI
+akI
+aGa
+cMK
+bxo
+akI
+akI
+bbk
+bxX
+byg
+byb
+bym
+byn
+byz
+byn
+byJ
+clF
+byn
+clM
+byn
+clT
+byi
+aaU
+aye
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(51,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aEa
+cMK
+bxq
+bxC
+akI
+bxK
+bxY
+byh
+byb
+byi
+byn
+byA
+byC
+byK
+clG
+byC
+clN
+byn
+clU
+byi
+aaa
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(52,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aEa
+cMK
+bxt
+akI
+akI
+akI
+akI
+akI
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+byi
+crF
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(53,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aEa
+aHE
+bab
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+crC
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(54,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aEb
+aPT
+aaU
+aaU
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(55,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(56,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+agL
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(57,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aee
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(58,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abh
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cpC
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(59,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaL
+abi
+aaa
+aaa
+aaK
+aaL
+abi
+aaa
+aaa
+aaK
+aaL
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(60,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+cpC
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(61,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(62,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEb
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(63,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+cpC
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(64,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+bxT
+bxT
+bFl
+bxT
+bFl
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bAb
+cKw
+cli
+bxT
+bxT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(65,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+cpC
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bxT
+bFj
+bHS
+bSj
+bJr
+bFj
+bxT
+bKE
+caV
+bKM
+bxT
+bKE
+clf
+bKM
+bxT
+bKE
+ctL
+bKM
+bxT
+ctQ
+cKx
+clj
+clk
+clj
+clm
+cln
+cln
+cln
+clp
+clq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(66,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+cpC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bxT
+bFk
+bHS
+bIE
+bJr
+bFk
+bxT
+bKF
+bLd
+bKM
+bxT
+bKF
+bLd
+bKM
+bxT
+bKF
+bKM
+bKM
+bxT
+bxT
+cKy
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+clr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(67,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bxT
+bFl
+bFl
+bZz
+bFl
+bFl
+bxT
+bKF
+bKM
+bKM
+bxT
+bKF
+bKM
+bKM
+bxT
+bKF
+bKM
+bKM
+bxT
+bOs
+cKz
+bOG
+bOP
+bxT
+bOW
+bOZ
+bPc
+bPe
+bxT
+cls
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(68,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaK
+aaM
+abi
+aaa
+aaa
+aaU
+aEa
+aPT
+aaU
+aaU
+aaa
+aaU
+aPV
+bik
+bik
+bik
+bik
+bik
+bik
+cQT
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bbv
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bxT
+bFm
+bHT
+bFt
+bJs
+bJV
+bxT
+cQa
+cQg
+cQk
+bxT
+cQa
+cQs
+cQk
+bxT
+cQa
+cQy
+cQk
+bxT
+cvz
+cKA
+bOH
+cQJ
+bxT
+bKM
+bKM
+bKM
+bKM
+bxT
+cls
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(69,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aee
+aaU
+aaU
+aaU
+aaU
+aee
+aaU
+aaU
+aaU
+aaU
+aee
+aaU
+aaU
+aaU
+aaU
+aEa
+aPT
+aaU
+aaU
+aPV
+bik
+cQS
+aIA
+aJe
+aLE
+aLy
+aMQ
+aNF
+cQU
+bik
+cQT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bxT
+cnb
+bHU
+bOF
+bJt
+bJW
+bxT
+cbo
+bLf
+cQl
+bxT
+cbo
+bLf
+cQv
+bxT
+cbo
+bLf
+cQC
+bxT
+ctT
+cKB
+bOI
+cQK
+bOT
+bKM
+bKM
+bKM
+bPf
+bxT
+cls
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(70,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abh
+abh
+abh
+abh
+abh
+abh
+aiq
+aaL
+ajc
+abh
+abh
+abh
+abh
+abh
+abh
+aEb
+aPT
+aaU
+aaU
+aPW
+aHD
+aIg
+aHF
+aJn
+aHF
+aHF
+aJn
+aHF
+aPp
+cQV
+cQS
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+bxT
+bFo
+bHV
+bYz
+cPU
+cPW
+cPY
+cQb
+cQh
+cQm
+cQh
+cQh
+cQh
+cQh
+cQw
+cQh
+cQz
+cQD
+cjP
+ctR
+cQF
+cQH
+cQL
+bKM
+bKM
+bKM
+bKM
+bPg
+bxT
+cls
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(71,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abx
+aoH
+abx
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aEa
+aPT
+aaU
+aPU
+aTH
+bRD
+aHF
+aHF
+aIE
+aIE
+aIE
+aIE
+csD
+aHF
+cQW
+aGq
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaU
+aaa
+bcy
+cnU
+cnU
+cnU
+bZW
+aaa
+aaU
+aaU
+cbb
+cbb
+cbb
+cbb
+cbb
+cbb
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+bxT
+cdD
+bHW
+bIG
+cPV
+cPX
+cPZ
+cQc
+cQi
+cQn
+cQi
+cQp
+cQt
+cQi
+cQi
+cQp
+cQA
+cQE
+cbF
+cnl
+cla
+bOK
+cQM
+bKM
+bKM
+bPa
+bKM
+cun
+bxT
+cls
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(72,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aju
+aoP
+aqM
+aaU
+aaU
+aaa
+aaa
+aaa
+aGq
+aDn
+aLK
+aGq
+aGq
+aKH
+cQQ
+aHF
+aIE
+aJu
+aKA
+bhB
+aMX
+aIE
+aHF
+cQX
+aQW
+bkC
+bkC
+aQW
+bkC
+aQW
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+bcw
+aUZ
+bcw
+aaa
+bcy
+bdc
+byc
+bdc
+bcy
+aaU
+aaU
+aaa
+cbb
+cbg
+chT
+cpD
+cGH
+cbb
+aaa
+aaa
+aaa
+aaU
+aaa
+bAb
+bxT
+bFq
+bHY
+bIH
+cGA
+bJX
+bKq
+cQd
+bLi
+bLi
+bLF
+cQq
+bMi
+bLi
+bLi
+cQq
+bLi
+bLi
+cvV
+ckS
+cQG
+cQI
+cQN
+bKM
+bKM
+bKM
+bKM
+bPi
+bxT
+cls
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(73,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abx
+aqw
+aoW
+aqw
+aqw
+aaU
+aaa
+aaa
+aaa
+aGq
+aEe
+aUz
+bDP
+aGq
+aGL
+cQQ
+aHF
+aIH
+aJz
+aKE
+aLI
+aMX
+aIE
+aHF
+cQY
+aQW
+bmj
+bBt
+cDB
+bLh
+aQW
+aQW
+bkC
+bVN
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+bcw
+bde
+bcw
+bYg
+bcy
+bfp
+cwY
+bOD
+bcy
+aaU
+aaU
+aaa
+cbb
+hFa
+csR
+csR
+csR
+cbb
+aaU
+aaU
+aaU
+aaU
+aaU
+bAf
+bxT
+crN
+crO
+bII
+cGB
+bFw
+bxT
+cQe
+bLj
+ckN
+bxT
+cQr
+bLj
+ckN
+bxT
+cQx
+bLj
+ckN
+bxT
+bOy
+cla
+bOM
+cQO
+bOU
+bKM
+bKM
+bKM
+bPj
+bxT
+cls
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(74,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abx
+akg
+apS
+arr
+abx
+aaU
+aaa
+aaa
+aaa
+aGq
+aXj
+aZq
+bDQ
+hcR
+aGM
+cQQ
+aHF
+aII
+abO
+aKG
+aRe
+aXS
+bbb
+aHF
+cQQ
+aQW
+baP
+bCd
+cjQ
+bLk
+aVP
+cpt
+bOR
+bXI
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bcw
+bee
+bcw
+crI
+bcy
+bfo
+blG
+bfo
+bcy
+aaa
+aaU
+aaU
+cbb
+csR
+csR
+cGJ
+dYm
+cbb
+cGZ
+cGZ
+cbb
+bxT
+bxT
+bAg
+bBJ
+bFs
+bIa
+bIJ
+cGC
+bXO
+bxT
+cQf
+cQj
+cQo
+bxT
+cQf
+cQu
+cQo
+bxT
+cQf
+cQB
+cQo
+bxT
+ctU
+ckX
+bON
+cQP
+bxT
+bKM
+bKM
+bKM
+bKM
+bxT
+cls
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(75,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aiN
+akj
+anV
+asl
+abx
+aaU
+aaU
+aaU
+aaU
+aGq
+aFE
+bdz
+bDR
+aKF
+aLm
+cQR
+aMi
+aQh
+aQN
+aRa
+aRl
+aXT
+bbc
+bbD
+cQZ
+cDt
+cDw
+bEq
+cps
+bMh
+bRb
+bOQ
+bOS
+cbi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bcy
+bdf
+mBP
+crJ
+blT
+bqJ
+bBN
+bKI
+bOr
+aaa
+aaU
+aaa
+cbb
+cbn
+csR
+gVV
+cGK
+cbb
+cbb
+cbb
+cbb
+bJZ
+cby
+bMx
+bxT
+bFt
+bIb
+csY
+cGD
+bZD
+bxT
+bKM
+bKM
+bKF
+bxT
+bKM
+bKM
+bKF
+bxT
+bKM
+bKM
+bKF
+bxT
+bOA
+clb
+bOG
+bOP
+bxT
+bOX
+bPb
+bPd
+bPk
+bxT
+cls
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(76,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aiN
+akz
+aDO
+asH
+awm
+axc
+awm
+ayJ
+aqw
+aGq
+aJL
+aUR
+bEc
+kzb
+aGW
+aHI
+aIL
+aKv
+aGn
+aKK
+aLQ
+aGn
+bbd
+bbG
+bit
+cDu
+cDx
+bFy
+cDC
+bOJ
+aVR
+bBj
+bRc
+bXI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bcy
+bdt
+ctj
+bUF
+bOv
+bfo
+blI
+bfo
+bWS
+bcw
+bcw
+bcw
+bcy
+cbu
+csR
+cGF
+cGL
+cGP
+cGV
+cHa
+cbb
+bxV
+cOq
+cGv
+cGw
+cGy
+cGy
+cGy
+cGE
+bKb
+bxT
+bKM
+bKM
+bKF
+bxT
+bKM
+bLd
+bKF
+bxT
+bKM
+cnD
+bKF
+bxT
+cue
+cvX
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+clr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(77,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aiN
+akB
+aDT
+atv
+awo
+atv
+axp
+atv
+azy
+aGq
+aJM
+urj
+cbX
+aGq
+aGX
+aHM
+aHM
+aIP
+aJB
+aHM
+aHM
+aNg
+aSW
+aHM
+biF
+aQW
+buM
+bAX
+bEN
+bOL
+aQW
+aQW
+buO
+cbp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bcy
+bec
+bek
+blH
+bnm
+bwN
+bJY
+bLE
+bOE
+bJY
+cKI
+cbP
+bcy
+cbC
+cnO
+csR
+csR
+cGQ
+cGW
+mIm
+cbb
+bKa
+cGq
+bMy
+bxT
+bzy
+bzy
+bIK
+bJx
+bKc
+bxT
+cta
+caZ
+bLy
+bxT
+bKM
+cmQ
+bLy
+bxT
+bKM
+ctM
+bLy
+bxT
+ctS
+cud
+clj
+cll
+clj
+clm
+clo
+clo
+clo
+clp
+clt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(78,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bfq
+aaa
+aaa
+aaU
+aiN
+alu
+aDT
+aGy
+awu
+auL
+awu
+auL
+aAc
+aGq
+aJX
+bdE
+cen
+aGq
+cvK
+aHM
+cnp
+aIQ
+aJG
+aKL
+bPt
+aNi
+aSW
+aHM
+bju
+aQW
+buO
+buO
+aQW
+buO
+aQW
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bcy
+bed
+boJ
+fuR
+bzX
+bAl
+boL
+bAG
+cnT
+boQ
+cKJ
+bAP
+bcy
+chR
+cnV
+cGG
+cGM
+cGP
+cGV
+cGV
+cbb
+bxT
+cGr
+bxT
+bxT
+bFl
+bFl
+bFl
+bFl
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+bxT
+cvG
+cvY
+bxT
+bxT
+bxT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(79,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+agW
+ahf
+ain
+aaa
+ain
+alt
+agW
+aaa
+aqw
+abx
+aCd
+aDV
+aEp
+aEs
+aIo
+aEs
+aNZ
+atv
+aGq
+aGq
+bdJ
+ceo
+aGq
+aKY
+aHM
+aHM
+aHM
+aHM
+aHM
+aHM
+aHM
+aSW
+aHM
+bjJ
+aGq
+aaU
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+bcy
+bcy
+bcy
+bcy
+bcy
+bgC
+bdf
+boR
+bDL
+boQ
+cKJ
+bAP
+bcy
+bWl
+bZW
+bcy
+cbb
+cbb
+cbb
+cbb
+cbb
+bRh
+bTO
+bVv
+bTR
+aaU
+aaU
+aaU
+aaU
+cav
+cav
+cav
+cav
+cav
+cav
+cav
+aaU
+aaU
+aaa
+aaa
+aaa
+aaU
+cbB
+ctY
+cvA
+cbB
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(80,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+agW
+ahk
+ain
+aaU
+ain
+ahk
+agW
+aaU
+abx
+aiO
+amq
+avW
+awd
+awK
+axf
+awK
+aOK
+aAi
+ceC
+aAR
+aEm
+aGz
+aGs
+aOp
+aOZ
+aPu
+aOZ
+aOZ
+aOZ
+aSa
+aSa
+bbe
+bnG
+bkA
+aGq
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaa
+aaa
+bcw
+bdf
+bdf
+bpM
+bFp
+bvj
+cKK
+bAU
+bRi
+bSl
+bRi
+bcy
+aEF
+bko
+bko
+bko
+bTr
+aVF
+cGt
+aVF
+bTR
+cav
+cav
+cav
+cav
+cav
+cav
+cbe
+cbl
+cbq
+cav
+cav
+cav
+aaU
+aaa
+aaa
+aaa
+aaU
+cbB
+cKr
+cub
+cbB
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(81,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+agW
+ahl
+ain
+ain
+ain
+alv
+agW
+agW
+agW
+aiP
+anV
+auL
+awr
+awM
+asL
+axu
+aOL
+asL
+asL
+asL
+aFj
+aFj
+aFj
+bmc
+aHP
+aHP
+aIT
+aJK
+aKP
+aSi
+aYh
+csr
+aNR
+blf
+aNR
+buR
+bKp
+bKJ
+aaa
+bdg
+bdg
+bdg
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bdg
+bdg
+bdg
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bim
+aaU
+aaU
+aaa
+bcw
+bhy
+bdf
+bpR
+bJw
+bLc
+cKL
+bAV
+bRj
+bZf
+bZY
+bcy
+aSj
+bko
+csT
+bko
+bTs
+aVF
+cGs
+aVF
+cav
+cav
+cHj
+cqS
+cav
+cav
+ccL
+caX
+caX
+caX
+ctb
+cav
+cav
+cav
+aaa
+aaa
+aaa
+aaU
+cbB
+cKr
+cuf
+cbB
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(82,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+agW
+aho
+ais
+akl
+akO
+aho
+alW
+amX
+agW
+aiO
+aob
+bUA
+awk
+ajU
+asL
+axv
+aOW
+aAn
+aAS
+aCc
+aFj
+aFX
+aGt
+bnW
+cjW
+aFj
+aFj
+aGq
+bdQ
+aSB
+aGq
+aNR
+aNR
+bly
+bjF
+byd
+aUB
+bKK
+aaa
+bdg
+beN
+bgx
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bdg
+bEC
+bgx
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aaU
+bcy
+biK
+bdf
+bpR
+bJT
+bLl
+cKM
+bQX
+bvy
+bZg
+caa
+bcy
+aTE
+aTE
+aTE
+aTE
+bTG
+aVF
+cGs
+aVF
+caw
+caA
+cHk
+caP
+caT
+caX
+caX
+caX
+cbh
+caX
+caX
+cbx
+cav
+cav
+aaa
+aaa
+aaa
+aaU
+cbB
+cKr
+cub
+cbB
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+cpC
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(83,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahg
+ahg
+ahg
+ahg
+ahg
+ahp
+aiE
+akq
+akT
+aAd
+atq
+atH
+anU
+anU
+asL
+asL
+azi
+asL
+anU
+axz
+aPj
+ayM
+cCP
+aCg
+aFm
+aGK
+cCW
+brG
+aGu
+aMh
+aFm
+aOr
+aKS
+aSW
+cDs
+aNR
+biq
+blA
+bqh
+buG
+bIW
+bKK
+aaa
+bdg
+beR
+beJ
+bdg
+bdg
+bdg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdg
+bdg
+bdg
+beJ
+beR
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+bcw
+biT
+bdf
+bpR
+bwD
+bLx
+cKN
+bWt
+bvy
+bZj
+cac
+bcy
+aTX
+aVF
+aVF
+aVF
+aVF
+aVF
+cHg
+bTP
+caw
+caB
+cHl
+caP
+caT
+caY
+caX
+caX
+caX
+caX
+caX
+ctI
+cav
+cav
+aaa
+aaa
+aaa
+aaU
+cbB
+cKr
+cub
+cbB
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(84,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahg
+akp
+alw
+afH
+ahg
+ahq
+aiG
+akr
+alj
+ari
+amg
+amX
+anU
+aCr
+aKd
+aLJ
+azj
+aph
+asL
+axA
+aPk
+aMp
+aOn
+aCi
+aFj
+aGb
+cCX
+bGn
+aHW
+baK
+aFj
+aSs
+bWe
+cPs
+bdS
+aNR
+aPt
+aYR
+csE
+bvJ
+aUF
+bKK
+aaa
+bdg
+beJ
+beJ
+aXk
+bjg
+aXl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+baZ
+bjg
+bhS
+beJ
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+bgW
+bgW
+bgW
+bgW
+bnk
+bqI
+bHF
+bDM
+bOu
+bWu
+bRk
+bZB
+cad
+bcy
+aVF
+cGR
+cGX
+cHb
+cHc
+cHe
+cHh
+bTQ
+caw
+caC
+cHk
+caP
+caT
+coG
+caX
+cHx
+cHD
+cHJ
+caX
+cbz
+cav
+cav
+aaa
+aaa
+aaa
+aaU
+cbB
+cKs
+cug
+cbB
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(85,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+ahg
+aks
+akY
+alF
+ahg
+aps
+agW
+agW
+agW
+asF
+ain
+ain
+anU
+aEw
+asX
+aNj
+aNJ
+aph
+asL
+axB
+aPn
+aAv
+aOO
+aCl
+aFj
+aZT
+aGv
+bLp
+bEV
+aIr
+aFj
+aOs
+aIP
+aTf
+aYy
+bbf
+bsf
+bnI
+aRo
+bAn
+bKG
+bLe
+aaa
+bdg
+beJ
+beJ
+bdg
+bdg
+bdg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdg
+bdg
+bdg
+beJ
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+bgW
+bin
+bjs
+bgW
+bgW
+bmb
+bgW
+bgW
+bOv
+bWS
+bcy
+cvH
+bcy
+bcy
+bSJ
+cGS
+cGY
+buC
+cHd
+cHf
+cHi
+buC
+cax
+bWd
+cHm
+cbv
+caU
+cba
+cnC
+cHy
+cHE
+cbt
+cpe
+cav
+cav
+cav
+aaa
+aaa
+aaU
+cbB
+cbE
+cKt
+cuh
+cbE
+cbB
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(86,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anU
+anU
+acc
+anU
+ahg
+akt
+atI
+amm
+ame
+akL
+akD
+amh
+aBA
+arq
+awJ
+awJ
+anU
+aHb
+asY
+aNG
+aNV
+aBb
+anU
+abS
+aPv
+abS
+aPD
+abS
+aFj
+aFj
+aLa
+cjR
+aFj
+aFj
+aFj
+aGn
+bfA
+aTu
+aGn
+aNR
+aNR
+aNR
+aRw
+bCe
+aNR
+aNR
+aaa
+bdg
+beJ
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bdg
+coQ
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bgW
+cfg
+bjt
+bep
+bVe
+bVp
+csf
+bgW
+jyu
+bXg
+bXS
+bYb
+cae
+bcy
+bfr
+cGT
+bJz
+bTo
+cag
+cbc
+caI
+bTo
+cax
+caE
+cHn
+csk
+cav
+cav
+cav
+cHz
+cHF
+caX
+cav
+cav
+cav
+aaU
+aaU
+aaU
+cbB
+cbB
+cnj
+cKu
+cui
+clh
+cbB
+cbB
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(87,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anU
+aaN
+aaS
+auE
+ahy
+aku
+aly
+aoq
+aoR
+aoV
+aoY
+apu
+aeD
+arT
+aaS
+aNM
+anU
+aHN
+atj
+ayf
+azn
+aBe
+bzx
+axC
+aPY
+aAz
+aOh
+aCG
+bpX
+aGo
+aAz
+cjS
+anU
+aMY
+aNK
+aNL
+aPo
+aTD
+aNL
+aNK
+aVj
+aNR
+bao
+bDk
+aNR
+aaU
+aaa
+bdg
+beJ
+bbI
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bdg
+cmd
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bgX
+bAw
+biA
+biA
+biA
+bmd
+csI
+bgW
+bOw
+bcy
+bRm
+bYj
+bRq
+bcy
+big
+cce
+bJA
+bTq
+big
+big
+bTN
+big
+cax
+cpg
+cHo
+cbw
+bXd
+cav
+cav
+cHA
+cHG
+cav
+cav
+cbE
+cbE
+cbE
+cbE
+cbE
+cbE
+cle
+csW
+cKv
+cuj
+cuq
+cus
+cbE
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(88,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aah
+aaz
+byX
+byX
+byX
+byX
+byX
+aaz
+acO
+anU
+aeb
+apc
+auI
+ahy
+aky
+amI
+aod
+amB
+ajy
+akF
+awG
+axW
+asj
+awR
+axo
+anU
+aIl
+anU
+anU
+anU
+aBf
+anU
+aTp
+aQb
+aaS
+aQl
+agu
+aSk
+aUg
+blY
+cjT
+aLk
+aNd
+aNL
+aNL
+aPq
+aUC
+aNL
+aNL
+aVj
+aNR
+aNR
+bEm
+aNR
+aaU
+aaa
+bdg
+beJ
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bdg
+beJ
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bgX
+biB
+biA
+cDS
+cDU
+cDW
+cDY
+bgW
+bOx
+bcy
+bcw
+bYs
+bcw
+bcy
+bYr
+cgV
+cGi
+cGl
+cGo
+cGp
+cGu
+cGp
+cGx
+cGz
+cHp
+cHr
+cGz
+cHu
+cHw
+cHB
+cHH
+cHK
+cHM
+ckP
+ckT
+ckT
+ckT
+ckV
+cRc
+clg
+ctc
+cua
+cvW
+cur
+clh
+cbB
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(89,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aan
+aaA
+aaA
+aaA
+aaA
+aaA
+aaA
+aaA
+ada
+anU
+anU
+apQ
+auK
+ahg
+akA
+amQ
+ama
+ahg
+abS
+abS
+awZ
+aEy
+ayS
+abS
+abS
+anU
+aIV
+anU
+ayj
+anU
+aBj
+anU
+axN
+aQb
+aaS
+bpo
+aAX
+aED
+aVw
+aBF
+aKx
+aLL
+aNf
+aNN
+aNL
+aPq
+aUC
+aNL
+aNL
+aVl
+aYT
+baz
+bFH
+aYT
+aaU
+aaa
+bdg
+beJ
+beJ
+bdg
+bdg
+bdg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdg
+bdg
+bdg
+beJ
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+bdg
+bdg
+bGI
+bGI
+bGI
+bGI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bgX
+csF
+csN
+biA
+biA
+csL
+cDj
+cDy
+bPl
+bXx
+bXT
+bYu
+bYA
+bYA
+bZG
+cmV
+cGj
+cGm
+bYv
+bYv
+cio
+cct
+cct
+bOO
+cHq
+cHs
+cHt
+cHv
+caG
+cHC
+cHI
+cHL
+cHN
+ckQ
+ckQ
+ckU
+ckQ
+ckW
+cRd
+csX
+ctP
+cuk
+cul
+cur
+clh
+cbB
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(90,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaU
+aaU
+aas
+aaA
+aaC
+abn
+abq
+abG
+ack
+aaA
+adb
+anU
+aaR
+aqa
+awY
+adO
+acN
+amZ
+acN
+aqY
+ajz
+alM
+axK
+axX
+azk
+acN
+acN
+azl
+aJw
+anU
+anU
+anU
+aLw
+abS
+axT
+aQb
+aaS
+aAY
+avj
+aSN
+aVI
+aBF
+aKy
+anU
+aNk
+aNL
+aNL
+aPq
+aUC
+aNL
+aTO
+aTP
+aYT
+baA
+bFI
+aYT
+aYT
+bdg
+bdg
+beJ
+beJ
+aXk
+bjg
+aXl
+cut
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+baZ
+bjg
+bhS
+beJ
+beJ
+bGI
+bXP
+aaa
+aaa
+aaa
+aaa
+aaa
+ceE
+bjg
+ceF
+beJ
+beJ
+bGI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bgW
+biG
+cve
+bky
+biA
+biA
+cDj
+cDy
+bWT
+bXh
+bYa
+bYw
+bYL
+bZE
+bZE
+csP
+cGk
+cGn
+cct
+bYo
+ckk
+bYF
+cct
+bFu
+bKe
+bsM
+bsM
+bsM
+cuY
+bIk
+bIk
+cbB
+cbB
+cbB
+cbB
+cbB
+cbB
+cbB
+cbE
+ctW
+cbD
+ctZ
+ctZ
+cld
+cus
+cbE
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(91,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+cpC
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aas
+aaA
+adB
+aaF
+aaJ
+abm
+acd
+acl
+acD
+aaG
+aeh
+aqf
+auS
+agu
+ajx
+ana
+agu
+agu
+agu
+agu
+aqf
+asV
+aCt
+agE
+atU
+aAV
+auV
+aGP
+bls
+aKO
+aLx
+ayR
+ayC
+aQE
+aMZ
+aAZ
+aCL
+abS
+aVO
+aKh
+anU
+anU
+abS
+abS
+aNL
+aPz
+aUG
+aNL
+aNL
+aVu
+aYT
+baC
+cPt
+bcs
+aYT
+bdj
+beF
+beJ
+beJ
+bdg
+bdg
+bdg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bdg
+bdg
+bdg
+beJ
+beJ
+bGI
+bXV
+aaa
+aaa
+aaa
+aaa
+aaa
+bdg
+bdg
+bGI
+beJ
+cis
+bGI
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+bgW
+biI
+cqB
+czA
+cBt
+csx
+cDv
+bgW
+bWU
+bXl
+bXy
+bWa
+bYc
+bXU
+bXU
+bWa
+bJF
+bKv
+bYv
+bYp
+bYx
+cPw
+caz
+bsU
+bRV
+bQQ
+ccd
+csV
+cvt
+bZT
+bIk
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+cbB
+cbB
+ctN
+clh
+clh
+ctN
+cbB
+cbB
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(92,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aas
+aaA
+aaH
+aic
+aaF
+aaF
+acu
+aaA
+acU
+adK
+aeL
+asO
+auT
+ahE
+akQ
+ahE
+ahE
+ahE
+ahE
+ahE
+aqz
+atV
+aCW
+aEC
+aEL
+aBa
+aGG
+aHH
+aIs
+aJy
+aKt
+aKC
+aLn
+aQH
+aMq
+aQm
+aSh
+aTR
+aWS
+bpS
+anU
+aLW
+aaS
+abS
+aLZ
+aPB
+aUV
+aYB
+bbg
+bcH
+bnZ
+bqi
+bIl
+bcJ
+bOY
+bdr
+beJ
+beJ
+beJ
+bdg
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bdg
+beJ
+ceI
+bGI
+bXV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bGI
+beJ
+bbI
+bGI
+aaU
+aaU
+aaU
+aaU
+aaU
+aUk
+bgW
+bgW
+csl
+cAQ
+bgW
+bgW
+cEb
+bgW
+bWV
+bXh
+bXA
+bXU
+bpz
+aaa
+aaU
+bXU
+bKs
+bKv
+bYv
+bYq
+cPv
+bYH
+bYv
+bFx
+bSd
+bTh
+bto
+bTh
+cvQ
+crW
+ceb
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cbB
+cbE
+cbB
+cbB
+cbE
+cbB
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(93,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aas
+aaA
+abl
+aaF
+aaQ
+abA
+abA
+acC
+acZ
+adW
+asV
+aeM
+adA
+aed
+afl
+afl
+afl
+aiK
+ajA
+ajA
+aew
+avg
+aew
+axi
+atW
+aCE
+aCH
+anU
+anU
+anU
+aPX
+abS
+ayI
+aQM
+aSx
+aTF
+aUv
+aVz
+aWe
+aTF
+aWC
+aXi
+aXO
+aYS
+aZM
+bbp
+bcN
+aYJ
+aNL
+aVJ
+aYW
+baF
+bIr
+bcx
+cvZ
+bdr
+beJ
+beT
+bbI
+bdg
+aaU
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaU
+bdg
+cmd
+beT
+bGI
+bXV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bGI
+beJ
+beJ
+bGI
+aaU
+aaU
+aaU
+aaU
+aaU
+aTV
+aUo
+aVW
+cDH
+bbS
+aUk
+bVL
+cEc
+bXr
+bWW
+bXh
+bXB
+bXU
+bpz
+aaa
+aaU
+bXU
+aJV
+brz
+bYv
+bTg
+bYy
+crf
+bYv
+bIe
+bSe
+bto
+csZ
+bto
+cEP
+cRq
+ceb
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(94,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+cpB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aas
+aaA
+abk
+abo
+abw
+abP
+acy
+aaA
+adb
+anU
+aeQ
+aeM
+ani
+aew
+aeJ
+aeJ
+aeJ
+aew
+aeJ
+aeJ
+aeJ
+avF
+aeJ
+aeJ
+aeJ
+aew
+aDW
+aew
+aIn
+aew
+aFG
+aew
+aew
+ayT
+aRO
+aBI
+aDs
+bfw
+aYo
+aKo
+anU
+aaS
+aMP
+abS
+aOv
+aPH
+bcQ
+aUC
+aNL
+aVJ
+aYX
+baD
+bIV
+bKg
+cwa
+bdr
+beJ
+bfd
+beJ
+bdg
+aaU
+aaa
+aWZ
+aWZ
+aWZ
+aWZ
+aWZ
+aWZ
+aWZ
+aaa
+aaU
+bdg
+beJ
+bfd
+bdg
+bXV
+aaa
+aaa
+ceD
+aaa
+aaa
+aaa
+aaU
+bdg
+beJ
+coR
+bdg
+aaa
+aaa
+aaa
+aaa
+aaU
+aUi
+aUp
+aWm
+cDH
+bcB
+aTV
+bVM
+cEd
+bWs
+bWs
+bXh
+bXJ
+bXU
+bpz
+aaa
+aaU
+bXU
+bKs
+bLG
+bYv
+bYv
+cwb
+bYv
+bua
+bJE
+bSd
+bTh
+cqz
+bTh
+cRi
+cum
+ceb
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cpB
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(95,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aan
+aaA
+aaA
+aaA
+aaA
+aaA
+aaA
+aaA
+ada
+anU
+aeQ
+aeM
+adD
+aew
+afn
+agI
+aid
+aew
+ajG
+alU
+aew
+awH
+aew
+axj
+ayQ
+aew
+aDY
+aew
+aew
+aew
+aQf
+aSX
+aew
+ayU
+aSQ
+aAB
+aDt
+asL
+aYr
+asL
+anU
+abS
+abS
+abS
+aNL
+aPq
+bdx
+aYO
+aNL
+aVL
+aYT
+baG
+bbM
+bcz
+aYT
+bdy
+beM
+bfd
+beJ
+bdg
+aaU
+aaU
+aWZ
+aXC
+aYg
+aYz
+aZf
+aZr
+aWZ
+aaU
+aaU
+bdg
+beJ
+bfd
+bdg
+bXV
+aaa
+bdg
+buB
+bdg
+aaa
+aaa
+aaU
+bdg
+beJ
+beJ
+bdg
+aaa
+aaa
+aaa
+aaa
+aaU
+aUi
+aUu
+cnu
+cDI
+cDT
+aTV
+bQZ
+cEd
+csO
+cEu
+bXh
+bXK
+bWa
+bYc
+bXU
+bXU
+bWa
+bKt
+bLU
+bRM
+bRO
+bRR
+cyt
+bDT
+bKd
+bTi
+caO
+ckb
+cuZ
+cRj
+cFV
+ceb
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(96,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aay
+aaz
+bPo
+bPo
+bPo
+bPo
+bPo
+aaz
+aeg
+anU
+aeV
+aeM
+adE
+aew
+afG
+agP
+agP
+aiL
+ajT
+anu
+ask
+ayF
+aCX
+aEE
+aEE
+aES
+aGT
+aHT
+aJt
+aJN
+aQg
+akv
+aew
+ayU
+aSQ
+aTg
+aDu
+asL
+aYq
+aXu
+aZU
+aZV
+beb
+aNO
+aNL
+aPq
+bex
+aNL
+aTO
+bhh
+aYT
+aYT
+bbP
+aYT
+aYT
+bdg
+bdg
+bJy
+caW
+bdg
+aaU
+aaa
+aWZ
+aXD
+aYk
+aYk
+aYk
+aZs
+aWZ
+aaa
+aaU
+bdg
+caW
+bJy
+bdg
+bXV
+aaU
+bdg
+bjg
+bdg
+aaU
+aaU
+aaU
+bdg
+beJ
+beJ
+bdg
+aaa
+aaa
+aaa
+aaa
+aaU
+aUi
+aUu
+aWm
+cDH
+bOt
+aTV
+bIg
+cEe
+cEs
+cEv
+cEx
+cEA
+cEJ
+cEM
+cEJ
+cEJ
+cEJ
+bKu
+bQv
+bRN
+cEs
+bRS
+cEN
+cEO
+bIc
+bRX
+cRn
+cvS
+cmR
+cRp
+cRk
+ceb
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(97,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anU
+agv
+aeN
+abS
+aew
+afJ
+agP
+agP
+ajB
+akv
+anw
+aym
+azN
+aDe
+aDe
+aDe
+aET
+aHg
+aHS
+aLf
+aJO
+aQi
+alU
+aew
+ayW
+aSQ
+aAB
+aDB
+asL
+aYq
+aXu
+aZV
+aZV
+beb
+aNS
+aOw
+aPq
+bcQ
+aNL
+aTY
+aWk
+aXR
+azd
+aTS
+aRW
+bcR
+bdN
+beJ
+bfd
+beJ
+bdg
+bdg
+aaU
+aWZ
+aXE
+aYk
+aYA
+aYk
+beg
+aWZ
+aaU
+bdg
+bdg
+beJ
+bfd
+bGI
+bYd
+bGI
+bGI
+bzb
+bGI
+bdg
+bdg
+bdg
+bGI
+beJ
+bbK
+bGI
+aaU
+aaU
+aaU
+aaU
+aaU
+aTV
+aVh
+biP
+cDH
+bcC
+aTV
+bIn
+bIN
+bIO
+bIQ
+bIR
+bIQ
+bIQ
+bIR
+bIQ
+bIS
+bIQ
+bIQ
+bQP
+cfZ
+bWX
+bWX
+ckf
+btn
+bIh
+bRY
+bTD
+czH
+bKf
+cRl
+cRr
+bIk
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(98,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+akE
+akE
+ans
+apg
+aqE
+aew
+afY
+agP
+agP
+aiL
+akv
+anw
+akv
+akv
+akv
+akv
+aAh
+aew
+aEW
+alU
+akv
+aKa
+aKw
+alU
+aew
+azc
+aSQ
+aAB
+aDL
+asL
+aYq
+aXu
+aZW
+aZV
+beb
+beb
+beb
+aPM
+bcQ
+aNL
+aNL
+aWl
+aXR
+aRI
+aTS
+aRW
+bcR
+bcR
+cmd
+bfd
+bgz
+bgx
+bdg
+bdg
+aWZ
+aZf
+aYk
+aYk
+aYk
+aYg
+aWZ
+bdg
+bdg
+beJ
+beJ
+bfd
+blc
+bYP
+coS
+aXc
+aXc
+aXc
+aXc
+aXc
+aXc
+aXc
+aXc
+aXc
+bGI
+aaU
+aaU
+aaU
+aaU
+aaU
+aTV
+aTV
+aTV
+bAc
+brw
+aTV
+bVM
+cEf
+bWx
+aab
+bXo
+bXQ
+bXZ
+bYi
+bYk
+bWa
+bWa
+bXU
+bXU
+bXU
+bXU
+bXU
+bWa
+bIk
+bId
+bKN
+bTD
+cmS
+ccm
+coH
+bJH
+bIk
+cOI
+cOI
+cOI
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(99,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aak
+aak
+aak
+aak
+aak
+aaa
+aaa
+aaa
+aaa
+aaa
+aak
+aak
+aak
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+akN
+alq
+alq
+apn
+aqF
+aew
+agD
+ahr
+aiH
+aew
+akw
+aoB
+akw
+aqD
+aew
+ayh
+aew
+aew
+aUy
+alU
+akv
+aym
+aQg
+akv
+aew
+azf
+aCb
+aFT
+bjV
+bpW
+aZO
+aXu
+aZX
+bcr
+beO
+beO
+beb
+cDp
+beL
+aRm
+aNL
+aXw
+aXR
+aRW
+aTS
+aRW
+bcR
+bdU
+beJ
+bfd
+beJ
+bii
+coP
+bdg
+aWZ
+aVG
+bnu
+bnV
+aYl
+aZu
+aWZ
+bdg
+byV
+bzB
+bgA
+bWf
+bXm
+bZQ
+ccN
+ccN
+cei
+ccN
+ccN
+ccN
+ccN
+ccN
+coZ
+blO
+bGI
+aaa
+aaa
+aaa
+aaa
+aaU
+aTV
+aVk
+bfu
+csu
+cAS
+cDV
+cDX
+cEg
+bWx
+bSE
+ckR
+bSE
+bSG
+bTc
+bSE
+bSE
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+bIk
+bIj
+bKO
+bTD
+cry
+ccm
+cOx
+cOA
+cOE
+cOJ
+cOP
+cOT
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cPf
+cPf
+cPf
+cPf
+cPo
+abp
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(100,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aar
+abM
+abR
+abR
+abM
+aZG
+aaU
+aaU
+aaU
+aaU
+aaU
+aTd
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aTx
+akE
+akE
+anC
+app
+aqH
+aew
+aew
+aew
+aew
+aew
+aew
+aew
+aew
+aew
+aew
+axk
+asz
+aew
+aGV
+akv
+aLv
+alU
+aQA
+aSZ
+aew
+aAP
+aEc
+bjB
+asL
+asL
+bfm
+aXA
+aZY
+bct
+beP
+beP
+bjv
+cDq
+bhz
+ccQ
+ccS
+aXB
+aYY
+aSc
+aTT
+aUH
+bcX
+bel
+cpl
+bfi
+bgA
+bLH
+bji
+bli
+aWZ
+aWZ
+aWZ
+boe
+aWZ
+aWZ
+aWZ
+beJ
+bSW
+bUy
+bJG
+aZy
+aZy
+aZy
+aZy
+beJ
+bfd
+bjg
+bUt
+bai
+baV
+cKF
+bbn
+cKG
+bGI
+aaa
+aaa
+aaa
+aaa
+aaU
+aTV
+aVq
+bfx
+cuQ
+cpP
+aTV
+bVR
+cEh
+bWy
+buf
+bJu
+bSQ
+bSY
+bTd
+bTj
+bSE
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bIk
+cpw
+bKP
+cRo
+crA
+cdW
+cOy
+cOB
+cOF
+cOK
+cOI
+cOI
+aZG
+aaU
+aaU
+aaU
+aTd
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aTx
+abM
+abR
+abM
+abM
+cPo
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(101,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aar
+abM
+aca
+acG
+acG
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aWj
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+akP
+als
+anW
+apr
+aqJ
+arR
+ajC
+agH
+akC
+amb
+amk
+auH
+ape
+civ
+avG
+axl
+aCu
+aew
+aFG
+aIz
+aew
+aPZ
+aQY
+aTa
+aew
+aDi
+bGY
+aDX
+aIq
+atc
+aYq
+aXu
+baa
+bcL
+beS
+bgm
+bjC
+cDr
+bhW
+ccR
+aNL
+aXG
+aXR
+awO
+aUc
+cjq
+bcR
+bcR
+bcR
+bcR
+bgE
+bLJ
+bLV
+bfi
+blE
+bBW
+bgA
+aww
+awL
+aGC
+aON
+aGC
+bTu
+bUC
+bVQ
+aZy
+bTp
+bRe
+baw
+bZA
+cfQ
+bZA
+bZA
+bqB
+bZS
+bZS
+bZS
+bZS
+bZS
+aaa
+aaa
+aaa
+aaa
+aaU
+aUi
+ciC
+bzz
+cvM
+cts
+aTV
+bVM
+cEf
+bWz
+bSE
+bSK
+bSR
+bSL
+bTe
+bTM
+bSE
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+bIk
+bJD
+bKQ
+bYB
+cgr
+bIk
+cOz
+cOC
+cOG
+cOL
+cOL
+cOU
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cPg
+cPi
+cPj
+abR
+cPo
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(102,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aar
+abM
+ace
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+abp
+aWj
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+akE
+akE
+akE
+akE
+akE
+akE
+ahm
+ako
+alx
+bfa
+aaj
+bNM
+civ
+cix
+avG
+axm
+aCC
+aCK
+aFZ
+aew
+aew
+awQ
+ayO
+aBx
+aoF
+aHR
+ccM
+aDX
+aJU
+atc
+aYq
+aXu
+baj
+bcP
+bfg
+bgy
+bjD
+aNO
+bcQ
+aNL
+aUD
+aXR
+aXR
+cjy
+aTS
+aQL
+aUX
+aZE
+aVS
+bcR
+bgF
+bcR
+bLX
+bLY
+bLY
+aVd
+bLY
+bQg
+bQw
+bLY
+bLY
+bLY
+bTy
+aZy
+bVU
+aZy
+bJm
+bbm
+baw
+aXe
+chU
+cjw
+cjw
+cke
+clu
+cmP
+clw
+bZZ
+bZH
+aaU
+aaU
+aaU
+aaU
+aaU
+aTV
+aYf
+beo
+cuQ
+cwe
+aTV
+bVS
+cEi
+cEt
+cEw
+cEy
+cEB
+cEK
+bSS
+bTl
+bSE
+brU
+brU
+brU
+brU
+cdZ
+brU
+brU
+bIk
+bIk
+bIk
+ccB
+cFW
+bIk
+cGb
+bRI
+cOH
+bRI
+bRI
+bRI
+bCh
+aaU
+aaU
+aaU
+cpz
+cpz
+cpz
+cpz
+cpz
+cpz
+cpz
+aaa
+aaa
+aaa
+aaa
+cPk
+abR
+cPo
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(103,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aar
+abR
+ace
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aWj
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bUo
+aaU
+acL
+afs
+aiT
+aco
+alG
+cjo
+aaj
+aGc
+bNT
+ciy
+cnF
+bGU
+bHl
+aoF
+asW
+atz
+avJ
+awS
+azB
+aBC
+atc
+aIF
+aJv
+aJZ
+aLY
+aNA
+bkF
+aXu
+aXu
+bcU
+aXu
+aXu
+bjD
+aQn
+bcQ
+aNL
+aUE
+aXR
+aQG
+aRW
+bsb
+aUI
+aUY
+bew
+aUY
+aWb
+aRW
+bcR
+cpc
+bjj
+bjj
+bmh
+bnv
+bou
+bQx
+bqj
+bjj
+bjj
+bjj
+aZy
+bVV
+bWg
+aWg
+bbo
+baw
+bZC
+cjv
+aYc
+bZF
+bay
+bZU
+cnW
+bbq
+bcp
+bZH
+aaU
+aaU
+aaU
+aaU
+aaU
+aTV
+bHH
+aWp
+czf
+coI
+aTV
+bVT
+cEj
+bWA
+bSG
+bSL
+bSS
+bUJ
+bSS
+bSL
+bSC
+brZ
+btf
+btU
+cec
+brU
+ced
+cej
+bCh
+bRL
+bIs
+ccC
+cGN
+cFn
+cGc
+bMj
+bMj
+bMj
+cfb
+cFP
+bCh
+aaa
+aaa
+aaU
+cpz
+bNr
+bQU
+cuv
+cLC
+cCQ
+cwT
+aaa
+aaa
+aaa
+aaa
+cPk
+abM
+cPp
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(104,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aar
+abM
+acf
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bUo
+aaU
+acL
+afF
+aip
+beV
+aco
+amd
+aaj
+cit
+ciw
+ciz
+ciB
+bGV
+bHm
+aLu
+ata
+ata
+ata
+awT
+aAk
+cjN
+atc
+aIG
+aRU
+aDX
+aYI
+atc
+aVQ
+aWa
+aWa
+cCV
+aYt
+aBY
+aOB
+aNO
+bcQ
+aNL
+aUL
+aXR
+aQK
+aRW
+bzT
+cnq
+aVe
+aRH
+aVe
+aWc
+aRW
+bcR
+bcR
+bcR
+bcR
+bmi
+bnx
+bpn
+bQx
+bqA
+aZy
+aZy
+aZy
+aZy
+bav
+bWh
+csG
+bQA
+aZy
+aXf
+bZJ
+bZF
+cpu
+bax
+bZV
+bZX
+ccY
+cab
+bZH
+aaa
+aaa
+aaa
+aaa
+aUk
+aUk
+aUk
+cnm
+czz
+aUk
+aUk
+bWa
+cEk
+bWa
+bSE
+bSM
+bST
+bSZ
+bTf
+bTm
+bSC
+bsa
+buA
+bJK
+ceg
+bqT
+cee
+cef
+coc
+bTz
+bTE
+ccD
+cGO
+bTE
+cGd
+cvT
+cFA
+ckh
+cFK
+cFQ
+bCh
+aaa
+aaa
+aaU
+cpz
+bNv
+cAC
+cCk
+cCv
+cCS
+cpz
+aaa
+aaa
+aaa
+aaa
+aaa
+aRv
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(105,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+acM
+aWj
+aWj
+aaa
+aaa
+aaa
+adj
+adj
+adj
+adj
+adj
+adj
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aaj
+aaj
+aaj
+aaj
+aaj
+aaj
+aaj
+aaj
+avi
+aal
+aal
+aal
+bGW
+aco
+apH
+aoF
+auP
+bGf
+bHh
+cqd
+cBb
+aFP
+aKi
+aMN
+aQw
+coU
+atc
+aVV
+aSg
+aXM
+aYq
+aYt
+baB
+aOB
+aQo
+bix
+bcS
+aQo
+aXR
+aQL
+cjq
+aQL
+aQL
+cjq
+aQL
+aQL
+aTS
+aRW
+bcR
+bjG
+blk
+blF
+bmn
+bnz
+bpw
+bQx
+bll
+aZz
+cpm
+bad
+bah
+baR
+bWi
+aWh
+cmN
+aZy
+aXg
+bZK
+bZF
+csH
+bay
+bKw
+bZH
+bZH
+bZH
+bZH
+aaa
+aaa
+aaa
+aaa
+aUk
+bnl
+bAz
+aWr
+cDN
+bmG
+aUk
+bWr
+cEl
+bWB
+bSE
+bSN
+bSU
+bTa
+bau
+bTn
+bSC
+bRH
+bth
+cOd
+ceg
+brl
+cef
+cnZ
+bRI
+bTA
+bVO
+cfN
+cPx
+ckd
+cGe
+bMj
+bLI
+ckj
+cFL
+cnX
+bCh
+aaa
+aaa
+cpz
+cpz
+cpz
+cAD
+cCl
+cCw
+cpz
+cpz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(106,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+adj
+aeC
+afv
+adF
+agM
+adj
+aaa
+aaU
+aaU
+aaj
+aaj
+aaj
+aaj
+aaj
+aaj
+aau
+ahn
+ajH
+ajY
+alB
+amj
+ape
+aal
+ciu
+aal
+ape
+amj
+aCM
+bHd
+afX
+atc
+auW
+avL
+axw
+cqH
+bhN
+aIC
+aDP
+aPs
+aGh
+csn
+atc
+aVZ
+aXL
+cqN
+aYq
+aYt
+baH
+bcR
+aPr
+biC
+beJ
+bft
+bdg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aQL
+aTS
+aRW
+bcR
+bjX
+cpn
+blJ
+bmZ
+bnA
+bpy
+bQI
+bll
+aZA
+aZI
+bae
+chP
+baS
+bWj
+baS
+bbr
+aZy
+bJC
+bZF
+bZF
+cjx
+bay
+baX
+bZH
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aUk
+bwK
+bAF
+aXm
+cDN
+bmG
+aUk
+bWc
+bWo
+bWC
+bSE
+bYV
+cEC
+cEL
+bvn
+bSC
+bSC
+bRJ
+bth
+bTB
+cek
+csK
+cKk
+cKl
+cKm
+cKn
+cKo
+bYI
+cPP
+bIq
+cqZ
+bMj
+bLW
+cFF
+cFM
+cnY
+bCh
+aaa
+aaa
+cpz
+cvU
+ctO
+cAE
+bNs
+cLF
+bNA
+cpz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(107,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+adj
+aeR
+afx
+aga
+afI
+adj
+aaa
+aaa
+aaU
+aaj
+aaE
+acn
+acn
+acn
+acn
+afw
+acn
+ajN
+amS
+amS
+aoX
+amS
+amS
+aDE
+amS
+amS
+aKR
+apY
+bRa
+cjO
+atc
+aVr
+avM
+avL
+csw
+aBK
+aID
+aLX
+aSJ
+aHZ
+atc
+atc
+ayd
+ayd
+ayd
+chJ
+aOo
+baM
+bcR
+aPr
+biC
+beJ
+bft
+bdg
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aQL
+aTS
+aRW
+bcR
+bku
+bll
+blK
+bmn
+bnD
+bpC
+bQx
+bll
+aZC
+aZN
+bCS
+bak
+bAI
+bWk
+cdE
+bbs
+aZy
+bKR
+bRZ
+bZF
+cCJ
+baE
+bZS
+bZS
+bGI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aUk
+bwM
+bAN
+aXs
+cDN
+bmG
+aUk
+bWb
+cEm
+bWL
+bSE
+bSP
+cED
+bTb
+bCX
+bSC
+brk
+bsp
+bth
+bth
+ceg
+brU
+bSX
+cel
+bCh
+cEQ
+bXn
+bYJ
+bSa
+bSc
+bSg
+bMj
+cFB
+cFG
+cFN
+cvw
+bRI
+aaU
+aaU
+cpz
+bMN
+bMJ
+cAG
+bMJ
+cLG
+bNB
+cpz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(108,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+add
+adC
+adC
+adC
+aeS
+adj
+adj
+agN
+ahL
+ahL
+ahL
+ahL
+afD
+afQ
+age
+age
+agy
+age
+age
+afC
+akK
+akG
+alC
+aal
+ape
+aal
+aDU
+aal
+bGH
+aal
+aOH
+aal
+arb
+atc
+atc
+atc
+atc
+csA
+aCa
+aCa
+aId
+aIx
+aJx
+aVc
+ayd
+cfR
+aLl
+ayd
+cDk
+ayd
+ayd
+bGI
+aPw
+bmC
+aYP
+bft
+bcR
+bdg
+bdg
+bdg
+bdg
+bdg
+bdg
+bcR
+bgN
+bgF
+bcR
+bcR
+bcR
+bcR
+bna
+bnP
+bpF
+bQY
+bqK
+aZy
+aZy
+aZy
+bak
+baw
+bWw
+aZy
+aZy
+aZy
+bZH
+bZH
+bZA
+cCK
+bZH
+bZS
+bSB
+bTT
+bTW
+bTW
+bTW
+bTW
+bTW
+bTW
+bmE
+bUu
+aUk
+aXt
+cDK
+aXt
+bwm
+bWa
+cEn
+bWR
+bSH
+bSG
+cij
+bSG
+bFB
+bSC
+bhx
+bqv
+bti
+btY
+cod
+cdZ
+bss
+cem
+bRI
+cER
+cEU
+bSh
+bCh
+bCh
+bSh
+bMj
+cFC
+cFH
+bCh
+bCh
+cpz
+bMl
+bMl
+cpz
+bMO
+bMJ
+cAH
+cvy
+cLH
+bNC
+ctD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(109,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+adf
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+adM
+aaj
+aaI
+ami
+akX
+akX
+akX
+akX
+aqV
+arS
+akX
+akX
+akX
+akX
+avN
+awy
+avN
+avN
+avN
+aBk
+avN
+aDa
+aDS
+aDS
+aDS
+aBy
+cwf
+cBc
+cBu
+cBE
+cKD
+cBo
+cBZ
+cCb
+cCe
+cCe
+cCe
+cDl
+cCn
+cCp
+cCq
+aRb
+bjU
+aYQ
+bgc
+bgd
+bgd
+bgG
+bgd
+bgd
+bgd
+bgd
+boo
+bTw
+bgE
+coO
+bkx
+blo
+blo
+bnc
+bnR
+bpG
+bQx
+bqY
+brM
+bwr
+bkx
+brI
+blo
+bWE
+blo
+bGr
+bIZ
+bVI
+blo
+aYH
+cCL
+aYH
+bGI
+bTt
+bGI
+but
+but
+but
+but
+but
+but
+bUq
+bUv
+bUq
+baL
+cDO
+bbl
+bbA
+bbW
+cEo
+bbl
+coB
+bbl
+cEF
+buD
+bFC
+bqc
+brm
+bst
+bst
+bst
+csj
+bst
+bst
+coV
+bCh
+cES
+cEV
+cgf
+cFj
+cFo
+cFr
+cFt
+cFD
+cFI
+cFO
+cFR
+ctD
+bMo
+cob
+cpz
+bMP
+bMJ
+cAK
+bMJ
+cLI
+bND
+cDe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(110,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+adf
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aiM
+aaj
+aaI
+aco
+akX
+alA
+aoe
+apA
+aqX
+arU
+apA
+atN
+auv
+akX
+avO
+awz
+ayp
+azb
+avN
+aBl
+aBP
+aDc
+aBQ
+aEJ
+aFM
+azP
+aFf
+aIu
+aKJ
+aKJ
+cKE
+aKJ
+aKJ
+aKJ
+aKJ
+aKJ
+aKJ
+aXK
+aYw
+aYV
+baJ
+bcf
+bke
+bmq
+bmL
+bgu
+beJ
+beJ
+beJ
+beJ
+beJ
+beJ
+beJ
+biS
+bjR
+cCG
+bUw
+cCG
+cCG
+bpx
+cCG
+cCH
+bRf
+cCG
+cCH
+cCG
+bUw
+bVJ
+cCG
+bWF
+cCG
+cfz
+cCG
+cCG
+cCH
+cCG
+cCM
+cCG
+cCN
+coM
+cpr
+cpx
+cpx
+cpx
+cpx
+cpx
+cpx
+crV
+crY
+crZ
+csJ
+cDP
+bUI
+bUI
+bVB
+cEp
+bUI
+cqe
+cqg
+cEG
+bdv
+bqr
+bqe
+brq
+bst
+bst
+bVP
+cKh
+btj
+btj
+bAo
+cuW
+cET
+cEW
+cka
+bQk
+bQk
+bQu
+cFu
+cFE
+cFJ
+bQL
+cFS
+cFT
+cFU
+bNg
+bNh
+bNj
+bNw
+cPc
+cCm
+cCx
+cDb
+cDf
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(111,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+adf
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aiM
+aam
+aaI
+acw
+akX
+alE
+aoi
+apD
+arf
+arZ
+atp
+atT
+aux
+akX
+avR
+awC
+ayq
+azp
+avN
+aBo
+aBQ
+aDd
+aBQ
+aEK
+aFM
+azQ
+aFi
+cBe
+aEv
+aEv
+aEv
+aEv
+aEv
+aEv
+aEv
+aEv
+aEv
+aMH
+aMS
+aNI
+aOS
+aQD
+bkP
+aZJ
+beJ
+beJ
+beJ
+beJ
+beJ
+btG
+beJ
+beJ
+beJ
+biW
+bqd
+bcf
+bwU
+bcf
+bcf
+bCi
+bcf
+bCp
+bcf
+bcf
+bCs
+bcf
+bwU
+bCD
+bcf
+bcf
+bcf
+bGt
+bJB
+blB
+cCI
+blB
+blB
+bRg
+bWH
+bWM
+bZr
+cde
+cmF
+crk
+cmF
+cmF
+cwU
+cAT
+cBA
+cCT
+cCU
+cCY
+cCU
+cCU
+cCZ
+cDQ
+cEq
+cID
+bZm
+cEH
+bdv
+bqr
+cyy
+cyA
+bst
+cyE
+cyK
+buJ
+bst
+bst
+bAq
+cuX
+bFJ
+cEX
+clv
+bWD
+cqb
+bKy
+cFv
+bJI
+bJI
+bLL
+bMa
+ctF
+coJ
+cpb
+cpz
+bMR
+bNx
+cBD
+cLA
+cCy
+cLP
+cLT
+cLU
+aaa
+aaa
+aaa
+aaa
+aTd
+aaa
+abp
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(112,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+adf
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aiM
+aap
+abd
+abT
+akX
+alO
+aok
+akX
+arh
+asb
+akX
+atY
+auB
+akX
+avS
+awC
+ayr
+azA
+aAf
+aBr
+aBR
+aDf
+aDZ
+aEN
+aFM
+aAe
+aFC
+cAW
+aHk
+aIi
+aHQ
+aHQ
+aHQ
+aJT
+aHQ
+aHQ
+aHQ
+aHQ
+aOz
+aHt
+bGI
+bGI
+bkU
+aZJ
+bGI
+bGI
+bGI
+crr
+bjj
+bjj
+bjj
+bjj
+bIP
+bje
+bqn
+bjj
+bkx
+blC
+blO
+bnr
+blO
+blO
+blO
+baf
+bRs
+bxk
+bkx
+bjj
+bFA
+bjj
+bIP
+bGA
+bGE
+bLg
+bMG
+bPR
+bGE
+bRy
+bSA
+bTw
+cwW
+bTY
+bTY
+bTY
+bTY
+bTY
+bTY
+cwX
+cqY
+bUE
+baO
+cDR
+bFc
+bFc
+cDa
+cEr
+bPQ
+cIE
+cEz
+cEI
+bXi
+bga
+caQ
+bXC
+bvK
+bHI
+bYK
+buK
+bst
+bst
+bKi
+bPP
+bQa
+cEY
+cqW
+bJg
+bQl
+bYG
+cFw
+bpa
+bQn
+bQC
+cmZ
+cpz
+cvs
+cwg
+cpz
+bMl
+bNy
+cBG
+cpz
+cCz
+cpz
+cpz
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(113,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+adf
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+adM
+aaq
+aaI
+acF
+akX
+akX
+akX
+akX
+arj
+ase
+akX
+akX
+akX
+akX
+avX
+awF
+ayt
+azC
+avN
+aBt
+aBZ
+aDd
+aEd
+aEO
+aFM
+aAj
+aIk
+cBf
+cBv
+aIj
+aHs
+aHs
+aHs
+aHs
+aHs
+aHs
+aHs
+aHt
+aNp
+aHt
+aPb
+bGI
+blm
+baq
+bGI
+aPb
+bGI
+bgL
+bGI
+bdg
+bdg
+bdg
+bGI
+bjh
+bqF
+bGI
+aWB
+bsl
+cjJ
+aXH
+cbA
+cbH
+ckZ
+aZv
+bRP
+aWB
+aWB
+bDN
+cpv
+bDN
+bGI
+bdg
+bdg
+bGI
+bGI
+bGI
+bGI
+bRB
+bGI
+bTt
+bGI
+but
+but
+but
+but
+but
+but
+bUq
+bUv
+bUq
+baQ
+cuR
+cvl
+cvl
+cKe
+cNh
+cNw
+cIF
+ccp
+bqo
+buF
+bpA
+bqe
+ceY
+bwf
+bHJ
+cbr
+cDE
+cDG
+cEa
+buS
+buS
+bFX
+cEZ
+bAs
+ayY
+baT
+baT
+cFx
+bpb
+bqO
+bru
+coY
+cpz
+bMr
+cwh
+cwl
+bNm
+bNz
+cBT
+cpz
+cCD
+cDc
+cpz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(114,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+adh
+adC
+adC
+adC
+afb
+adj
+adj
+agO
+adj
+adj
+adj
+adM
+aat
+abf
+acF
+acI
+aem
+aex
+aht
+aRz
+brB
+ank
+arJ
+amo
+acF
+avN
+avN
+avN
+avN
+avN
+aBw
+aBZ
+aDo
+aDo
+aEP
+aFM
+aAj
+aFC
+cBg
+aIj
+aHs
+aHs
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aHY
+aHY
+aHY
+aHY
+aHY
+bln
+bmy
+aNT
+aNT
+aNT
+aNT
+aNT
+aaa
+aaa
+aaU
+aSt
+bjk
+bqG
+aWB
+aWB
+aWK
+aXo
+aXI
+aYn
+cda
+aZj
+aZw
+bRQ
+aZQ
+aWB
+aWB
+bGI
+bGI
+bGI
+aaU
+aaU
+aaU
+bGI
+aSV
+bGI
+bRW
+bgY
+cgC
+bTT
+bTZ
+bTZ
+bTZ
+bTZ
+bTZ
+bTZ
+bUr
+bUz
+bUq
+bbh
+cuR
+cvm
+cDn
+cKf
+cNi
+cvl
+cIF
+ccp
+bqr
+bbh
+bpB
+bqm
+bqm
+byw
+bst
+cbr
+cDF
+cDJ
+cKC
+cDh
+cPR
+bFJ
+cFa
+cFk
+cFl
+cFp
+cFp
+cFy
+bbt
+bqP
+brO
+bQB
+ctD
+bMs
+bMA
+cwm
+bMT
+bNG
+cCa
+cCo
+cLL
+cDd
+cwg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(115,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+adj
+adY
+afc
+afy
+agb
+adF
+ahM
+ahM
+aie
+adM
+bHX
+abY
+acF
+acV
+adi
+aeT
+afq
+aij
+cdI
+adi
+adi
+anl
+acF
+aVD
+axP
+aCA
+bGM
+avN
+avN
+aCh
+aDp
+aDp
+avN
+aDS
+aAU
+aFC
+cBh
+aHs
+aHs
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aHY
+aTL
+aVA
+aWi
+aWo
+blr
+aXq
+bbj
+bda
+bol
+aSl
+aNT
+aaa
+aaa
+aaU
+aSt
+bjk
+bqG
+aWB
+aWG
+aWM
+aXr
+aXJ
+aXr
+cjG
+aXr
+aXr
+bRU
+aZR
+aWI
+aWB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bGI
+bGI
+aRy
+bSk
+aRy
+bGI
+bGI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bUq
+bUq
+bUq
+aaa
+cuR
+cvn
+cDo
+cLB
+cNj
+cvl
+cIF
+ccp
+cpH
+bbh
+bqs
+bXz
+bqm
+byD
+bHJ
+cbs
+buS
+cDZ
+czg
+czt
+cPS
+czD
+cFb
+bEl
+bJn
+bQm
+cbf
+bop
+bpe
+bQz
+bXD
+cna
+cvo
+cvO
+cwi
+cwn
+cwu
+cAB
+cCc
+cCr
+cLD
+cuv
+cCr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(116,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aar
+aaU
+aWj
+aaU
+aaU
+aaU
+adj
+adY
+aeR
+adF
+adF
+adF
+adF
+adF
+aig
+adM
+aiZ
+ajL
+acF
+adg
+adi
+aeU
+aeU
+agr
+alD
+anj
+ajJ
+ajJ
+auM
+ayD
+ayD
+ayD
+aIe
+aLg
+aEo
+bnJ
+bHo
+bHq
+bHf
+arw
+aBg
+aGg
+cBh
+aHs
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aHY
+aVg
+aQF
+bba
+bcK
+bmg
+bmD
+bmR
+bnK
+bnL
+aSm
+aNT
+aaa
+aaa
+aaU
+aSt
+bjk
+bqG
+aWB
+aWI
+aWO
+bPz
+bQf
+aYs
+cjZ
+aYs
+aYs
+bSV
+aZS
+aWG
+aWB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bqX
+bSr
+bqX
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+cuR
+cvp
+cFY
+cLE
+cNk
+cuR
+cIF
+ccp
+cJe
+bbh
+brJ
+btv
+bqm
+bzJ
+bst
+cbK
+buS
+bAJ
+czh
+czu
+cPT
+czE
+cFc
+bEl
+aJD
+bbx
+bbZ
+boq
+bpg
+bpg
+bAy
+bQJ
+cpz
+bMu
+bMC
+cwo
+bMU
+bNc
+cCg
+cCr
+cLD
+cuv
+cCr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(117,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+abp
+aar
+aTd
+aWj
+abp
+aaa
+aaU
+adj
+adY
+afc
+afz
+agk
+agR
+afz
+ahR
+afz
+aiW
+ajp
+ajR
+agj
+agq
+agq
+agq
+acH
+ags
+alK
+agq
+anR
+apf
+auQ
+azz
+azz
+azz
+azz
+azz
+aUA
+boH
+bDZ
+bEF
+bHx
+bHk
+aBh
+aGx
+cBh
+aHs
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aHY
+aIv
+aIv
+aJW
+aHY
+aRQ
+aYe
+aNT
+aUO
+aQU
+aSn
+aNT
+aaa
+aaa
+aaU
+aSt
+bjk
+bqG
+aWB
+aWI
+aWP
+aXy
+aXN
+aXy
+ckg
+aXy
+aXy
+aXy
+aZZ
+bag
+aWB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bqX
+bSs
+bqX
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+cuR
+cuR
+cFZ
+cLJ
+cNl
+cuR
+cIG
+ccw
+csM
+cyo
+bBs
+blU
+bqz
+bAD
+bIi
+bBP
+buS
+caR
+czi
+cKj
+buS
+bFY
+cEX
+bIU
+aJE
+bbz
+bjx
+bot
+bot
+bjx
+bAH
+cRm
+cpz
+cvs
+cwj
+cwp
+cwT
+cpz
+cCi
+cCr
+cLM
+cvf
+cCr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(118,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aar
+aaU
+aWj
+aaU
+aaU
+aaU
+adj
+adY
+aeR
+afB
+agp
+agS
+agp
+agp
+agp
+aiX
+ajr
+ajW
+agn
+agw
+ajJ
+ahw
+anQ
+aUS
+ckG
+cwk
+aBm
+aoh
+acF
+arl
+ayX
+aDj
+bGN
+bGR
+bHb
+bvd
+bHq
+bHf
+bHf
+arw
+aBi
+aGx
+cBh
+aHs
+aaU
+aaa
+aaa
+aEQ
+aEQ
+aEQ
+aEQ
+aEQ
+aHY
+aHY
+aHY
+aHY
+aHY
+aTb
+aWv
+aNT
+aNT
+aNT
+aNT
+aNT
+aSt
+aSt
+aSt
+aSt
+bjk
+bqG
+aWB
+aWB
+aWQ
+aXz
+aXU
+aYu
+ckY
+aZn
+aZx
+bEs
+bac
+aWB
+aWB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bqX
+bSs
+bqX
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+cuR
+cGa
+cuR
+cNm
+cuR
+cIH
+cgv
+coE
+bxM
+bDd
+bXt
+brH
+bAE
+bIL
+cdX
+buS
+buS
+buS
+buS
+buS
+cnz
+cEZ
+bJa
+aKZ
+bbB
+blv
+czK
+bph
+bqR
+bAM
+cvx
+bMk
+bMw
+bMD
+bMv
+bMv
+cvs
+cCj
+cCu
+cLN
+cLS
+cCr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(119,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+adj
+adY
+aeR
+afI
+agt
+agV
+adF
+adF
+aih
+adM
+adm
+aeH
+acF
+adJ
+adi
+afq
+agY
+aij
+brB
+adi
+amf
+aoc
+asJ
+asJ
+asJ
+asJ
+asJ
+asJ
+asJ
+bvt
+aDv
+bHu
+bHy
+bHB
+aAj
+aGx
+cBh
+aHs
+aaU
+aaa
+aaa
+aEQ
+aFw
+aDR
+aDM
+aLV
+aDN
+aDN
+aDN
+aDN
+aDg
+aUM
+bfl
+aOa
+aPI
+aPI
+aPI
+aPI
+aPI
+aTn
+aPI
+aPI
+bjp
+bqW
+aUh
+aWB
+aWB
+aWB
+aXV
+aYv
+aYN
+aWB
+aWB
+aWB
+aWB
+aWB
+aye
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bqX
+bSs
+bqX
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+cuR
+cGf
+cLK
+cNn
+cuR
+cIF
+cgB
+bqr
+bbh
+bDm
+bFE
+bIf
+bIt
+bJd
+bXq
+cmK
+cws
+czv
+cmU
+crg
+cvR
+cFd
+bEl
+aMm
+bbC
+blw
+blw
+blw
+blw
+bAT
+cez
+bMl
+bMv
+bMv
+bMw
+bMv
+cpz
+cuc
+cpz
+cvs
+cCl
+cCu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(120,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaU
+aaa
+adj
+adM
+adM
+afe
+afL
+adM
+adM
+ahQ
+ahV
+aiI
+adM
+adt
+aeO
+acF
+aek
+aes
+afr
+ahi
+ail
+ckH
+alr
+avn
+apb
+asJ
+atB
+aBU
+aDk
+bGO
+bGS
+asJ
+aDz
+ark
+bHv
+aPF
+aPF
+aJA
+aGx
+cBh
+aHs
+aaU
+aaa
+aaa
+aEV
+aFy
+aGd
+aDM
+aMg
+aIa
+aGE
+aGE
+aGE
+aLi
+aUT
+baI
+aOb
+aPK
+aPK
+aPK
+aPK
+aPK
+aVm
+btR
+aPK
+bjH
+brc
+bkV
+aVv
+bkR
+aWB
+aXW
+aWB
+aZd
+aWB
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+bqX
+bSs
+bqX
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+cuR
+cGg
+cLO
+cuR
+cuR
+cIF
+cgB
+bqx
+bbh
+bPw
+bqz
+bqz
+bzA
+bRT
+ciQ
+col
+cxh
+czB
+cnk
+bqz
+cKH
+cFe
+cFk
+cFm
+cFq
+cFs
+cFz
+bqt
+blx
+bBn
+ceA
+bMl
+bMw
+bMv
+bNi
+bMv
+coK
+bMv
+bNu
+bMl
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(121,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaU
+adj
+adj
+adP
+aep
+aeR
+afI
+agF
+adM
+adM
+adM
+adM
+adM
+adt
+aeO
+acF
+ale
+ale
+ale
+ale
+aru
+asf
+ale
+ale
+ale
+ale
+azL
+aCj
+aDl
+aIh
+aLB
+aVE
+byR
+bHr
+bHv
+aPF
+bGp
+aAj
+aGS
+cBh
+aHs
+aaU
+aaa
+aaa
+aEV
+aFz
+aGe
+aDM
+aUK
+aGe
+alZ
+alZ
+alZ
+alZ
+aHU
+aHU
+alZ
+alZ
+alZ
+aSt
+aSt
+aSt
+bjA
+aVv
+cho
+aWq
+bro
+bwa
+bwY
+bwY
+bwY
+bCl
+bCn
+aWd
+aSt
+aaU
+bun
+bxl
+awq
+awq
+awq
+awq
+awq
+awq
+awq
+aOe
+aQv
+aaU
+bqX
+bSt
+bqX
+aaU
+cgI
+cgN
+cgN
+cgN
+cgN
+aPg
+aPg
+cgP
+aaU
+aaU
+aaU
+aaU
+cuR
+cGh
+cLO
+cuR
+cvL
+cII
+cgB
+bqr
+bbh
+bPw
+bqz
+bqq
+bzG
+bFZ
+ckp
+com
+cyu
+czF
+cDM
+crn
+cxf
+cFf
+bEl
+aOF
+bbE
+coX
+bbE
+bbE
+bqS
+bQy
+ceB
+bMn
+bMv
+bMv
+bML
+bMv
+bMv
+bMv
+bML
+bMl
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(122,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaU
+adj
+adF
+adF
+aeq
+afj
+afN
+adF
+adF
+adj
+aaU
+aaU
+act
+abQ
+aeX
+abU
+ale
+alQ
+aol
+ale
+arz
+ash
+ale
+aua
+auF
+ale
+aAL
+aCw
+aPi
+aPi
+bGT
+asJ
+bHj
+bHs
+bHw
+aPF
+bGs
+aAj
+aGx
+cBh
+aHs
+aaU
+aaa
+aaa
+aEQ
+aHn
+aWt
+aWz
+aWW
+aIc
+alZ
+alZ
+aog
+aog
+axV
+axV
+aog
+aog
+alZ
+bvv
+aUh
+cjM
+aVv
+aVv
+bue
+bue
+bxf
+bBY
+bue
+bue
+bue
+aXY
+bCo
+aWd
+cho
+aaU
+bup
+ajO
+ajO
+ajO
+ajO
+ajO
+ajO
+ajO
+ajO
+aQa
+ajO
+ajO
+aRy
+bSO
+aRy
+bfh
+cgJ
+bye
+cmI
+bXa
+bfh
+bfh
+bfh
+cgJ
+aaU
+aaa
+aaa
+aaa
+cuR
+cHZ
+cLQ
+cuR
+bdC
+cIJ
+cgB
+bqr
+bbh
+bPw
+bqz
+brK
+bCf
+bTC
+ckD
+cpI
+cyF
+czM
+cGI
+cHW
+cxg
+cFf
+bJb
+bJJ
+bKh
+bKz
+bKS
+bLq
+bKz
+bLM
+bKz
+bKz
+bMw
+bMv
+bMv
+bMv
+bMl
+bMl
+bMl
+bMl
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(123,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaU
+adj
+adF
+adX
+aeu
+afk
+afP
+agK
+adF
+adj
+aaa
+aaU
+act
+adv
+aeO
+afW
+ale
+alT
+aom
+apN
+arA
+asn
+atr
+aud
+auG
+ale
+aAO
+asJ
+asJ
+asJ
+asJ
+asJ
+bHk
+bHk
+bHk
+aPF
+aHt
+aKc
+aGx
+cBi
+aHt
+aDM
+aDM
+aDM
+aEQ
+aDM
+aDM
+aDM
+aXa
+bdb
+alZ
+aog
+apB
+aFc
+bfj
+axV
+axV
+apB
+aog
+alZ
+aUh
+aUP
+bCC
+aZb
+bue
+bvc
+bys
+bCc
+bGZ
+bNN
+bue
+aXZ
+aXX
+aWd
+aZo
+aaU
+avv
+ajO
+aGi
+axI
+axI
+aGi
+ajO
+bFf
+aPE
+baW
+aYZ
+beu
+beK
+bTX
+bWI
+bWN
+cbj
+cdf
+cny
+bXk
+cgL
+cvD
+cvF
+cgJ
+aaU
+aaa
+aaa
+aaa
+aRv
+aaa
+aaa
+bbh
+bdD
+cIK
+cgB
+bqr
+bcT
+bPw
+bqz
+bsL
+bzG
+bFG
+clc
+bqz
+bqz
+bqz
+bqz
+bqz
+cNJ
+cAm
+cAt
+cAv
+cFg
+bKz
+bKT
+bLr
+bKT
+bLN
+bMb
+bKz
+bMv
+bMw
+bMv
+bMV
+bMl
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(124,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaU
+adj
+adF
+adX
+aey
+adM
+adY
+agK
+adF
+adj
+aaa
+aac
+acE
+adU
+aeO
+afW
+ale
+alV
+aon
+apO
+arC
+aso
+apO
+aon
+auJ
+ale
+aBz
+aEU
+aGD
+aJF
+aJF
+aJF
+aJF
+bEr
+bEK
+bEK
+bGu
+bHi
+aHa
+cBj
+cBw
+cBF
+cBF
+cBF
+cBF
+cBF
+cCf
+aHG
+aXb
+aVC
+alZ
+aog
+apG
+aFN
+axV
+aLO
+axV
+aRL
+aog
+alZ
+aUh
+aUQ
+aVM
+aVN
+bue
+bvg
+byE
+bCu
+bHa
+bOB
+bue
+aYd
+aYx
+aWd
+aZo
+aaU
+avv
+ajO
+bCv
+axI
+aNh
+aNz
+bDw
+bFv
+bHp
+bLm
+ajO
+ajO
+aRy
+bUi
+aRy
+bfh
+bfh
+cdh
+bzN
+bYT
+bYS
+cvE
+bYS
+cgJ
+bfh
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+bbh
+bdF
+cIL
+ciF
+aYG
+bdu
+biU
+brF
+bsN
+bCg
+bHC
+cmB
+bqz
+cyG
+czP
+bBQ
+cKi
+cNV
+cFf
+bJc
+bJL
+cHO
+bKz
+bKU
+bKT
+cIg
+cIj
+bMc
+bKz
+bMv
+bME
+bMv
+bMv
+bMl
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(125,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaU
+adj
+adF
+adX
+aez
+afu
+afT
+agK
+adF
+adj
+aaU
+abv
+acP
+aef
+afg
+agf
+ale
+ale
+ale
+ale
+arD
+asq
+ale
+ale
+ale
+ale
+aBH
+bGz
+ayu
+aim
+aim
+aim
+aim
+aim
+aim
+aim
+aEh
+aEq
+aHp
+aIJ
+aLc
+aQS
+aQS
+aQS
+aQS
+aQS
+aWu
+aWA
+aXd
+bre
+alZ
+apB
+axV
+aGp
+axV
+csC
+axV
+axV
+apB
+alZ
+aSt
+aSt
+cho
+aSt
+bue
+bue
+byF
+bCw
+bue
+bOC
+bue
+cho
+aSt
+ckI
+aSt
+brs
+avv
+ajO
+avY
+ajO
+ajO
+aOI
+bDU
+bGg
+bIF
+bLz
+bNe
+ajO
+bQb
+bUj
+aTh
+bfh
+brb
+bzN
+bzN
+bYU
+cgM
+bYY
+bZb
+cgJ
+bfh
+bfh
+bfh
+bfh
+bfh
+brs
+brs
+bcT
+bdD
+cIM
+ciW
+bqC
+bdu
+bXt
+csi
+bsP
+bAC
+bHC
+bIM
+bqz
+cyN
+czW
+cFX
+bRI
+cyB
+cFh
+bJe
+cRb
+cHP
+bKA
+bKV
+bLs
+czL
+cIk
+bMd
+bKz
+bMl
+bMl
+bMl
+bMl
+bMl
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(126,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaU
+adj
+adF
+adF
+aeA
+aeA
+aeA
+adF
+adF
+adj
+aaa
+chH
+acS
+aen
+afi
+agg
+ahj
+ajf
+ajf
+ajf
+aAx
+alN
+ano
+ano
+ano
+auZ
+aBL
+bnH
+axh
+anq
+anq
+anq
+anq
+anq
+anq
+anq
+anq
+bID
+aHu
+aGr
+aOJ
+aOT
+aOT
+aOT
+aOU
+aOU
+aOT
+aXP
+aOT
+aOT
+aOJ
+aog
+axV
+bfj
+axV
+axV
+axV
+axV
+aog
+aSG
+aRh
+aRq
+aRq
+aRq
+aRq
+bvz
+byZ
+bCy
+bvz
+bOV
+aRq
+cjD
+bnU
+btw
+bns
+aya
+avy
+alo
+awn
+aIS
+aNo
+aJp
+bDW
+bGB
+aHq
+bki
+bPp
+bPU
+bQi
+bUU
+bWJ
+bWP
+cbV
+bzR
+cvB
+bOz
+cwd
+bYZ
+bZc
+cgQ
+bZe
+bZe
+bZe
+bZe
+cjr
+brL
+brL
+bVW
+bVW
+cIN
+cjV
+bdu
+bdu
+bXu
+bqz
+bsQ
+bCY
+bHE
+bqz
+bqz
+bMj
+cAc
+cov
+bMj
+cyC
+cFf
+btp
+bJN
+cHO
+bKz
+bKW
+bLt
+cso
+cIl
+bMe
+bKz
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(127,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaU
+adj
+adj
+adF
+adF
+adF
+adF
+adF
+adj
+adj
+aaa
+abz
+acX
+agh
+agB
+aim
+aim
+aim
+aim
+aim
+aqs
+aqu
+aim
+aim
+awc
+axx
+ayN
+aAA
+aBM
+aCq
+aDx
+apy
+arV
+apy
+axg
+ceu
+anq
+bID
+aHu
+aGr
+aOT
+aPS
+aSb
+aTi
+aUd
+aTi
+aWs
+aYb
+ban
+bdd
+aOJ
+aog
+ayK
+bfk
+axV
+axV
+bfj
+axV
+apB
+aSH
+aSt
+aSt
+aTs
+cho
+aSt
+bue
+bzD
+bCE
+bue
+aSt
+aSt
+aSt
+aSt
+cpG
+aSt
+brs
+avv
+ajO
+axZ
+ajO
+ajO
+aPf
+bEZ
+bGD
+bJk
+bLC
+cRf
+bPV
+bQT
+bVq
+cRh
+bfh
+cbY
+cdn
+cpf
+bYU
+cgM
+bYY
+bRx
+cgJ
+bfh
+bfh
+bfh
+bfh
+bfh
+brs
+brs
+bcT
+cIv
+cIO
+cgB
+bTv
+bcT
+bQE
+bqz
+bqz
+bqz
+bJf
+bqz
+caj
+cdY
+cAo
+cdY
+cup
+cyH
+cFi
+bMF
+bNF
+cHQ
+bKz
+bKT
+bLr
+bLt
+cIm
+bMf
+bKz
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(128,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaU
+adj
+adj
+adj
+adj
+adj
+adj
+adj
+aaU
+aaa
+acb
+aft
+agz
+adt
+abB
+afE
+afE
+afE
+afE
+aFu
+aeO
+aeY
+aeY
+aeY
+aeY
+aBN
+awN
+awN
+anq
+anT
+anT
+anT
+anT
+anT
+anT
+cex
+bNp
+aFC
+aFF
+aOU
+aQt
+aSf
+aTj
+aTv
+aTv
+aTv
+aYi
+baU
+bdh
+aOJ
+aog
+aog
+axV
+aHV
+aRr
+axV
+aog
+aog
+aSH
+beG
+aaU
+aaU
+aaU
+aaU
+aRv
+aaU
+aaU
+aRv
+aaU
+aaU
+aaU
+aWj
+aSq
+aWj
+aaU
+avv
+ajO
+aze
+azJ
+aNr
+bCF
+bDw
+bPK
+bKx
+bmv
+ajO
+ajO
+aRy
+bVC
+aRy
+bfh
+bfh
+bBR
+cqf
+bYX
+bYS
+cvE
+bYS
+cgJ
+bfh
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+bbh
+cIw
+bjm
+cgB
+bYW
+bcT
+bQE
+bsV
+bsG
+bHD
+bHD
+bMj
+caH
+chV
+cDL
+cox
+cvu
+cyI
+cyL
+cyM
+bJO
+cKp
+cHS
+cHU
+cIb
+cvv
+cIn
+bMg
+bKz
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(129,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+abz
+acP
+aef
+acS
+abC
+ahY
+ajg
+abI
+acQ
+aHr
+aeO
+aeY
+ahB
+aiY
+aeY
+aCk
+aeY
+aeY
+anq
+aof
+cpq
+asa
+aoL
+anT
+anT
+cey
+bRF
+aFC
+aFF
+aOU
+aQu
+aSf
+aTv
+aTv
+aTv
+aTv
+aYj
+ban
+bdl
+aOJ
+alZ
+apB
+aog
+aog
+aog
+aog
+apB
+alZ
+aSH
+aaa
+aaa
+aaa
+aaa
+aaa
+aWR
+aaa
+aaa
+aWR
+aaa
+aaa
+aaa
+aaU
+aSq
+aaU
+aaa
+avv
+ajO
+aGi
+axI
+aIX
+aGi
+ajO
+cRe
+aZP
+bmH
+aYZ
+bht
+bcY
+bVD
+beC
+cgF
+bfh
+bBS
+cqh
+bXk
+cvC
+cvD
+cvF
+cgJ
+aaU
+aaa
+aaa
+aaa
+aWR
+aaa
+aaa
+bbh
+cIx
+bjm
+cgB
+bbh
+bbh
+bQE
+bsV
+bts
+bHG
+bQp
+bMj
+cbm
+byQ
+bHK
+cGU
+byQ
+bHK
+bIu
+bJh
+byQ
+cHR
+bKC
+bKY
+bKY
+bKY
+cIo
+bKz
+bKz
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(130,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+ade
+aev
+act
+acQ
+aiy
+ajk
+aqR
+ats
+aLb
+aeB
+aeY
+ams
+ahC
+akS
+aCo
+aor
+aeY
+anI
+aoL
+anT
+asa
+bEz
+bES
+bES
+bGv
+ccg
+aFC
+ago
+aOT
+aQz
+aSf
+aTw
+aTv
+aTv
+aTv
+aYM
+bbi
+aOT
+aOT
+aOJ
+aOJ
+aOJ
+bmF
+bnT
+aRJ
+aRJ
+aRJ
+chm
+aaU
+aaU
+aaU
+aaU
+aaa
+btT
+bzE
+btZ
+btT
+aaa
+aaa
+aaa
+aaU
+aSq
+aaU
+aaa
+buv
+ajO
+ajO
+ajO
+ajO
+ajO
+ajO
+ajO
+ajO
+aQa
+ajO
+bmM
+bcZ
+bVF
+bTS
+cgG
+bfh
+bEo
+cqm
+bZa
+bfh
+bfh
+bfh
+cgJ
+aaU
+aaa
+aaa
+aaa
+ctG
+cIh
+ctJ
+ctG
+cIy
+bjm
+cgB
+bbh
+bpm
+bQE
+bsV
+buj
+bpD
+bXL
+bsV
+cyO
+byN
+bzK
+czw
+bDa
+coe
+bIv
+bJi
+bDa
+czw
+byQ
+cPQ
+cIc
+cIc
+cIp
+bxj
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(131,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+acQ
+aiD
+ajq
+arc
+atJ
+bmp
+bGi
+aeY
+ahF
+apx
+akU
+aCp
+aor
+aeY
+anL
+aoU
+anT
+anT
+anT
+anT
+anT
+cex
+bRF
+aFC
+aFF
+aOU
+aQB
+aSf
+aTv
+aTv
+aUU
+aTv
+aYj
+ban
+bdO
+bfv
+bfv
+bfv
+bkW
+bmJ
+bof
+aQJ
+aQJ
+aQJ
+aQJ
+aQJ
+aQJ
+aRZ
+aaU
+aaa
+bvB
+bzF
+bCR
+btT
+btT
+bvB
+btT
+btT
+cjE
+aaU
+aaa
+bux
+bxl
+azq
+aCU
+aCU
+aCU
+aCU
+aCU
+bbu
+aQj
+ajO
+ajO
+bdi
+bWm
+cjI
+cgH
+cgN
+cgO
+cgN
+cgN
+cgN
+aPg
+aPg
+cgK
+aaU
+aTx
+ctG
+ctG
+ctG
+cIi
+cLR
+ctG
+cIy
+bjm
+cmn
+bWZ
+bXj
+bXv
+bsV
+bul
+bpD
+bsV
+bsV
+cyP
+byQ
+bzS
+czw
+bDb
+bBu
+crX
+czI
+bBu
+cKq
+cHT
+cPy
+cId
+bLD
+coA
+bxj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(132,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+ajw
+acQ
+acQ
+acQ
+acQ
+acQ
+ahD
+asr
+aeY
+ahG
+apM
+akV
+aqv
+aor
+aeY
+anP
+aqP
+apz
+asK
+apz
+btk
+cev
+anq
+ccq
+aFC
+aFF
+aOU
+aQI
+aSf
+aTv
+aTv
+aTv
+aTv
+aZa
+bbi
+aOT
+bfy
+bgJ
+bjL
+blD
+bmK
+boi
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aSq
+aaU
+aaa
+btT
+bzM
+bCT
+bHc
+bQt
+bUg
+cch
+ccy
+aSq
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cjH
+aaa
+aaU
+bWv
+aaU
+aaa
+aaU
+aZB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+ctJ
+cuS
+cvq
+cIq
+cMU
+cvr
+cIw
+bjm
+cgB
+bbh
+coC
+bpO
+bpE
+bpE
+bpE
+bpE
+bpE
+cyQ
+byQ
+cCO
+czx
+czC
+czG
+bIw
+czJ
+bBu
+bKm
+byQ
+cHX
+cKP
+cOM
+cOM
+cOM
+cOM
+cOM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(133,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ajw
+ajw
+aki
+alg
+alY
+aoo
+ajw
+bAt
+aeO
+aeY
+aeY
+apZ
+aeY
+aeY
+aeY
+aeY
+anq
+anq
+anq
+anq
+anq
+anq
+anq
+anq
+ccz
+aHv
+aFF
+aOT
+aQP
+aSf
+aTv
+aTv
+aTv
+aTv
+aZc
+bbH
+bdP
+bdP
+bgR
+bdP
+aOJ
+aPN
+bes
+aaU
+aye
+aye
+bQe
+aye
+aaU
+aSq
+aaU
+btT
+btT
+bzP
+bCZ
+bKl
+bQW
+bUp
+cci
+btZ
+aSq
+bgh
+bIY
+bIY
+bRo
+bIY
+bRo
+bIY
+bIY
+bIY
+bIY
+bIY
+bIY
+bRp
+aaa
+aaU
+bWv
+aaU
+aaa
+aaU
+aZB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+ctK
+cuT
+cuT
+cuT
+cMV
+cNo
+cIz
+bWO
+cIX
+bZh
+bZh
+bZh
+bZh
+bZh
+bsV
+bze
+bpD
+cyR
+byQ
+crq
+csp
+bPS
+bQc
+bQj
+bQo
+bJP
+bKn
+byQ
+cHY
+cyS
+cOM
+cOQ
+cOV
+cOZ
+cOM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(134,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+cpB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+apv
+apv
+crP
+ajw
+ajX
+akk
+ali
+amn
+aop
+aqb
+bEI
+bGj
+aff
+ahH
+aqG
+akW
+any
+aos
+apk
+atQ
+atL
+atk
+bBd
+bFN
+atM
+bFR
+aff
+cfe
+aIk
+aIU
+aOX
+aQQ
+aSf
+aTv
+aTv
+aUW
+aTv
+aZc
+aVf
+bdP
+bfF
+bha
+bdP
+abp
+aPN
+bes
+aaU
+aye
+aaU
+aaU
+aaU
+aWj
+aSu
+aRZ
+btT
+bwh
+bAe
+bDD
+bKr
+bRl
+bUL
+btT
+btT
+cjE
+bsz
+aaU
+aaU
+cdV
+cdV
+cdV
+cdV
+cdV
+cdV
+cdV
+cdV
+cdV
+cgi
+cgD
+cdV
+chy
+chN
+bWQ
+bWQ
+cdo
+aPg
+aPg
+cet
+bpL
+bBO
+bBO
+bBO
+bBO
+ctG
+ctG
+cvr
+ctG
+ctG
+ctG
+cIy
+bjW
+cKO
+bZh
+bZk
+bZn
+bZq
+bZh
+cEE
+bpD
+cmL
+cyS
+byQ
+byQ
+byQ
+byQ
+byQ
+byQ
+bKk
+byQ
+byQ
+byQ
+cOD
+cIe
+cON
+cOR
+cOW
+cPa
+cOM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(135,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aYp
+cdc
+crQ
+ajF
+akc
+akm
+alk
+amH
+aoz
+ajw
+agA
+alP
+anA
+aot
+aqK
+avo
+aCs
+aFo
+aot
+aot
+aot
+aot
+bCO
+ahJ
+ahJ
+ahJ
+ahz
+bRF
+aEu
+aJc
+aPa
+aQR
+aSz
+aTz
+aTz
+aVb
+aTz
+aZg
+aVf
+bdW
+bfJ
+bhc
+bdP
+abp
+aPN
+bes
+aaU
+aye
+aaU
+aWj
+aWj
+aWj
+aSv
+aSu
+buk
+bwz
+bAi
+bEe
+bKL
+bRE
+bUY
+ccj
+aSw
+aaW
+bsz
+aaa
+aaa
+aaa
+aye
+aaU
+ceR
+cfa
+cfo
+cfp
+cfC
+cdV
+cgl
+cgR
+chr
+chz
+chX
+cdV
+cdV
+ckJ
+cdV
+cdV
+cdV
+bpN
+bCa
+bSo
+bSv
+cfl
+ctX
+cuU
+cwr
+cIr
+cMW
+ctG
+cIA
+cIP
+cIY
+cJf
+cJg
+cNC
+bZo
+bZs
+bXN
+bJp
+bJp
+cyT
+bPs
+bYC
+bPN
+bPN
+bPN
+bPN
+cAu
+cCh
+cCh
+cCh
+cIa
+cIf
+cOO
+cOS
+cOX
+cPb
+cOY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(136,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+agd
+cdc
+crR
+ajF
+akf
+akh
+ali
+amR
+ajw
+ajw
+bGc
+aeO
+aff
+ahS
+ajQ
+axO
+anX
+aoC
+apl
+ahJ
+cpd
+ahJ
+aqG
+bED
+bET
+bET
+bGw
+chQ
+cAV
+aJc
+aOT
+aQX
+aSE
+aTC
+aUe
+aVf
+aVf
+aSE
+bcd
+bdY
+bfM
+bhg
+bdP
+abp
+aPN
+bey
+aaU
+aye
+aaU
+aaU
+aaU
+aWj
+aWj
+aWj
+btT
+bwB
+bAm
+bEh
+bLo
+bSz
+bVa
+btT
+aaU
+aby
+bsz
+aaa
+aaa
+aaa
+aye
+aaU
+ceR
+cff
+cfo
+cfA
+cfH
+cfW
+cgo
+cgS
+chr
+chA
+chY
+ciY
+ckt
+clY
+cnx
+cpK
+cdV
+bBE
+bCa
+bSp
+bSw
+cfl
+cuu
+cuV
+cwE
+cuV
+cMX
+ctG
+bdG
+cIM
+coa
+cwH
+cyq
+cyw
+cJh
+bZh
+bsY
+btx
+bum
+cyU
+czd
+czj
+blp
+blp
+bme
+bxj
+bxj
+bxj
+bxj
+bxj
+bxj
+bxj
+cOM
+cOM
+cOY
+cOY
+cOY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(137,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aYp
+cdc
+crR
+ajF
+akh
+akh
+alp
+amT
+ajw
+awN
+bGc
+ahI
+aff
+ahW
+ajQ
+ayi
+anX
+aoC
+aqh
+ahJ
+ahJ
+ahJ
+aqG
+bEE
+bFQ
+bFS
+ahz
+aAj
+cAW
+aJC
+aOT
+aRc
+aOT
+aOT
+aOT
+aOU
+aOU
+aOT
+aOT
+bdP
+bdP
+bhl
+bdP
+abp
+aPN
+bes
+aaU
+bQe
+aye
+aye
+aye
+aaU
+aWj
+bnS
+buq
+bwC
+bAr
+bEx
+bMz
+bSD
+bVu
+bvB
+aaU
+aby
+bsz
+aaa
+aaa
+aaa
+aye
+aaU
+ceR
+cfa
+cfo
+cfB
+cfH
+cfW
+cgo
+cgU
+chs
+chs
+chZ
+ciZ
+cku
+cmf
+cnK
+cnK
+cdV
+bBO
+bUB
+bSq
+bVf
+cfm
+cuw
+cuV
+cuV
+cuV
+cMY
+ctG
+bdH
+cIM
+coi
+bZh
+bZh
+bZh
+bZh
+bZh
+bsZ
+bsZ
+bsZ
+bxj
+byU
+czk
+blp
+coy
+cdd
+aYp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(138,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aax
+aax
+aax
+aax
+aax
+apv
+crS
+ajw
+ajw
+akx
+ajw
+anc
+ajw
+axe
+bGc
+aeO
+ahz
+aiw
+ajQ
+alL
+anX
+aoC
+aqi
+ahJ
+ahJ
+azK
+bDo
+bFK
+bFK
+bFT
+aff
+aAj
+cAW
+aJQ
+aHO
+aRB
+aIO
+aTG
+aUj
+aVi
+aWD
+aZh
+aTG
+aaU
+aaU
+cuA
+cuy
+bcc
+bcO
+bes
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aTy
+btT
+btT
+bwL
+bwL
+bEY
+bMB
+bSF
+bVA
+btT
+aaU
+aby
+bsz
+aaa
+aaa
+aaa
+aye
+aaU
+ceR
+cff
+cfp
+cfC
+cfI
+cdV
+cgp
+chb
+cht
+cht
+cia
+cjh
+ckw
+cmg
+cof
+cof
+cpY
+cwq
+cwV
+cAU
+cfh
+cos
+cuF
+cva
+cyp
+cuV
+cMZ
+cvr
+bdG
+cIM
+cgB
+coF
+bcT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+bxj
+byU
+czk
+blp
+ctH
+cdd
+csc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(139,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aar
+aTd
+aWj
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aax
+aaX
+abs
+abs
+abu
+cqV
+csa
+acs
+adu
+adQ
+ajw
+anf
+ajw
+awN
+bGc
+aeO
+ahz
+aiw
+ara
+ays
+anX
+aoC
+arm
+ahJ
+atM
+aAl
+bDO
+bFL
+bFL
+bFU
+ahz
+aAj
+cAW
+aKD
+aLT
+aSo
+aSP
+aTI
+aUl
+aVn
+aWL
+aWL
+bce
+aaa
+aaa
+aaa
+aaU
+brs
+aPR
+cux
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+btZ
+bus
+bwQ
+bBk
+bFa
+bMI
+bSI
+bXp
+btT
+aaU
+abH
+bAA
+bMK
+aZp
+ceq
+cet
+cet
+cet
+cet
+cfr
+cfE
+cfJ
+cdV
+cgu
+chg
+chs
+chB
+cib
+cjs
+cky
+cmE
+cok
+cok
+cdV
+bBO
+bPv
+cBd
+cfi
+cfm
+cuH
+cvb
+cvd
+cvd
+cNa
+cNp
+ber
+cIQ
+cgB
+bqN
+bcT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+bxj
+byU
+czk
+blp
+cqT
+cdd
+aYp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(140,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aax
+aaZ
+abt
+abt
+abK
+cqV
+abN
+abL
+adQ
+adQ
+ajw
+ajw
+ajw
+awN
+bGc
+bGl
+ahA
+aiQ
+ard
+alI
+anX
+aoC
+aqh
+ahJ
+apP
+aAl
+bFL
+cqi
+bEU
+bFV
+bGx
+chW
+cAX
+cBo
+aMw
+aSp
+aTA
+aTK
+aUm
+aVo
+aWN
+aZk
+bcg
+aaa
+aaa
+aaa
+aaU
+brs
+aQp
+cux
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+bud
+buE
+bwS
+bBv
+bFb
+bMS
+bBv
+bXM
+bvB
+bWq
+acY
+adz
+bsz
+aaa
+aaU
+cdt
+ceK
+ceK
+cdV
+cft
+cfF
+cfK
+cgb
+cgw
+chj
+aXF
+chD
+cid
+cju
+ckz
+cmG
+coT
+cpL
+cpZ
+bBO
+cxd
+cBd
+cfj
+cfl
+cuI
+cuV
+cyv
+cuV
+cNb
+cNq
+beW
+cIM
+cgB
+bqV
+bcT
+aaU
+aaa
+aaa
+aaU
+aaU
+aaU
+blp
+btK
+czl
+blp
+cqU
+bBZ
+bme
+bme
+bme
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(141,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aax
+aba
+aax
+aax
+aax
+aax
+aax
+acR
+abL
+adQ
+aQO
+aei
+atZ
+aFv
+bGd
+bGm
+aff
+aiR
+arg
+amu
+amu
+api
+ahJ
+ahJ
+ahJ
+aAl
+bFL
+bFL
+bFO
+bFU
+ahz
+aCm
+aEx
+aGJ
+aNm
+cBK
+aJr
+aTG
+aUn
+aVp
+aWT
+aZl
+aTG
+aaU
+aaU
+aaU
+aaU
+abp
+aQq
+bes
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aTy
+btT
+btT
+bwT
+bBB
+bGb
+bMW
+bTF
+bXM
+btT
+btT
+btT
+cjF
+bMX
+cdt
+cdt
+cdt
+ceL
+ceT
+cdV
+cfu
+cdV
+cdV
+cdV
+cdV
+chk
+chu
+cdV
+cdV
+cdV
+ckA
+cmY
+cdV
+cdV
+cdV
+bBO
+bSm
+cBk
+cfk
+cfl
+cuJ
+cvc
+cyz
+cuV
+cNc
+cNr
+byT
+cIR
+coj
+byT
+bzY
+aaU
+aaa
+aaa
+blp
+bme
+bme
+blp
+btL
+czm
+bzq
+bui
+clZ
+buo
+buo
+bme
+bme
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(142,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aax
+aax
+aea
+adQ
+adQ
+aer
+auc
+apv
+agJ
+amp
+aff
+aiS
+art
+amv
+akR
+apj
+atA
+atK
+aqg
+aCO
+bFM
+bFP
+bFM
+bFW
+aff
+azP
+azP
+aGQ
+aNv
+cBL
+bhR
+aTM
+aTM
+aTG
+aTG
+aTG
+aTG
+aaa
+aaa
+aaa
+aaU
+abp
+aQr
+bes
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+bnS
+buq
+bwZ
+bBC
+bGk
+bNf
+bBv
+bXM
+ccn
+ccA
+ccy
+aTl
+bsz
+cdG
+cer
+cew
+ceM
+ceV
+asU
+arB
+asw
+atb
+avl
+aMa
+crv
+aOE
+aQc
+clz
+aMa
+aQd
+cks
+crv
+crx
+aeI
+bBO
+bSn
+cBl
+bSn
+cfl
+cuK
+cuV
+cyz
+cuV
+cNd
+cNs
+beY
+cIM
+cgB
+btl
+bBl
+aaU
+aaa
+aaa
+bme
+bnY
+bpT
+bqL
+btL
+czn
+czy
+bui
+bui
+bui
+bui
+bui
+bme
+bme
+bme
+bme
+bme
+bme
+bme
+bOn
+bme
+bOo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(143,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aax
+afO
+ala
+abL
+aet
+aeK
+afU
+ahe
+aiJ
+ahz
+ahz
+arI
+ahz
+ahz
+aff
+aff
+aff
+aff
+aff
+ahz
+ahz
+ahz
+aff
+aff
+aka
+aka
+aCe
+aNB
+aDh
+aka
+aql
+aql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abp
+aQr
+beD
+cuy
+cuy
+cuz
+aaa
+aaa
+aaU
+aWj
+aaU
+btT
+bxa
+bBF
+bGy
+bNk
+bUc
+bXM
+cco
+ccE
+btZ
+aTl
+bsz
+cdU
+ces
+ces
+ceN
+ceW
+cJv
+mkx
+cJw
+cJN
+asR
+awe
+asS
+asS
+asS
+asS
+avC
+aQe
+ckx
+cqP
+crl
+csQ
+cqs
+cqG
+crt
+cdm
+ctl
+cuL
+cvd
+cAp
+cvd
+cNe
+cNt
+beZ
+cIS
+coz
+bty
+bBl
+aaU
+aaU
+aaU
+bme
+bog
+bpT
+bqM
+btL
+czm
+bui
+cOw
+bui
+bui
+bui
+bui
+bui
+bui
+bui
+bNW
+bOa
+bOe
+bOi
+cnd
+bOl
+bOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(144,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adn
+ahZ
+amP
+aea
+adQ
+ayk
+aGZ
+aKn
+bEG
+bEX
+bEX
+asg
+bEX
+bEX
+aXv
+bEM
+bEO
+bEP
+amE
+asp
+auh
+ayG
+aNX
+aEA
+bvi
+bvF
+bvL
+aXn
+cBM
+bDS
+bER
+aql
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aVs
+aVs
+aUq
+bmO
+aUq
+aVs
+aVs
+cuA
+cuz
+aaa
+aaU
+aWj
+aaU
+btT
+btT
+bBH
+btT
+bNl
+bvB
+bXM
+btT
+btT
+btT
+cjF
+bMX
+cdt
+cdt
+cdt
+ceO
+ceX
+aeI
+aQx
+asD
+asR
+asR
+avE
+avQ
+avQ
+avQ
+avQ
+bem
+aQe
+asR
+aSK
+aSr
+aeI
+bxz
+bwP
+cBn
+cBH
+ctE
+cuM
+cvg
+cBa
+cJk
+cNf
+cNu
+bSy
+cIT
+coD
+bub
+bIo
+aaU
+cNK
+aaU
+bme
+bom
+bpT
+bqU
+btL
+czo
+bPO
+bPT
+bQd
+bQd
+bQr
+bJo
+bNQ
+bNQ
+bNQ
+bNX
+bOa
+bOe
+bOg
+bui
+cnf
+bme
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(145,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adq
+aib
+asy
+aea
+ann
+azG
+aag
+ael
+agQ
+aje
+akM
+anz
+akM
+akM
+apq
+aqZ
+avT
+avT
+aCN
+avT
+avT
+aAb
+avT
+aCN
+avT
+avT
+aHl
+aNY
+cBN
+cbZ
+bEa
+amy
+aaa
+aaa
+aaa
+aaa
+aaa
+aVs
+aVs
+bjO
+bmk
+bmU
+bok
+bpr
+aVs
+aVs
+cuA
+cuy
+cuz
+aWj
+aaU
+aaa
+btT
+bBV
+btT
+bNn
+btT
+bYf
+btT
+aaU
+aVt
+adN
+bsz
+aaa
+aaU
+cdt
+ceP
+ceK
+aeI
+arN
+arF
+asS
+auC
+avH
+axM
+axM
+axM
+axM
+aPh
+aQk
+asS
+aSK
+aTW
+aVB
+cqu
+bwR
+cBx
+cBI
+ctG
+ctG
+cvh
+cBm
+cJy
+cNg
+cNs
+cIB
+cIM
+bXX
+bty
+bBl
+aaU
+bIm
+aaU
+blp
+bme
+bme
+brv
+btL
+czp
+bAW
+bBm
+bui
+bui
+bQs
+bNH
+bme
+bme
+bme
+bme
+bOb
+bme
+bOh
+cne
+bOm
+bOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(146,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adn
+ajh
+amP
+aea
+adQ
+ayk
+aGZ
+aKn
+alR
+bqQ
+aox
+anD
+aox
+aox
+aFp
+aHh
+aJS
+aMy
+axG
+aJS
+aHh
+aHh
+aHh
+aCz
+aHh
+aHh
+cBq
+aRT
+cBO
+cca
+bEa
+amy
+aaU
+aaU
+aaU
+aaU
+aaU
+aVs
+bhq
+bjY
+bka
+bmV
+bka
+bps
+ang
+ang
+ang
+ang
+cuB
+aWj
+aaU
+aaa
+btT
+bBX
+btT
+btZ
+btT
+aaa
+aaU
+aaU
+aTl
+qeq
+bPh
+guK
+hXk
+hXk
+cJp
+hXk
+hXk
+tjb
+asx
+asS
+auD
+awX
+axQ
+beH
+axQ
+aZt
+avI
+beI
+asS
+aSL
+aTZ
+aWV
+cqv
+bwV
+cBy
+cBJ
+cdy
+cuN
+cvi
+cBB
+cvi
+cuN
+cNv
+bhT
+cIM
+bXX
+bty
+bzr
+byT
+cfc
+bcT
+bmf
+bon
+bpU
+brN
+btL
+czq
+bme
+bBm
+bui
+bui
+ctV
+blp
+bme
+aaU
+aaU
+aaU
+aaU
+bme
+bme
+bme
+bme
+bme
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(147,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aax
+ajm
+aoQ
+ach
+adQ
+aFr
+aKg
+ahO
+aml
+abX
+akd
+aoA
+awt
+aDb
+aqL
+anB
+alS
+aMC
+apR
+atP
+aji
+azm
+azm
+aCB
+azm
+aRM
+bar
+aSD
+cBP
+bDV
+bEb
+aUq
+aVs
+aVs
+aVs
+aVs
+aVs
+aUq
+bhv
+bka
+bka
+bnb
+boV
+bpt
+aRF
+cog
+bnt
+ang
+cuC
+cuD
+cuD
+cuy
+cuE
+cuD
+cuy
+cuy
+cuE
+cuy
+cuy
+cuD
+cuG
+eUF
+bsz
+aej
+agc
+agT
+cJq
+apm
+aqS
+arP
+cph
+asS
+auN
+avK
+axR
+aAy
+aOk
+aOR
+aPm
+aPm
+bBo
+aTm
+aUb
+bAR
+bnf
+bwR
+cBx
+cCR
+cdz
+cPI
+cdJ
+cdM
+cdJ
+cdO
+cPK
+bbY
+cIM
+bZl
+cwO
+cyr
+cyx
+cyr
+cyr
+cyD
+cyJ
+cyJ
+cyV
+cze
+czr
+bme
+bBm
+bui
+bui
+bJq
+bme
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(148,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aax
+aax
+aea
+adQ
+adQ
+adQ
+aFt
+apv
+aiF
+amr
+aqL
+aoy
+aoD
+aoj
+aDm
+aqL
+aji
+aKs
+aNl
+apU
+atP
+aji
+aBT
+buP
+aCD
+bvl
+bvZ
+bas
+aSD
+cBQ
+ccb
+cBV
+aUw
+aVx
+aWU
+aZm
+aWU
+aVx
+bfO
+aVx
+aWU
+bms
+bnd
+boX
+bpH
+ang
+coh
+cfy
+clO
+aRu
+aSv
+aSy
+aSw
+aTk
+aQJ
+aQJ
+aQJ
+aQJ
+aQJ
+aQJ
+aRZ
+aVK
+cxa
+bPr
+sVC
+aNH
+bbQ
+cJA
+aqO
+anE
+anE
+anE
+aQT
+ayb
+axt
+aCZ
+aRG
+aOl
+aOV
+avQ
+cmX
+aRp
+bkJ
+aUf
+aeI
+bnp
+cmO
+cfU
+cmm
+cri
+cdH
+cdK
+cPu
+cdr
+bqw
+cdS
+bUs
+cIU
+coL
+cyk
+cys
+baN
+baN
+baN
+coq
+box
+box
+cyW
+cpy
+bPD
+bAY
+bBw
+bCA
+cql
+bJq
+bNI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(149,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aax
+aba
+aax
+aax
+aax
+aax
+aax
+adr
+ach
+adQ
+acT
+afR
+apv
+apv
+ajb
+amt
+anH
+aAQ
+aoG
+bvp
+aDF
+aFk
+aHh
+aKB
+aNu
+aou
+aou
+aji
+aBW
+aBX
+aCF
+buX
+bAh
+bat
+aSD
+cBP
+bDX
+cBW
+aUq
+aVs
+aVs
+aVs
+aVs
+aVs
+aUq
+bhO
+bka
+bka
+bno
+boZ
+bpJ
+apd
+bfI
+clH
+ang
+aRX
+aSw
+aSM
+aaU
+aTl
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aSu
+aYU
+cxb
+bsz
+aej
+agC
+aoJ
+cJB
+apm
+aqT
+arQ
+cpi
+asS
+aTQ
+avU
+ayn
+aFU
+aOq
+aOY
+aPO
+aPO
+bCW
+bvY
+asB
+bAR
+bnq
+bEW
+bQF
+cah
+cdA
+cPJ
+cdL
+cmv
+cdL
+cdQ
+cPL
+bUD
+cIV
+coN
+cyl
+bzI
+bHn
+bzI
+bzI
+cor
+boy
+boy
+cyX
+btO
+bPE
+bme
+bBm
+ccx
+bui
+bJq
+bme
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(150,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aax
+abb
+abs
+abs
+abu
+cqV
+acg
+ach
+adQ
+adQ
+adS
+adS
+adS
+adV
+ajd
+ajj
+aqL
+azr
+bwl
+bEn
+anJ
+aqL
+awh
+amx
+aNU
+aqj
+aji
+aji
+aFV
+aiv
+aMj
+amA
+bDu
+bat
+aSD
+cBR
+cbZ
+cBX
+amy
+aaU
+aaU
+aaU
+aaU
+aaU
+aVs
+bid
+bkv
+bka
+bnw
+bka
+brA
+ang
+ang
+ang
+ang
+aaU
+aaU
+aaU
+aaU
+aTl
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+bgh
+bGQ
+bIT
+bPX
+aaU
+atF
+atF
+cJC
+atF
+atF
+arO
+asC
+asS
+auY
+azE
+ayo
+bCb
+ayo
+bei
+avV
+aQs
+asS
+bwJ
+bfn
+aXh
+cqw
+bSx
+bQG
+cbd
+cdB
+biL
+bkD
+cop
+bkD
+biL
+boa
+bhT
+cIW
+cIZ
+cym
+bzU
+bzV
+cuo
+bcT
+bnO
+boz
+bqp
+cyY
+btL
+bPF
+bme
+bBm
+ccx
+bui
+crj
+blp
+bme
+aaU
+aaU
+aaU
+aaU
+bme
+bme
+bme
+bme
+bme
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(151,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aav
+aTd
+aWj
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aax
+abg
+abt
+abt
+abK
+cqV
+csb
+ads
+ajK
+adQ
+adS
+aeG
+adS
+afd
+ajI
+afK
+aqL
+aqL
+aqL
+aqL
+aqL
+aqL
+afK
+amy
+aOD
+aql
+awB
+boO
+aAp
+aCn
+amA
+bvD
+amy
+bas
+aSD
+cBN
+cca
+cBX
+amy
+aaa
+aaa
+aaa
+aaa
+aaa
+aVs
+aVs
+bkw
+bmt
+bnB
+bmt
+bpZ
+aVs
+aVs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aTl
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+bsz
+aTl
+cxc
+aaa
+aaa
+aRD
+ciT
+cJD
+cmu
+atF
+arY
+awW
+asS
+avc
+awa
+clA
+aLF
+axM
+axM
+aPP
+crs
+asS
+cpj
+aUr
+bmT
+cqx
+bwP
+bQH
+cdj
+cdC
+biQ
+cjY
+cot
+blt
+cse
+bob
+cjz
+bjm
+cIM
+cym
+bIp
+aaU
+bIx
+aaU
+blp
+bme
+bme
+cyZ
+btL
+bPG
+bBa
+bBm
+ccx
+bui
+bJR
+bNJ
+bme
+bme
+bme
+bme
+bOb
+bme
+bOi
+bOj
+bOl
+bOp
+cnE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(152,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aax
+aax
+aax
+aax
+aax
+apv
+crS
+adS
+adS
+aeW
+adS
+apo
+adS
+axL
+agZ
+aeZ
+agm
+aqW
+ahX
+aiU
+afZ
+agl
+apW
+amz
+amz
+aqm
+amz
+amz
+aAq
+bGa
+bGG
+bGG
+cAY
+cBq
+aRT
+cBS
+cBU
+cBY
+aqn
+acK
+acK
+acK
+aqn
+aaa
+aaa
+aVs
+aVs
+aVs
+bnB
+aVs
+aVs
+aVs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aTl
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+bsz
+aTl
+cxc
+aaa
+aaa
+atF
+ciU
+cJE
+cJG
+cJI
+cJK
+cJL
+cJO
+asR
+aOQ
+bev
+cbJ
+aOx
+aPc
+beq
+aQe
+asR
+crw
+aUt
+bpK
+cqy
+bEW
+bQF
+cdk
+bmQ
+biR
+bjy
+cou
+csd
+byr
+bob
+bhY
+bXW
+cJa
+cyn
+bQR
+aaU
+cNL
+aaU
+bme
+bpi
+bpT
+cza
+btL
+bPH
+bBc
+bBM
+ccx
+bui
+bui
+bJR
+bNR
+bNR
+bNR
+bNY
+bOa
+bOe
+bOg
+bui
+cnf
+bme
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(153,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aYp
+cdc
+crR
+adT
+aeo
+afm
+aiA
+apt
+bve
+afS
+ahK
+aix
+ajM
+akH
+akH
+asP
+akH
+akH
+bhj
+bEJ
+cfS
+bEJ
+cml
+amA
+amA
+amA
+aMl
+bcW
+bvH
+bvL
+aXn
+cBM
+bDY
+bEd
+aqn
+cCd
+aRE
+aSY
+acK
+aaa
+aaa
+aaa
+aaU
+anK
+cAL
+anK
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aTl
+aaU
+aaU
+aaa
+aWR
+aaa
+aaU
+bsz
+aTl
+cxc
+atF
+atF
+atF
+cmh
+cmp
+atF
+atF
+asi
+asi
+cJP
+asR
+awe
+clB
+asS
+asS
+aPd
+avC
+aQe
+aRR
+cpj
+aSr
+aeI
+bQq
+cqI
+bQM
+cdl
+cdu
+cdN
+ciK
+ctd
+cwC
+bmw
+bob
+bia
+bXX
+cIM
+bty
+bIp
+aaU
+aaU
+aaU
+bme
+bog
+bpT
+czb
+btL
+bPI
+bUx
+bUx
+ccK
+cOw
+bui
+bui
+bui
+bui
+bui
+bNZ
+bOa
+bOe
+bOh
+cnc
+bOm
+bOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(154,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+agd
+cdc
+crR
+adT
+aeE
+afm
+afm
+apT
+adS
+bEu
+ahN
+afa
+aha
+ahx
+ahx
+asT
+ahx
+ahs
+afK
+aGR
+aAa
+are
+cmo
+avP
+aAW
+aDq
+aNn
+bvh
+aql
+aCe
+aYK
+aDr
+aci
+aqn
+aqn
+aRj
+aND
+aVX
+anK
+anK
+aHA
+aHA
+anK
+anK
+cAM
+bCM
+anK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aTl
+aWj
+aMI
+cgd
+bwW
+beE
+bwW
+bsz
+aTl
+cxc
+atF
+aus
+aus
+aus
+aus
+cmw
+atF
+asv
+asN
+cJQ
+avA
+azh
+aOd
+aOM
+aOC
+aPe
+clC
+aQC
+aRV
+cJl
+cko
+aeI
+bpv
+cqJ
+cdg
+cds
+cdv
+biQ
+bXf
+bkG
+cwP
+ctn
+bob
+bib
+bXX
+cIM
+bty
+bIp
+aaU
+aaa
+aaa
+bme
+bpj
+bpT
+czc
+cze
+czs
+czy
+bui
+bui
+bui
+bui
+bui
+bme
+bme
+bme
+bme
+bme
+bme
+bme
+bOn
+bme
+bOo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(155,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aYp
+cdc
+crT
+adT
+aeF
+afp
+aiV
+anv
+aec
+axS
+ahN
+afK
+ahb
+ahx
+aia
+atm
+alX
+ahx
+arx
+amF
+afK
+aka
+cmA
+aka
+aka
+aka
+aka
+aka
+aka
+aLU
+aNE
+aRd
+acK
+aHL
+aIN
+aMK
+aOc
+aSA
+aTo
+aTt
+aTJ
+bsR
+bCG
+bCK
+cAN
+bCN
+anK
+aaa
+aaa
+aaa
+aaa
+arE
+arE
+arE
+arE
+bxP
+arE
+aMI
+cgX
+chC
+cik
+bwW
+bsT
+bGQ
+bHe
+bHA
+aus
+bcM
+cmi
+cmq
+aus
+atF
+aqU
+asG
+cJR
+aws
+aqU
+aqU
+aMz
+chE
+cie
+cjK
+ckm
+cnh
+ckm
+ckm
+ckm
+ckm
+cqK
+cru
+csz
+cdw
+biQ
+biQ
+biQ
+biQ
+biQ
+boc
+bzV
+bYm
+cJb
+bzV
+bUn
+aaU
+aaa
+aaa
+blp
+bme
+bme
+blp
+btL
+bPH
+bBe
+bui
+cma
+bHt
+bHt
+bme
+bme
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(156,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+adq
+adq
+adq
+aec
+afM
+agx
+aja
+aoM
+aec
+agi
+ahN
+afK
+ahc
+ahx
+ahx
+ajs
+atO
+ayl
+bml
+ary
+afK
+atR
+cmC
+aSU
+aka
+aER
+aFO
+aGF
+aKf
+aMb
+aPl
+aRf
+adR
+arX
+aKj
+aVy
+aRx
+aSF
+aTr
+arH
+aVa
+aIK
+aKk
+aTU
+cAO
+cCA
+anK
+aaU
+aaU
+aaU
+aaU
+arE
+bGJ
+bFe
+atf
+bxS
+bzo
+aMI
+cgY
+bwW
+cil
+bwW
+bwW
+bCj
+anr
+bHO
+aOP
+biu
+cmj
+cmr
+cmx
+atF
+cfv
+asI
+cJS
+clx
+awA
+chl
+aNx
+chF
+cir
+cjL
+ckB
+cno
+cpa
+cpR
+cqa
+ckm
+ckm
+csq
+ckm
+bUN
+biV
+cKg
+cLn
+cLz
+bmz
+biV
+cdP
+bXX
+cIM
+bqE
+bcT
+aaU
+aaa
+aaa
+aaU
+aaU
+aaU
+blp
+cmy
+cmz
+blp
+cqU
+blp
+bme
+bme
+bme
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(157,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aav
+aaU
+aWj
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aec
+aec
+bEp
+bEp
+bEp
+bEp
+bEp
+ahN
+afK
+ahd
+ahx
+ahx
+ajD
+atC
+ahx
+bmr
+bPu
+ciN
+cly
+aCv
+cwZ
+aka
+aEX
+aFQ
+aGI
+aKf
+aMb
+aPx
+aLj
+anh
+azo
+aKp
+aND
+aND
+aWH
+aHx
+asc
+aWn
+bvG
+aKl
+bCQ
+cAP
+anK
+anK
+arE
+atf
+aKT
+arE
+arE
+att
+cqr
+arE
+byt
+bzo
+aMI
+cgZ
+cif
+cim
+cmD
+ciS
+bCj
+anr
+bHO
+aus
+blX
+cmk
+cms
+aus
+atF
+ast
+asI
+cJT
+cJZ
+cKa
+cKb
+cKc
+chG
+ciD
+cjU
+ckC
+cnr
+cpk
+cpS
+cqc
+cqA
+cqL
+css
+ckm
+bUO
+cdR
+ciL
+cLr
+cwQ
+bPx
+bod
+beW
+bXX
+cIM
+bqD
+bcT
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+bxw
+bza
+bMQ
+blp
+cnf
+cdd
+aYp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(158,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+abp
+aav
+aTd
+aWj
+abp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaV
+aaV
+aaV
+abe
+aeP
+agX
+ajS
+aHj
+bvm
+ahP
+ahN
+afK
+afK
+ahT
+ahx
+ahx
+ahx
+ahx
+bvo
+amM
+apW
+ars
+cwN
+azR
+aBG
+aEY
+aFR
+aGU
+aKm
+aMc
+aPx
+aRg
+aGH
+aIf
+aLs
+aRA
+bkT
+aWJ
+aHz
+btb
+aWn
+bvR
+bCI
+bDJ
+cAM
+bCP
+boA
+aYC
+brf
+att
+att
+att
+btP
+bwo
+arE
+byu
+arE
+aMI
+cha
+cig
+cck
+bwW
+ciV
+bCj
+anr
+bHO
+aus
+aus
+aus
+aus
+aus
+atF
+asI
+asI
+cJU
+avw
+bRd
+azg
+aNQ
+chI
+ciH
+cjX
+ckF
+cns
+cpo
+cpT
+cqn
+cqC
+cqM
+cst
+ckm
+bUG
+cfn
+con
+coo
+cwR
+bPy
+bVY
+bWn
+bYO
+cJc
+bXb
+bcT
+bpP
+bpP
+bpP
+bpP
+bpP
+bpP
+cro
+bza
+bMQ
+blp
+ctH
+cdd
+csc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(159,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aav
+aaU
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aaV
+aaU
+aaU
+aaU
+aaV
+ahP
+ahP
+ahP
+bzp
+ahP
+ahN
+aiB
+afK
+ahU
+ait
+ajE
+amC
+ahx
+bvo
+aIm
+apW
+arv
+aub
+azS
+aBG
+aEZ
+aFS
+aHd
+aKr
+aMf
+aPy
+aRi
+aqc
+aqn
+aci
+aci
+aci
+aXQ
+aHy
+bDc
+aWw
+aWy
+aYm
+aYD
+aYE
+aYF
+beQ
+bjw
+bwu
+bAd
+aMo
+aMG
+bVt
+bwp
+bvb
+byv
+ceQ
+cgT
+chc
+bmY
+ccI
+bmY
+anm
+asu
+anr
+bHO
+atF
+atF
+atF
+atF
+atF
+atF
+aqU
+asM
+cfL
+aqU
+aqU
+aqU
+aqU
+chK
+chK
+ckm
+ckm
+ckm
+cpA
+cpU
+cqo
+cqD
+cqO
+ckm
+ckm
+bjZ
+blq
+bCz
+bCz
+cgc
+cxi
+cAA
+cAI
+cAZ
+cJd
+cBp
+ccV
+cIt
+cIu
+bMq
+bJl
+bLK
+bYe
+bHL
+bYt
+bYD
+blp
+crU
+cdd
+aYp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(160,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaV
+aaU
+aaa
+aaa
+aaU
+ahP
+akn
+aJR
+bEg
+ahP
+aif
+ass
+afK
+afK
+afK
+afa
+afa
+anF
+bvq
+afK
+aAa
+aka
+atS
+aka
+aql
+aFa
+aFW
+aHm
+aKf
+aMr
+aPA
+aLj
+aPx
+aTN
+avm
+aVH
+aWX
+aZF
+anK
+aHz
+aWx
+aTr
+boA
+cAF
+bCL
+boA
+anK
+bqb
+avm
+brj
+bsO
+avm
+bVz
+bVK
+bGX
+cbR
+ceS
+bmW
+chv
+bwW
+cin
+aMD
+arp
+bCk
+aqk
+bRn
+qlJ
+qlJ
+bcG
+cmt
+auR
+aYL
+cfw
+bap
+cJW
+bcI
+bbF
+bbN
+bbN
+bbO
+bbL
+bcb
+aaU
+ckm
+cpF
+cpV
+cqp
+cqE
+crb
+ckm
+bgl
+bgl
+bjb
+bjb
+bkI
+cic
+cxj
+biV
+bie
+bZl
+cqQ
+bqD
+cBr
+aRY
+bcE
+aRY
+aRY
+btz
+cOe
+btB
+btB
+btA
+blp
+blp
+blp
+blp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(161,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abc
+aaU
+aaa
+aaa
+aaU
+aio
+akZ
+biO
+bEt
+bEA
+aik
+ajl
+ajP
+alh
+aqN
+ato
+aut
+ayw
+bDB
+bSu
+cjm
+asm
+aqo
+aAo
+bDi
+aFb
+aGf
+aHw
+aKu
+aME
+aPC
+aRk
+aSI
+aSI
+aUJ
+aVU
+aVU
+aZH
+bch
+bea
+bfS
+biX
+bkK
+bmA
+bnE
+bch
+aSI
+bqk
+brg
+bry
+btq
+avm
+aMI
+aMI
+bwW
+bwW
+bwW
+aMI
+chw
+bwW
+ciq
+bwW
+ciV
+bwW
+aaU
+bsT
+bRo
+bRp
+anr
+bcI
+bgw
+bgw
+bgw
+bdk
+cJX
+bcI
+bbJ
+bbF
+bbN
+bbN
+bbN
+bbO
+bbV
+ckm
+cie
+ckm
+cqq
+ckm
+crm
+ckm
+bgn
+bhn
+cuO
+bhn
+bhn
+cic
+cDi
+biV
+bdH
+bWO
+cqR
+bqE
+cBr
+aST
+bcF
+ckc
+bnQ
+btA
+bMQ
+bta
+bta
+bta
+bta
+bta
+aaa
+aaa
+aaa
+bNK
+bNS
+bNU
+aaa
+bNK
+bNS
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(162,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaU
+aio
+alb
+aKe
+bEw
+ahP
+bEB
+bGo
+afA
+ahN
+aiC
+alz
+avt
+azx
+bEv
+bZM
+avt
+avd
+bDp
+bDv
+aiC
+aFd
+aGj
+aHB
+aKz
+aMM
+aPG
+aRn
+aSO
+aUa
+aUN
+aWf
+aWY
+aZL
+bcq
+bcq
+bgb
+aSO
+bkQ
+bmB
+bnF
+bpc
+bqa
+bnF
+brh
+brE
+btt
+btJ
+bmS
+bwq
+bwX
+bwX
+bzL
+bwX
+bBp
+bwW
+ciq
+bwW
+ciV
+bwW
+aaU
+aaa
+aaa
+bsz
+cJx
+cJF
+bRA
+cJJ
+bsX
+cJM
+cJY
+bcI
+bbJ
+bbL
+bbN
+bbN
+bbN
+bcb
+ciI
+bjI
+bkB
+bmP
+bKj
+bbV
+bfG
+bge
+bgB
+bho
+bjc
+bjK
+bkI
+csm
+cxk
+biV
+cvN
+bjm
+bXX
+bqD
+cBs
+aTc
+bdL
+biE
+bpV
+bLZ
+bNt
+bta
+btQ
+bxN
+bDh
+bHM
+aaa
+aaa
+aaa
+bNK
+bYQ
+bNU
+aaa
+bNK
+bYQ
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(163,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaU
+ahP
+alf
+afh
+bEy
+ahP
+aiz
+aiz
+aiz
+ahN
+aiC
+ake
+avt
+aDD
+aqp
+aui
+aAm
+bvw
+bDq
+aul
+bDA
+bDA
+bDA
+bDA
+avm
+aMO
+aLr
+aRs
+aSS
+and
+amY
+amY
+amY
+amY
+amY
+amY
+bvu
+aJd
+aKQ
+aJd
+aKQ
+aJd
+aJd
+bql
+bri
+brW
+btu
+bsO
+aMI
+aMI
+aMI
+bAk
+aMI
+aMI
+bzn
+aMD
+ciq
+bwW
+ciV
+bwW
+aaU
+aaa
+aaa
+bsz
+anr
+bcI
+sdp
+bUX
+bgw
+uwK
+bhm
+bcI
+bbL
+bbN
+bbN
+bbN
+bbN
+bbO
+bcl
+bAa
+bkM
+bja
+bKB
+bcl
+bfG
+bge
+bge
+bge
+bge
+bge
+bge
+cwS
+cxl
+biV
+bdI
+cNx
+bXX
+bqD
+cBr
+bcu
+csS
+biH
+bnQ
+btB
+bNV
+bta
+bzd
+ceh
+bzd
+bHM
+aaa
+aaa
+aaa
+bNK
+bYQ
+bNU
+aaa
+bNK
+bYQ
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(164,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaU
+ahP
+ahP
+ahP
+ahP
+ahP
+aaU
+aaU
+aiz
+ahN
+aiC
+alc
+avu
+aDD
+aqx
+awv
+bvr
+bDn
+bDr
+bDx
+bDC
+bDF
+bDE
+bDK
+avm
+aMT
+aLr
+aRt
+aTe
+amY
+aBq
+aCQ
+aFe
+aCJ
+bFn
+bFn
+aJd
+aJi
+aKU
+cCs
+aLD
+aLR
+aJd
+aZD
+bwE
+bIX
+csB
+bwj
+bmW
+bEQ
+bxb
+aNW
+cCF
+bmW
+bzn
+bwW
+ciq
+bwW
+ciV
+bwW
+aaU
+aaa
+aaa
+bsz
+anr
+bcI
+aXp
+bVb
+cfx
+bhs
+bmm
+bcI
+aaU
+aaa
+aaa
+aaa
+bbV
+bbV
+bbV
+bhk
+bwi
+blN
+bKX
+ciI
+bfG
+bbV
+bgH
+bhp
+bjd
+bZi
+boG
+cxe
+cxm
+bgf
+cIC
+bjm
+bXX
+bqD
+cBC
+bcv
+bdL
+bkf
+bWY
+btC
+bPm
+bta
+btV
+cfG
+btV
+bta
+aaa
+aaa
+aaa
+bNK
+bYQ
+bNU
+aaa
+bNK
+bYQ
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(165,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aiz
+amw
+aiC
+ald
+avZ
+aGY
+aqQ
+ayc
+bvA
+bZN
+bDs
+aaB
+aEg
+bDG
+bDI
+bDK
+avm
+aMW
+aLr
+aRK
+amY
+amY
+aBs
+ane
+anp
+aCJ
+bFn
+bFn
+aJd
+bfH
+bdq
+bet
+bmu
+aUs
+buQ
+bvk
+bwF
+bVi
+cvJ
+bwn
+bmW
+bws
+aNW
+bxd
+bBK
+bAS
+bCq
+bwW
+ciq
+bwW
+ciV
+bwW
+aaU
+aaa
+aaa
+bsz
+anr
+bcI
+bcI
+cwy
+bcI
+jMO
+bcI
+bcI
+aaU
+aaa
+aaa
+aaa
+bbV
+bfN
+bhk
+bhk
+bwt
+bja
+bLn
+bbV
+bfG
+bbV
+bgI
+bDl
+cuP
+bjM
+ccW
+cgs
+cxn
+bgf
+bBU
+bnN
+crc
+buw
+aRY
+bcD
+bcF
+bkz
+bnQ
+btD
+bPm
+bxH
+bzc
+bBg
+coW
+bxH
+bxH
+aaa
+aaa
+bNK
+bYQ
+bNU
+aaa
+bNK
+bYQ
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(166,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aiz
+amD
+aiC
+afV
+amK
+aHc
+bEH
+azV
+bvC
+cbQ
+bDs
+bDz
+aNe
+bDH
+bDA
+bDA
+avm
+aNs
+aLr
+aRN
+aSe
+aAC
+aAD
+anp
+ane
+aCJ
+bGe
+bFn
+aJd
+aJl
+aKV
+bfz
+bmx
+aLp
+aML
+aZe
+bhF
+bXc
+bhG
+bhH
+bhL
+bio
+biD
+cAq
+bkE
+bmW
+bBq
+bwW
+ciq
+aMD
+ciV
+bwW
+aaU
+aaa
+aaa
+bsz
+anr
+aaU
+aaa
+cwz
+aaa
+jyu
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+bbV
+bgg
+bgK
+bhk
+bwG
+bja
+bLv
+bbV
+bfG
+bbV
+bjf
+bkh
+blu
+ciI
+ccZ
+cgs
+cxo
+bgf
+bgf
+bez
+cxB
+bhf
+aRY
+aRY
+aRY
+aRY
+aRY
+btz
+bPn
+btE
+bzk
+crp
+bBf
+bDf
+bHM
+aaa
+aaa
+aaU
+avr
+aaU
+aaa
+aaU
+avr
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(167,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+adx
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+asd
+ahN
+aiC
+alH
+amK
+aDD
+aqp
+aAg
+bCJ
+cjn
+bDt
+bDA
+bDA
+bDA
+bDA
+aHC
+aKW
+aNt
+aLr
+aRN
+amG
+aAD
+aBs
+awP
+anp
+aCJ
+bFn
+bFn
+aJd
+bDe
+aKX
+bet
+bmX
+aLS
+aML
+baY
+bwO
+bEi
+cwt
+czQ
+czX
+cAd
+cAn
+cAr
+bkL
+bmW
+bBr
+bwW
+ciq
+bwW
+ciV
+bwW
+aMD
+bwW
+aaa
+bsT
+bHe
+bRo
+bRp
+aaa
+cwD
+jyu
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+ciI
+bgv
+bhk
+bhk
+bxe
+bja
+bLA
+bbV
+bfG
+ciJ
+bUk
+bUH
+bVg
+bVn
+cfd
+cgs
+cxp
+ckq
+bgf
+beB
+cxC
+bgq
+cjA
+biy
+bjN
+bkO
+biZ
+bXY
+bPm
+bxH
+bFF
+csU
+bBg
+bDg
+bHM
+aaa
+aaa
+bNK
+bNS
+bNU
+aaa
+bNK
+bNS
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(168,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cjj
+cjj
+cjj
+cjj
+cjj
+ahN
+aiC
+aiC
+amL
+aQZ
+aqx
+bvw
+bvw
+bvw
+ant
+aoN
+aJH
+anS
+amc
+aHX
+aLd
+aNE
+aPJ
+aRN
+amG
+ane
+anp
+csy
+aBs
+aCJ
+aCJ
+amY
+bvu
+aJd
+aKQ
+bfB
+brt
+aJd
+bvu
+bAO
+bxc
+bFd
+czN
+czR
+buh
+bwv
+bxh
+byP
+bkN
+bmN
+bng
+bnM
+boh
+bpI
+bqg
+bqu
+bra
+bwW
+bwW
+aaU
+bdR
+cJr
+bTJ
+aaa
+aaa
+cPz
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+bbV
+bbV
+bbV
+bhk
+bwt
+bBi
+bLO
+bbV
+bTV
+bgf
+bTk
+bUR
+cfO
+cja
+cja
+boj
+cxq
+cxv
+bgf
+brQ
+cxC
+bgq
+bhX
+biz
+bjP
+cJi
+biZ
+btz
+bPm
+clW
+bPM
+bzd
+bBg
+bDh
+bHM
+aaa
+aaa
+bNK
+bYQ
+bNU
+aaa
+bNK
+bYQ
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(169,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aao
+aaO
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+aaO
+ado
+aaa
+cjj
+cjk
+anb
+ajo
+ajV
+anG
+aro
+avb
+awb
+awI
+amc
+agU
+air
+aZK
+anN
+awD
+aoO
+azT
+bso
+aIb
+aLe
+aNP
+aPL
+aRP
+aKq
+aLM
+aMu
+aNy
+aSd
+aTq
+aVY
+aJj
+aJd
+btm
+bdo
+bet
+bse
+aMd
+aJd
+bdA
+bxg
+bvs
+aMA
+czS
+buW
+bwx
+aMA
+aMA
+aMA
+aWE
+bzn
+bwW
+ciq
+bwW
+ciV
+bwW
+brr
+bCr
+cwv
+bAQ
+bAQ
+cJs
+bUV
+caf
+bam
+cPA
+bam
+bYl
+bam
+bam
+bam
+bam
+bbX
+bbX
+bcn
+cnv
+bxL
+cpW
+bLP
+buH
+bBz
+bPY
+bUd
+cdx
+cga
+cgq
+cgq
+bzw
+cxr
+cxw
+cxx
+cxz
+cxD
+cxF
+bhX
+biJ
+bjQ
+ccF
+biZ
+btz
+bPm
+bxH
+bSf
+bzd
+bQD
+bxH
+bxH
+aaa
+aaa
+bNK
+bYQ
+bNU
+aaa
+bNK
+bYQ
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(170,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aWj
+aaU
+aaa
+aaa
+aaa
+aao
+aaP
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+aaP
+ado
+aaa
+cjj
+agG
+aiu
+ajv
+akb
+anZ
+arG
+avf
+awf
+awU
+amc
+awV
+aoO
+aqq
+aqq
+avh
+azX
+aCV
+cra
+aIp
+aLh
+aOf
+aPQ
+aRS
+amY
+aAF
+aMv
+aDI
+aBs
+aAD
+aBs
+aGB
+bsS
+bvT
+bdp
+cAJ
+cAR
+buZ
+aJd
+bhe
+bxp
+bvx
+aMA
+czT
+bva
+bwy
+bxi
+cCE
+cAw
+aWF
+bBD
+bmS
+ciM
+bmS
+ciX
+bmY
+brP
+brX
+bsh
+bsu
+bsx
+cJt
+sVC
+cdp
+sVC
+cPB
+sVC
+bZp
+sVC
+sVC
+sVC
+frb
+bvM
+bvW
+bvX
+bwd
+bxU
+bBT
+bLQ
+bLT
+bQh
+bLT
+bLT
+cdF
+bVl
+bZd
+cfX
+ciP
+cjB
+cgt
+bcl
+bfc
+bgs
+cxG
+bif
+cnA
+csg
+btW
+biZ
+bUW
+bRr
+bxH
+bzj
+bzW
+bBx
+bxH
+aaU
+aaa
+aaa
+bNK
+bYQ
+bNU
+aaa
+bNK
+bYQ
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(171,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+ahv
+aWj
+aaU
+aaa
+aaa
+aaa
+aao
+aaP
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+aaP
+ado
+aaU
+cjj
+amO
+afo
+cjl
+cjj
+bGq
+bEf
+avm
+awb
+awI
+amN
+anM
+aoO
+aoO
+aoO
+aoO
+aoO
+aFI
+amc
+aIt
+aLj
+aOg
+and
+aoE
+amY
+aAG
+ane
+aEi
+aAD
+aBs
+aAD
+aMV
+aNq
+aOi
+bdp
+bfK
+bsW
+cCB
+aJd
+bhi
+byM
+blP
+aMA
+czU
+czY
+cAe
+bFz
+cAs
+cAx
+bhU
+biN
+biY
+bne
+cAz
+bqf
+bqH
+brY
+bsi
+bsv
+bsy
+bsy
+bsD
+bsI
+bRv
+bsD
+bww
+bsD
+cPE
+cPF
+cPF
+cPF
+cPG
+bBL
+bBL
+bCm
+bwg
+bzC
+boC
+bLR
+bTx
+bUb
+bUh
+bUm
+bUZ
+bVm
+cbM
+cfY
+cJz
+cjC
+bhr
+ckv
+bdV
+bgt
+cxC
+bhX
+biJ
+bjQ
+ctu
+biZ
+btz
+bPm
+bxH
+bxH
+bxH
+bxH
+bxH
+aaU
+aaa
+aaa
+bNK
+bYQ
+bNU
+aaa
+bNK
+bYQ
+bNU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(172,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aav
+abM
+acj
+aaU
+aaa
+aaa
+aaa
+aao
+aaP
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+aaP
+ado
+aaa
+cjj
+cjj
+cjp
+cjp
+cjp
+aoK
+aoK
+aoK
+awb
+awI
+amN
+aii
+aoO
+aqr
+aSR
+awE
+aoO
+brx
+amc
+aIw
+aLj
+aOj
+amY
+aoZ
+anp
+ane
+anp
+aDI
+aBs
+aAD
+aBs
+aHe
+aJd
+bmI
+aZi
+bfL
+btM
+bvf
+aJd
+bhw
+byO
+bBb
+aMA
+btc
+czZ
+cAf
+bVH
+bwA
+bAj
+aMB
+bzn
+bwW
+cgY
+bwW
+cil
+bmW
+bCt
+aMI
+aMI
+aaa
+aaa
+aaa
+bfW
+bJv
+aaa
+cwI
+aaa
+cbG
+aaU
+aaa
+aaa
+aaa
+aaa
+bbV
+bhu
+bhr
+bbT
+bdZ
+brR
+bbT
+bUf
+bbT
+bbT
+bbT
+bUP
+bbT
+bbT
+cJV
+bbT
+bbT
+bbT
+brQ
+bgt
+cxH
+cxN
+cxP
+cxQ
+cxU
+cxW
+cxX
+cPN
+clX
+bZu
+cmM
+bYn
+bZt
+bHN
+bHN
+bHN
+bNL
+avr
+aaU
+aaU
+aaU
+avr
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(173,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aav
+abR
+acj
+aaU
+aaa
+aaa
+aaa
+aao
+aaP
+ado
+aaa
+aaa
+aaU
+adx
+aaU
+aaa
+aaa
+aao
+aaP
+ado
+aaa
+aaa
+aaU
+aoK
+asA
+atu
+aue
+auO
+arM
+awb
+axa
+amc
+anO
+arn
+aqt
+atX
+ayV
+aJJ
+brC
+bsq
+aIy
+aLo
+aOm
+amY
+aqd
+ane
+aBS
+aBV
+aEk
+aBV
+aBS
+aAD
+aHf
+aJd
+aJd
+bco
+aJd
+aJd
+aJd
+bvu
+bdA
+bxp
+bvs
+aMA
+aNc
+bvQ
+cAg
+bxr
+byY
+cvP
+aMB
+bzn
+bjz
+cgZ
+bzH
+bJS
+bmW
+bmW
+aMI
+aaU
+aaU
+aaU
+aaU
+bfW
+opd
+aaU
+cwJ
+aaU
+cbG
+aaU
+aaU
+aaU
+bbT
+bbT
+bbT
+bbT
+bbT
+bbT
+bkm
+brV
+cPH
+bfU
+bFD
+bgO
+cqt
+bUQ
+cvj
+cDg
+cKd
+ben
+bor
+bcV
+bfe
+bgt
+cxI
+ctv
+biM
+bjS
+bkS
+cpJ
+btF
+cxY
+bZt
+bZv
+bYn
+bYn
+bZy
+bHN
+bHz
+ckn
+aqA
+bNL
+bNL
+bNL
+bNL
+bNL
+bOf
+bOk
+bOk
+bOq
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(174,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaD
+abM
+acm
+aaU
+aaU
+aaU
+aaU
+aao
+aaP
+ado
+aaa
+aaa
+aaU
+adx
+aaU
+aaa
+aaa
+aao
+aaP
+ado
+aaU
+aoK
+aoK
+aoK
+asE
+atw
+atw
+atw
+arM
+awg
+axb
+amc
+amc
+amc
+amc
+amc
+azF
+aJY
+brD
+bsr
+aIB
+aLj
+aOy
+amY
+apw
+anp
+aBS
+ayy
+aEj
+ayy
+aBS
+aBs
+aHi
+aJk
+aJd
+bdm
+aLA
+aJd
+aMk
+aMk
+bdA
+bxp
+bvI
+aMB
+aMA
+aMA
+cAh
+aMA
+bzf
+bAp
+aMB
+bzn
+bxG
+bxF
+bxG
+bXs
+cii
+cjg
+cji
+aaa
+aaa
+aaa
+aaa
+bgi
+fui
+aaa
+cwK
+aaa
+cbG
+aaa
+aaa
+aaa
+cmH
+crh
+bVx
+bVw
+bVy
+bVw
+cwc
+buz
+bAu
+bCx
+bPZ
+bUl
+bVc
+cte
+cvk
+cDm
+cvk
+ctp
+ctq
+bkX
+ctr
+bZw
+cxJ
+bez
+biZ
+biZ
+biZ
+biZ
+btz
+cxY
+bZt
+bZt
+bZx
+bZt
+bZt
+bHN
+bHP
+bHN
+bNL
+aaU
+aaU
+aaU
+aaU
+bOc
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(175,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaY
+abV
+acq
+acJ
+adk
+adG
+aaU
+aaU
+aaT
+aaU
+aaU
+aaU
+aaU
+aaT
+aaU
+aaU
+aaU
+aaU
+aaT
+aaU
+aaU
+aoS
+aqe
+aqe
+asQ
+atx
+auf
+auU
+avp
+awi
+axd
+ayv
+azD
+ayv
+aBD
+aCx
+aDw
+aEl
+aFg
+aGk
+aIW
+aLq
+aOG
+amY
+apa
+ane
+aBS
+ayy
+bvE
+ayy
+aBS
+aAD
+aHJ
+amY
+aJd
+bds
+bfQ
+bug
+buL
+buL
+bhC
+byS
+aMn
+aMD
+bEj
+bvU
+cAi
+aMA
+bzg
+aMA
+aMB
+bzn
+bwW
+bxF
+aMD
+bEL
+bAK
+bjz
+aMI
+aZG
+aaa
+aaa
+aaa
+bgi
+fui
+aaa
+cwI
+aaa
+cbG
+aaa
+aaa
+aTx
+bbT
+bbT
+bbT
+bbU
+bcV
+crd
+bej
+bej
+bfs
+bfY
+bej
+bla
+bVh
+ctf
+bkc
+bcV
+bcV
+bnh
+bnh
+bcV
+bcA
+bgZ
+cxK
+ctw
+bjl
+bGC
+bpQ
+bpQ
+cOa
+cPO
+cya
+cya
+cya
+cya
+cye
+bHN
+bIy
+bHN
+bJQ
+bJQ
+aaa
+aaa
+bNK
+bYR
+bNU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(176,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+cpB
+aaa
+aaa
+aaa
+aaU
+abr
+abM
+abr
+abM
+adl
+abM
+aZG
+aaU
+aaV
+aaV
+aaV
+aaV
+aaV
+aaV
+aaV
+aaV
+aaV
+aaV
+aaV
+aaU
+aTx
+aoK
+aoK
+arK
+asZ
+aty
+auj
+auX
+avq
+awj
+axn
+ayx
+azH
+aAr
+aAr
+aCI
+aDy
+aEn
+aFs
+aAr
+aIY
+aLr
+amG
+amG
+apL
+anp
+aBS
+aBu
+aEj
+aBu
+aBS
+aBs
+aGB
+aJf
+aJd
+bdw
+bfT
+aJd
+aMk
+aMk
+bdA
+bzQ
+ccl
+czO
+czV
+czV
+cAj
+bxs
+bzl
+bkg
+bPq
+bzn
+bwW
+byW
+bCB
+bIC
+bVj
+cip
+cpE
+aaa
+aaa
+aaa
+aaa
+bgi
+fui
+aaa
+cwK
+aaa
+cbG
+aaa
+aaa
+aaa
+cpp
+cgj
+cgk
+cgj
+bcj
+cgj
+ben
+bej
+cqF
+bfZ
+bej
+bAB
+bVk
+ctg
+cjd
+ctm
+blQ
+bbw
+bci
+bci
+bfP
+cqj
+cxL
+bir
+biZ
+cjt
+bXE
+bLZ
+bLZ
+bYh
+bYn
+bYn
+bYE
+cni
+cyf
+cgy
+bIz
+cmc
+ceJ
+bJQ
+aaa
+aaa
+bNK
+bYR
+bNU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(177,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abD
+abW
+acr
+acW
+adw
+adH
+aaU
+aaU
+abc
+aaU
+aaU
+aaU
+aaU
+abc
+aaU
+aaU
+aaU
+aaU
+abc
+aaU
+aaU
+aoT
+aqy
+arL
+asZ
+atD
+auk
+atD
+avs
+awl
+axq
+ayB
+avb
+aAs
+aBJ
+awp
+awx
+aEr
+aFx
+aGl
+aIZ
+aLr
+amG
+ane
+anp
+ane
+azt
+aBv
+aEj
+aFh
+aKN
+aAD
+aGN
+aJg
+amY
+aOt
+bfV
+amY
+aMs
+aMs
+bhD
+aOA
+bvN
+aMs
+bmo
+cAa
+cAk
+bxy
+bzi
+cAy
+bTU
+bzn
+aMD
+bzh
+bwW
+cih
+aMI
+aMI
+aMI
+bLw
+bMM
+bMM
+bMM
+ifC
+bJv
+aaU
+cwJ
+aaU
+cbG
+aaU
+aaU
+aaU
+bbT
+bbT
+bbT
+bbT
+bbT
+bdT
+beX
+beU
+beU
+beU
+beU
+bLu
+bVr
+cth
+cje
+csv
+bcV
+bby
+bck
+bdM
+bdM
+bhb
+bhM
+bis
+bjn
+bjn
+bXF
+bjn
+bjn
+bjn
+bjn
+bjn
+bjn
+bjn
+cyg
+bGF
+bIA
+bIB
+bNO
+bHN
+aaa
+aaa
+bNK
+bYR
+bNU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abp
+aaa
+aTd
+aaa
+abp
+aaa
+aaa
+aaa
+cpB
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(178,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abE
+abM
+acx
+aaU
+aaU
+aaU
+aaU
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaU
+aoK
+aoK
+aoK
+atd
+atE
+aum
+ava
+avs
+awp
+axD
+ayE
+awp
+awp
+awp
+awp
+aDA
+aEt
+aFA
+aGm
+aIZ
+aLr
+amG
+anp
+aBS
+aBS
+aBS
+ayy
+aEj
+ayy
+aBS
+aBS
+aLG
+aJh
+aLN
+aOu
+cCt
+beA
+aMt
+aNw
+bhE
+btg
+bvO
+bwb
+aMs
+cAb
+cAl
+bhA
+bgP
+bzO
+caD
+bzn
+bjz
+ciG
+bAK
+ciV
+aMI
+aaa
+bJj
+bLS
+kxw
+kxw
+kxw
+bPA
+wPS
+aaa
+cwI
+aaa
+cbI
+mIT
+cJr
+aaa
+aaU
+aaU
+aaU
+aaU
+bbT
+bbT
+bbT
+bfE
+bih
+bkb
+bkj
+bkY
+bVs
+cti
+cje
+cto
+bcV
+bcV
+bcm
+bdV
+bdM
+cqk
+bhP
+biv
+ciR
+bjT
+bXG
+clV
+bjT
+cjf
+btH
+btX
+ckE
+bjn
+cyf
+bHN
+cnS
+bKZ
+bNP
+bHN
+aaa
+aaa
+bNK
+bYR
+bNU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(179,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aav
+abR
+acj
+aaU
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaU
+aaa
+aoK
+ate
+atG
+auq
+atG
+avx
+awp
+axE
+ayH
+azM
+aAt
+awp
+aFl
+aDC
+axU
+aFB
+awx
+aIZ
+aLr
+amG
+ane
+azt
+azu
+aAH
+aBv
+aEk
+ayz
+azu
+azu
+aKN
+aJm
+amY
+aQy
+bgo
+amY
+amY
+amY
+bfX
+btr
+bvP
+bwc
+bmo
+bwk
+bwH
+bxG
+bzm
+bAx
+bBh
+bBG
+bAK
+ciO
+bAK
+ciV
+bAS
+aaa
+bJv
+bMp
+cwA
+cwA
+cwA
+bgM
+cwA
+cwA
+cwL
+cww
+cbL
+cww
+bdR
+mIT
+mIT
+mIT
+mIT
+cJr
+aaa
+aaU
+bbT
+bgk
+bbT
+bkd
+bbT
+cea
+bVG
+cgn
+cje
+blb
+blR
+bni
+bcA
+bdM
+bdM
+cNA
+bhb
+ciE
+cmT
+cnB
+csh
+cHV
+cPM
+bjn
+btI
+buc
+cme
+bjn
+cyf
+bHN
+bHN
+bHN
+bHN
+bHN
+aaa
+aaa
+bNK
+bOd
+bNU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(180,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aav
+abM
+acz
+aaU
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaa
+aoK
+atg
+atG
+aur
+atG
+avz
+awx
+axU
+ayL
+azO
+aAu
+awp
+aCP
+aDG
+cPr
+aFD
+awp
+aJa
+aLr
+amG
+anp
+aBS
+ayy
+ayy
+aBS
+bAZ
+aFn
+aFY
+aFY
+aFn
+aJo
+aLP
+aMJ
+bgp
+buT
+cCC
+buN
+bDj
+bur
+bvS
+bwe
+aMs
+bmW
+bwI
+aMI
+ceG
+bAK
+aMI
+aMI
+aMI
+cjc
+aMI
+cnt
+aMI
+aaa
+bJv
+bMp
+cww
+bMY
+bMY
+bPB
+xoj
+cwx
+cPC
+cww
+cbN
+cww
+aaU
+aaa
+aaa
+aaa
+aaa
+anr
+aaa
+aaU
+bbT
+bEk
+bfD
+bVd
+bkX
+bUT
+bXw
+chd
+cki
+ctt
+blS
+bnn
+bcA
+bdM
+bdM
+bdM
+bhP
+biv
+cDz
+cDA
+cDD
+bnX
+bjn
+bjn
+bjn
+bjn
+bjn
+bjn
+cyh
+boI
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(181,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aRv
+aaa
+aaU
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaa
+aoK
+ath
+atG
+auu
+atG
+avB
+awx
+axU
+ayP
+azU
+aAE
+awp
+aCR
+aDH
+aEz
+aFH
+aGw
+aJb
+aLt
+amY
+anY
+azt
+azu
+azu
+aBv
+aEk
+ayz
+azu
+azu
+aKN
+aAD
+aMe
+bdB
+bgr
+buU
+byo
+apV
+bgj
+buu
+bvV
+aMs
+aMs
+aaU
+bCU
+aMI
+ceG
+bAK
+bAS
+aaa
+aaU
+aaa
+aRv
+aaa
+aaU
+aaa
+bJv
+bMp
+cww
+bMZ
+bMZ
+bPC
+uAY
+cwF
+cwM
+cww
+cge
+cww
+aaU
+cak
+cam
+cak
+aaa
+anr
+aaa
+aaU
+bff
+bgQ
+bff
+bgQ
+bff
+bfC
+bYM
+bjo
+bkk
+ctx
+blV
+bny
+bdK
+bma
+bfR
+bhd
+bhQ
+bpl
+bjn
+bjn
+bjn
+bjn
+bjn
+bRt
+bxO
+bzs
+bzZ
+bBy
+cyi
+boI
+boK
+boK
+boK
+boK
+boK
+boK
+boI
+aaU
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(182,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aaa
+arM
+ati
+arM
+atG
+atG
+avD
+awx
+axY
+ayZ
+azW
+aAT
+aBO
+aCS
+aDJ
+aEB
+aFJ
+awp
+aJs
+aLz
+amY
+anp
+aBS
+aBS
+aBS
+ayy
+aEI
+ayy
+aNa
+aSC
+aSC
+aTB
+aUx
+bdX
+bhV
+buY
+bMm
+amY
+aMs
+buI
+aMs
+aMs
+aaU
+aaU
+bCV
+aMI
+ceH
+aMI
+aMI
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+bJv
+bMp
+cww
+cpM
+bNa
+bPJ
+bRC
+cwG
+cPD
+bVE
+cbT
+cww
+bhI
+bhI
+can
+bhI
+aaa
+anr
+aaa
+aaU
+bfC
+bfb
+cmW
+bic
+cbk
+bfC
+bYN
+bgT
+bgT
+ctA
+bgV
+bgV
+bgT
+bgV
+boM
+boS
+ccv
+boS
+boI
+bqZ
+cxT
+bMH
+btN
+buy
+bRw
+bRz
+cmJ
+bRG
+cyj
+cmb
+bHQ
+bHQ
+bHQ
+bHQ
+bHQ
+bLa
+boK
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(183,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aao
+acv
+ado
+aaa
+aaa
+aao
+abj
+ado
+aaa
+aaa
+aao
+acv
+ado
+aaa
+aaa
+aaa
+arM
+atl
+arM
+arM
+arM
+avs
+awp
+ayg
+aza
+azY
+aBc
+awp
+aCT
+aDK
+aEG
+aFK
+awp
+aJP
+aLC
+amY
+aoa
+ayA
+azv
+aBp
+aCy
+aEM
+aFq
+aNb
+aGA
+aBs
+aAD
+aMF
+bdn
+bdn
+bdn
+bdn
+aCJ
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aVT
+aaa
+bAL
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+bJv
+bMp
+cww
+bNb
+bNb
+bPL
+cwB
+cwB
+cwB
+bVX
+eKM
+cww
+bhI
+bhI
+cao
+bhI
+bhI
+anr
+aaa
+aaU
+bfC
+bgS
+bGL
+bip
+ctz
+bfC
+cbO
+cgE
+bkl
+ctB
+blW
+cxs
+bos
+bgV
+boN
+boT
+bpd
+bpp
+bqy
+cxR
+cxV
+cxV
+cxV
+cjb
+cxV
+cyb
+cyc
+cyd
+bFg
+bHR
+bHR
+bHR
+bJU
+bHR
+bHR
+bLb
+boK
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(184,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaT
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+arM
+atn
+arM
+aaU
+aaU
+aaU
+awp
+awp
+awp
+awp
+awp
+awp
+aCY
+aDQ
+aEH
+aFL
+awp
+aKb
+aKb
+amY
+amY
+amY
+azw
+amY
+aHK
+aMR
+aMU
+aQV
+amY
+aCJ
+aCJ
+aCJ
+aCJ
+aCJ
+aCJ
+aCJ
+aCJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+bJv
+bMp
+cww
+bjE
+bNq
+bQK
+qgO
+chO
+cpN
+bWG
+cRg
+jiZ
+bhI
+cLY
+cap
+cMt
+cau
+anr
+aaa
+aaU
+bfC
+bgU
+cng
+bCH
+bRu
+bUK
+ccu
+che
+ckr
+ctC
+bVo
+cxt
+bVZ
+bgV
+boI
+boU
+cty
+bpf
+bpf
+cxS
+bpY
+btd
+btd
+bDy
+bxR
+cxZ
+boI
+bBA
+bFh
+boI
+boK
+boK
+boK
+bKo
+bKD
+boK
+boI
+aaU
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(185,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaV
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaU
+apC
+aqC
+axr
+aAM
+aqC
+apC
+aaU
+aaa
+aaa
+aaU
+amY
+azZ
+amY
+aKI
+aKM
+aBS
+aBS
+aCJ
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+bJv
+bMp
+cww
+bkH
+blz
+bNd
+bNE
+cww
+cpO
+bWG
+cJo
+cMH
+bhI
+cLZ
+caq
+cLZ
+bhI
+anr
+aaa
+aaU
+bfC
+bUS
+bAv
+bPW
+cBz
+bUM
+ccX
+chf
+ckO
+ckO
+ckO
+cxu
+chf
+cxy
+cxA
+cxE
+cxM
+cxO
+cND
+bpf
+brS
+bte
+cdT
+ceZ
+bte
+bzu
+boI
+cJj
+bzt
+boK
+aaU
+aaa
+aaa
+aaa
+cgW
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(186,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abc
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaa
+aaa
+aaU
+apC
+aug
+axs
+aAN
+bsc
+apC
+aaU
+aaa
+aaa
+aaU
+amY
+aAw
+amY
+aCJ
+amY
+aCJ
+aCJ
+aCJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+bJv
+bMp
+cww
+cww
+cww
+cww
+cww
+cww
+cww
+cIs
+tyI
+cMJ
+cLX
+cMa
+cMj
+cMu
+cMG
+anr
+aaU
+aaU
+bff
+bfC
+bff
+bfC
+bff
+bfC
+bij
+bhK
+bkn
+cnw
+bkn
+bhK
+bov
+bgV
+boI
+boW
+bpf
+bpu
+bpf
+cty
+brS
+boI
+btS
+ccT
+boI
+bzu
+boI
+bBI
+bFi
+boK
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(187,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+adx
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+apC
+aun
+axs
+aAN
+bsd
+apC
+aaU
+aaU
+aaU
+aaU
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+rTW
+tpQ
+wPS
+bMt
+pgu
+pgu
+pgu
+gGG
+vsO
+chS
+cpQ
+cfM
+cbU
+jXo
+cLm
+cMb
+cas
+cMb
+cMH
+anr
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+bgT
+bhZ
+bhK
+bkn
+bkn
+bkn
+bhK
+bow
+bgT
+boP
+boY
+bpk
+bpf
+bpY
+brd
+brT
+boI
+btS
+ccU
+boI
+bzv
+boI
+boI
+boI
+boI
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(188,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+ady
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+ahu
+ahu
+ahu
+apC
+apC
+auo
+axy
+aBd
+aJI
+apC
+apC
+ahu
+ahu
+ahu
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+aXx
+aXx
+aXx
+aXx
+bfW
+tuF
+lRy
+fti
+cfP
+mEa
+cLV
+chn
+eCy
+chL
+cMv
+cMI
+anr
+aaa
+aaa
+aaU
+aaa
+aaU
+aaU
+aaU
+bgV
+bhZ
+bhK
+bkp
+bhK
+blZ
+bhK
+boB
+bgV
+boI
+boI
+ckK
+ckL
+ckM
+boI
+boI
+boI
+cre
+cow
+boI
+cRa
+boI
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(189,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+ahu
+amU
+aov
+apE
+aqB
+aup
+axs
+aBn
+bbR
+aqB
+apE
+aov
+amU
+ahu
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bca
+bca
+cat
+cKX
+bQN
+nLV
+cLd
+fti
+cfT
+cgg
+cgx
+chp
+chx
+chM
+gDY
+jiZ
+hlV
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+bgT
+bil
+bjq
+bkq
+bld
+biw
+bld
+boB
+bgV
+aaU
+boI
+boK
+boK
+boK
+boI
+aaU
+cNW
+cNX
+cOf
+cNX
+cOm
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(190,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahu
+ahu
+amV
+amV
+apF
+aqC
+adI
+axH
+aBB
+bsg
+aqC
+bsB
+amV
+amV
+ahu
+ahu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bRK
+bca
+bZI
+bZR
+bfW
+qHL
+eTZ
+vcb
+uVD
+mqB
+dpO
+tZC
+qWY
+rUl
+cMw
+cfs
+cMP
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+bgT
+bgT
+bjr
+bkr
+ble
+xxP
+bnC
+boD
+bgT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cNX
+cOf
+cNX
+cOm
+aaU
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+blj
+aaU
+aaU
+aaU
+aaU
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(191,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahu
+all
+amV
+amV
+apI
+bsw
+auw
+axJ
+aBE
+auy
+bsw
+bsm
+amV
+amV
+bsJ
+ahu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bca
+bca
+cKQ
+cKY
+bQO
+ony
+xcO
+hKC
+cVO
+sRD
+cMe
+cai
+rdF
+cMk
+ceU
+cMJ
+cxc
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+bgT
+bks
+blg
+bgT
+cgm
+boE
+bgT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(192,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahu
+alm
+amV
+amV
+apI
+bsA
+auy
+azs
+aBE
+auy
+bsA
+bsm
+amV
+amV
+bsK
+ahu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaU
+aXx
+aXx
+aXx
+aXx
+aXx
+bfW
+cww
+bUa
+cMr
+sRD
+cMo
+cgz
+cai
+fkx
+cMl
+cMx
+cMJ
+cxc
+aXx
+aXx
+aXx
+aXx
+aXx
+aaa
+aaU
+aaa
+aaa
+bgT
+bkt
+blh
+bgT
+blh
+boF
+bgT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(193,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahu
+aln
+amV
+amV
+apJ
+aqC
+auz
+azs
+aBE
+bsj
+aqC
+bsC
+amV
+amV
+aln
+ahu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bSb
+bSb
+cKR
+cKX
+bQN
+cLb
+cLe
+cMo
+hMZ
+nAF
+lcD
+cai
+fkx
+mNN
+cLo
+nBM
+cfD
+cKX
+cLt
+bkZ
+bkZ
+aXx
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+cqX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(194,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahu
+aln
+amV
+amV
+apK
+aqB
+aqB
+azI
+brn
+aqB
+aqB
+bsE
+amV
+amV
+aln
+ahu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bSi
+bWp
+bZL
+bZR
+bfW
+cwA
+cLf
+cMo
+iAW
+fIw
+wWH
+ntC
+nEX
+hDz
+cLp
+oMB
+mxW
+bZR
+cay
+caK
+caM
+aXx
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(195,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahu
+alm
+amV
+amV
+amV
+aqI
+aqB
+aGO
+auy
+aqB
+aqI
+amV
+amV
+amV
+bsK
+ahu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bSb
+bSb
+cKS
+cKY
+bQO
+cLc
+eIh
+car
+tXV
+tZj
+jml
+cVq
+cMc
+cMm
+cMy
+cML
+cLa
+cKY
+cLu
+bkZ
+bkZ
+aXx
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(196,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahu
+alJ
+amV
+aow
+amV
+amV
+auA
+auy
+auy
+bsk
+amV
+amV
+amV
+amV
+alJ
+ahu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaU
+aXx
+aXx
+aXx
+aXx
+aXx
+bfW
+cww
+bhJ
+cMo
+iAW
+cJu
+iAW
+cJH
+cMd
+cMn
+cMz
+cMJ
+aaU
+aXx
+aXx
+aXx
+aXx
+aXx
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(197,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahu
+ahu
+amV
+amV
+amV
+aqI
+ave
+auy
+bXH
+bsm
+aqI
+amV
+amV
+amV
+ahu
+ahu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bTH
+bTH
+cKT
+cKX
+bQN
+cLb
+cLh
+cMo
+iAW
+cJu
+hlo
+cJH
+cMe
+cMo
+cLq
+nBM
+cKZ
+cKX
+cLv
+blL
+blL
+aXx
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(198,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+ahu
+amW
+aoI
+amV
+amV
+ave
+aIR
+auy
+bsm
+amV
+amV
+aoI
+bsH
+ahu
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bTI
+bXe
+bZO
+bZR
+fuE
+bWK
+cLi
+xKr
+nvn
+cJu
+iAW
+cJH
+cMe
+cMo
+cMA
+cMN
+aaU
+bZR
+caF
+caL
+caN
+aXx
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(199,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+ahu
+ahu
+ahu
+apX
+aqI
+avk
+aJq
+brp
+bsn
+aqI
+bsF
+ahu
+ahu
+ahu
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bTH
+bTH
+cKU
+cKY
+cLa
+cLc
+fgS
+car
+iAW
+jon
+xjk
+cai
+cMg
+cMq
+cMB
+cML
+cMQ
+cKY
+cLw
+blL
+blL
+aXx
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(200,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+ahu
+ahu
+apC
+apC
+ahu
+ahu
+apC
+apC
+ahu
+ahu
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaU
+aXx
+aXx
+aXx
+aXx
+aXx
+rTW
+wbu
+cLg
+kOG
+dVR
+xCy
+sHB
+xkC
+cMe
+cMr
+cMC
+cML
+cMR
+aXx
+aXx
+aXx
+aXx
+aXx
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+blj
+abp
+blj
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(201,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+amJ
+aaU
+aaU
+aaU
+aaU
+amJ
+aaU
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bTK
+bTK
+cKV
+cKX
+bQS
+cLb
+cLj
+cMo
+qvB
+cgh
+cgA
+chq
+cMh
+cMq
+cMD
+cMM
+cMS
+cMT
+cLx
+cpX
+blM
+aXx
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaU
+aaU
+aaa
+aaa
+aaU
+cNX
+cOf
+cOh
+cOm
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(202,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bTL
+bXR
+bZP
+bZR
+opd
+cwA
+cal
+cLl
+cLs
+cLs
+cLs
+cLs
+cLs
+cMs
+cME
+cMN
+aaU
+bZR
+caJ
+bpq
+caS
+aXx
+aaa
+aaU
+aaa
+bal
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+cNy
+cNy
+cNz
+cNz
+cNy
+cNX
+cOf
+cOi
+cOm
+cOr
+cOl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(203,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaa
+aXx
+bTK
+bTK
+cKW
+cKY
+bQV
+cLc
+cLk
+ctk
+prx
+vxU
+cLW
+ccG
+cMi
+iQY
+cMF
+cMO
+cMS
+cMT
+cLy
+blM
+blM
+aXx
+aaa
+aaU
+aaU
+bal
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cNy
+cNz
+cNz
+cNy
+cNE
+cNM
+cNO
+cNy
+cNX
+cOf
+cOj
+cOn
+cOj
+cOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(204,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+opd
+aaU
+aXx
+aXx
+aXx
+aXx
+aXx
+opd
+cww
+cww
+cww
+cfV
+cww
+cww
+cww
+cww
+cww
+cww
+cww
+aaU
+aXx
+aXx
+aXx
+aXx
+aXx
+aaa
+bal
+aaa
+bal
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cNz
+cNB
+cNB
+cNB
+cNF
+cNN
+cNR
+cNY
+cOb
+cOg
+cOj
+cOj
+cOj
+cOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(205,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+bGh
+bHg
+bHg
+bHg
+tpQ
+bHg
+bHg
+wPS
+aaU
+aWj
+cww
+cJm
+cww
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+bal
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cNz
+cNB
+cNB
+cNB
+cNG
+cNN
+cNS
+cNy
+cNX
+cNX
+cOj
+cOj
+cOs
+cOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(206,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aWR
+aaa
+aaU
+aaa
+bal
+bal
+aaU
+bal
+bal
+bal
+aaU
+aWj
+cww
+cJn
+cww
+aaU
+bal
+bal
+bal
+bal
+aaU
+bal
+bal
+bal
+aaU
+aaU
+bal
+bal
+bal
+aaa
+bal
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cNz
+cNB
+cNB
+cNB
+cNG
+cNN
+cNT
+cNy
+cNX
+cNX
+cOj
+cOj
+cOt
+cOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(207,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aWR
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cbS
+abM
+ccH
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aWj
+aWj
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+bal
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cNz
+cNB
+cNB
+cNB
+cNG
+cNO
+cNO
+cNZ
+cNX
+cNX
+cOj
+cOj
+cOu
+cOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aWR
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(208,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abF
+abM
+acA
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cbS
+abR
+ccJ
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+bal
+bal
+bal
+aaU
+bal
+bal
+bal
+aaU
+bal
+bal
+bal
+aaU
+bal
+bal
+bal
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cNy
+cNz
+cNz
+cNy
+cNH
+cNP
+cNU
+cNy
+cOc
+cNX
+cOk
+cOo
+cOv
+cOp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+cPl
+abM
+cPq
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(209,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abJ
+abR
+acA
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+abp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+cbW
+abM
+aaD
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaU
+abp
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cNy
+cNy
+cNz
+cNz
+cNy
+cNX
+cNX
+cOl
+cOp
+cOp
+cOl
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+cPm
+abR
+cPq
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(210,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abJ
+abR
+acB
+adc
+adc
+adL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+bGK
+bGK
+bUe
+ccc
+abR
+aaY
+cdb
+bGK
+cdq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaU
+aWj
+aWj
+aaU
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cPd
+cPd
+cPd
+cPn
+abM
+cPq
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(211,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+abJ
+abM
+abR
+abM
+abR
+abM
+aZG
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aTd
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aTd
+aaU
+aaU
+aaU
+aTx
+abM
+abR
+abM
+adl
+ccr
+ccO
+abM
+abR
+abM
+aZG
+aaU
+aaU
+aaU
+aTd
+aaU
+aaU
+aTd
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+cNQ
+cNI
+aWj
+aWj
+aWj
+aWj
+aaU
+aTd
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aTd
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aTx
+abM
+abR
+abM
+abR
+abM
+cPq
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(212,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+abp
+abJ
+abZ
+abZ
+abZ
+abZ
+abZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+bGP
+bNo
+bNo
+ccf
+ccs
+ccP
+cdi
+bNo
+bNo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cNI
+cNI
+cNI
+aWj
+aWj
+aWj
+aWj
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cPe
+cPh
+cPh
+cPh
+cPh
+cPh
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(213,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+abp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abM
+abM
+abM
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaU
+abp
+aaU
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaU
+abM
+cNI
+aWj
+abp
+abp
+aWj
+aaU
+abp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+aaU
+abp
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(214,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+aaa
+aWj
+brs
+brs
+aWj
+aaa
+aaU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(215,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+cfq
+cfq
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(216,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(217,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+cpB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cpB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cpB
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(218,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cpB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(219,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(220,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(221,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+cpC
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+cpC
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(222,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(223,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(224,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(225,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(226,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(227,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(228,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(229,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aWj
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(230,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(231,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(232,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(233,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(234,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(235,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(236,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(237,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(238,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(239,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(240,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(241,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(242,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(243,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(244,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(245,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(246,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(247,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(248,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(249,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(250,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(251,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(252,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(253,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(254,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+"}
+(255,1,1) = {"
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
+ckl
"}
From 475a5460332d80833421e8e862599024f1acb98d Mon Sep 17 00:00:00 2001
From: YakumoChen
Date: Fri, 10 Jul 2020 04:06:55 +0000
Subject: [PATCH 35/51] adds wedding crate
---
code/modules/cargo/packs/costumes_toys.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/cargo/packs/costumes_toys.dm b/code/modules/cargo/packs/costumes_toys.dm
index 9a94be7f12..08f9a927c6 100644
--- a/code/modules/cargo/packs/costumes_toys.dm
+++ b/code/modules/cargo/packs/costumes_toys.dm
@@ -304,7 +304,7 @@
/datum/supply_pack/costumes_toys/wedding
name = "Wedding Crate"
- desc = "Tie the knot IN SPACE! Hold your own extravagant wedding with this crate of suits and bridal gowns. Complete with champaigne, cake, and the luxurious cost you would expect for an event to remember."
+ desc = "Tie the knot IN SPACE! Hold your own extravagant wedding with this crate of suits and bridal gowns. Complete with champagne, cake, and the luxurious cost you would expect for an event to remember."
cost = 10000 // weddings are absurdly expensive and so is this crate
contains = list(/obj/item/clothing/under/suit/black_really, //we don't actually need suits since you can vend them but the crate should feel "complete"
/obj/item/clothing/under/suit/black_really,
From 1faa8915f87147ffaa5d6fe9ce51e8139276add5 Mon Sep 17 00:00:00 2001
From: Detective Google <48196179+Detective-Google@users.noreply.github.com>
Date: Thu, 9 Jul 2020 23:28:45 -0500
Subject: [PATCH 36/51] gateway center
---
_maps/map_files/LambdaStation/lambda.dmm | 1 +
1 file changed, 1 insertion(+)
diff --git a/_maps/map_files/LambdaStation/lambda.dmm b/_maps/map_files/LambdaStation/lambda.dmm
index c6553c728e..4d2d8cb624 100644
--- a/_maps/map_files/LambdaStation/lambda.dmm
+++ b/_maps/map_files/LambdaStation/lambda.dmm
@@ -33412,6 +33412,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 4
},
+/obj/machinery/gateway/centerstation,
/turf/open/floor/plasteel/dark,
/area/gateway)
"bkm" = (
From dc1de02b744c244b1baa1578e254378e379f2c84 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Thu, 9 Jul 2020 23:44:17 -0700
Subject: [PATCH 37/51] Update human_movement.dm
---
code/modules/mob/living/carbon/human/human_movement.dm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm
index 0579c23120..22431f9978 100644
--- a/code/modules/mob/living/carbon/human/human_movement.dm
+++ b/code/modules/mob/living/carbon/human/human_movement.dm
@@ -36,8 +36,9 @@
return FALSE
return ..()
-/mob/living/carbon/human/experience_pressure_difference()
- playsound(src, 'sound/effects/space_wind.ogg', 50, 1)
+/mob/living/carbon/human/experience_pressure_difference(pressure_difference, direction, pressure_resistance_prob_delta = 0, throw_target)
+ if(prob(pressure_difference * 2.5))
+ playsound(src, 'sound/effects/space_wind.ogg', 50, 1)
if(shoes && istype(shoes, /obj/item/clothing))
var/obj/item/clothing/S = shoes
if (S.clothing_flags & NOSLIP)
From 13d85a4e0c53f20fe881ba6e815858f496abcb13 Mon Sep 17 00:00:00 2001
From: zerothebigboy
Date: Fri, 10 Jul 2020 22:13:40 -0400
Subject: [PATCH 39/51] penis
---
icons/mob/clothing/mask_muzzled.dmi | Bin 49735 -> 49720 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/icons/mob/clothing/mask_muzzled.dmi b/icons/mob/clothing/mask_muzzled.dmi
index 0a10f1edbe7eb6071428e2ce640ba4ec53aae3c8..a1404cfbcef77f3722933215959d2e91aa3d4a89 100644
GIT binary patch
delta 24974
zcmZ^~2UJr{*9ICD1w}zcr5B}%D5&%j0-{1d1?feCi1a4X>p>AwX-Wj7caaX#qy|Ai
zLPQ*#0Z?{@!$RUt
z!=ag68GYkoGm9!cF)e+sxCoBQONcX9@2dVVd?fSISFG;pP}>uyLZ^qL-eqQms)a9~
zi`~{8d?tD(R>g`oZ~Qlw%c+Y*Tv{q|p0K3n>bmH=evw*csH9
zsc|x{av3)YAgvGeY48`H5xfgBv59Oaf?>co4WF>+-sK(0QPr$At!yur)gsGz8)Be)r
z#6n~$_jWuUJ~A+PTIWM3iQ<;iirw1UidDI5Xc$-RJbDSaJXDzQ?%lh4NF*}jRtS!z
zs%D^lN_XLhs9FK=@ZpCKt8m8XPuJCAiF)6SmunW9=gv=ISh-lj)hEZQq~5AH4Ha7`
zu|Yp`E1s?$DYrZDO9sfNBAeI)O%|ntsQj!y9J6}`#BPc!90@yyw5=6dT4ChtJp&S?
zJ8y@k(Hbu8nqDsrYn|?$(ERZ#!8`6PU)&Yzd&FnojQCCW@AaG7r5akoYPKFlGRylU
z#K$jhDJ#Wa5C1*WLiZv1>BI
zz~2>j+hfZBS7Naf101O5rTG^eW8wJ%QFxIb+zYSrnMu7f_2!IVPlg(0}96(a|vsfZ1Ie&-?XDYYmS<$W~K4
zE~8e)fT}`Sx2dA+7!}1~usd0903Z|gN6u1pyg~gfX=2YMWhEu0>f*XOv!h3kj#WCK
zWnCve5#jE}7G7~n5I6jHSMzhV6NWj>w`dzbT3T)m^rqFQTj2HH?uIBj6ApRZiosv}
z-L9O%W+k7Fxxy49X9;#(=e=Ro@n5JI;%4US+L5t?QsJ^D4fGRgUYPKUL=9;EU
z>iZWoh)n5xRGm&(yk?;4)};_X&JC_s0!(BGlh6?Z&)5m$mt20oDC-i|eEZN(UZx2v
z!GXh{JU5D7v6S|_Ho?oQFqD~P3Ye-10)`59!VUGl^}%4j-*Rte=*I(9M{mMZahHT;
zR=~S@%`L*!H~rtSbyrQl-X6%)!7kFUNitnU&?YA9eM+k?Z#_wQ_wGboTwJ~nVJaMarsP3%*-3!&=543p
zqI{X?fJdc<2Sn+CPe+5TL5qSYe#BktBbldy8Lq=%@9X;KrHQem?>`A_2>EbDMO$o|
zOM5ggcL9NXPghUxEHv#q>ciEB24$DAO0lI``I;rZj```BD2s`J^M?=kFg+Xyc(-P{
zFWeyebQ27ws-I&B>ta}k0lFwuiHy@Q$HHHM#Da!~N3lEekJvB9*x{R@$rC0!%j)bfoyq~Xz*H}$g4UHnxgx?_r
z1j0Jcyt{qrK20Y#H&+CKKp5a{O5@_=X_mpkG|aHi=;!|ae$C+EV0m==XRvBsFC{(Q
zG6e}(v!6eo*c3!r{>xWS{GPyDW!ueF7$Jb@ki2?TI+R=)VX^)(nT@i)L#p;`V!8r#
zvZqYRc>CG;8LlqOIgw0EA!mSC{*p~>W4GKJ1`zG^8-vKiw-)QYnd++xkSoAxf#D}P
z&(=3Uu3`l1ge$2U1L2L>hxJ}=0QtYStUcIQTYdf@&$T?ghU$M1Ty
zCpCa}w>aM4O7dcwnQ4nKG&6HdDQ$~j7Y#s(2|{~Sw(H@Mvg=8CMbPs5&WSDkqXDx1
z!eS+N%fYtlcF%Lr7E@Aq)}|WGxiKTTkf@7`islXT9WU(w2vd#qLJqU+^+HIfzvgBW
zTa#=8|G}8Sl-RD<_a%#!ARk53S<7esI5X?Ig_~b=lyo{097$k=WYb0!Xc@Q}CR9%)
z4CKZ9>guw#toI>A2c6=)`D2^L%6T(q_|tkVacQ8#5v&QO<(E?Nri>=10Ws4Pg(X~zmBEgcP6Z=+C8zk(C9`32#d|@3>WB0lTdn7(5+F&)Ag8-zf`lfDYl|7B4}=f#JK@)F0(f$1^>=@o
zU8#k5=Qz!cGH@$s-Woh4q=RNr^K5CirtBic9~qzg=&Ew??0&k61xkX+(!62hK$|cH
zkQeH_$O%)8*5j#N;G>%L34WAsX4O%LVt>v46AlLoE<3wQgvA$(e41mo0)KzHVcYWR
zxFY4Zl*~$ZV}J9aH@A!r;IU5VNmW{j#O3RYqVuUfcmkiFUwan~sI}4l(p27P1mOn=
zEo5<;*940p^<&`G9UpZNRJ~Xcua#jzNlEO0`iqp!ii(Q3tyL
zctu@s#J8uVD^cInG|?{n;?ZKThk8mC6h@-!ywJI{j`ps;Tvm^c
zHU=)u_;r}imvKydXlMu`=)n7n>O=@u7U-m_lsEE0RB@t{AJXx;`S}7n
zY??nvC82N5i{+)9r4;G7x|WC_i*21J$;B0?E$Y2poFAap-!hqjshhyze!z4U1C15j
zBYKZpIs@%xNiDd0#vWn3KdAg7}*2$3SVASuLL}o^la?x=r^X}!HgaJnGjl6I8A(j
zf;Sr~xInEL0-ly+ge4pFeoB&Ax%$Rq{`ZYgM%Ll4HeJ#il>?PC1fa&7!=N`3BF;&U
z>#Fpz2EXkm<7nQy6X{?rjl5FjJbJVEQEh)huR3IvD{1T(E^sY`H9?y!zhew|dsoM)
zTc&JULS!8=p##Bk8JeN7#rc&`B_?_1>~+QqS)C~{9_f%#$^H8ECbB@LBw%{3B!Ybr
zLCpgnCXRp|pLOH{aJTUX_10=af|lFd&%rm(RyX^q34V3^CG}Q7Yeh-7*(->Hdr|=P`dmlav@Tgd@uf`jp9xBI~3Ft*APFJap7xA0Iv%%ou-{Q0KhucU`HTi
z0Mky|3I9Zg4zT+g=!fpnz=rDm`%#+#EKGcdIbbk8tIeZ)M-s1zi;MrThHWxEhJ`e1
zc7$oYU)Rs7Wv~iX`xI&nnSoou*zesIE1o3*?-|x^z`!%jFo8}-N5_-Q$)B}5l5A{j
z!d_PIotQbSY%il_w{E8I)68E?O@qCEkkWQi((zituc~`(3XF%mwgFUNRK5aiL<6Rs
zWq`VV%=F5TjJ=1m>)K1*?Tn$DaWd8EYKuxR*ph_JVUsIYPeM8qKYaDF3@PBiV0dEe
z;Wn{)|6rG
zx4!YEe}A7p2bYzhwSohsAA#YQKD@zu&=(aF*?bs(2>l&phyL^aHV`7Mudi=?kapy(
zUh3WYc4_(J~
zjVQBmzSA(6P{!lmR6_&$MAfOW2{W^bjKK-QroO3%lScP|wlxKb|A1tA
ztSZQ0b7SOvM)x&~3xCuS)e9UPy1yvE1T4-phunR9W5n}nGqizaEq_=&a9iH{E}F4P
z+$H^-L*JzWI?*>azjyguwI5xp8nhnBOKx1HR2-(Y7Aym8v&_!S?}(!xDAzC;3g(n|vmNxq0o%~L}C
z{o{1Dz@!fYjA$$OH|WzJIDw)s`S~}3v2>l;NUnn9Nx6b9-@YfI4uJtv=Ermnm|M%d
zRyuk51JJ3lfpHd;XE5Uf)3%C&R)_pc1f+Is*_4&5*HJTM(PHr>Uk#Yt?d2JPFcBG9Em*(Z%8ZIKu>O94$G25Lj
zV)J7P+QLYL0vI?Mh_kp>@S%PRJ7thD`}+P4VIQIBOfHpu0clGu1$>BkUyXH{-bSd(
z5N--OlQ9?Q{4pZ|?juBuB!|cG0y8Q`>f^_q^aL5!JC{B@o#KNi1j}IHOL@(Q?n4=)
zGu${%GMcW8LUe;6Z>t%g`yO3GBdm^I5-1)T9OS?(KnfKKdtKQv!>oMlrn!-k(VGtF
z+RIFjzo1EOmyW>%JaS!NX#Qt>0PN@0V(z+rQ;yFwhcBLA;9(f-4%n3WJP$oEF&nZO
zE!X|HxNY?nh=-vbdy~*ZCp!m5RPSuie{zYQ_d)%mi?G2DC#FU0J)G`!_wNeP&5V6w
z5++Jc2H@s@gT9md4zg6bGL|=Pki*)YZg(eDG8T0$SPg*7z~b!mXz~fqiL(3`S}AH9
z|3gTAI6GuiZkrio3k)@6SiXH&bLU_3l@_a4d3rsJa6Ffj#JE(>VX$;?K=>-}OvbbS
zN6b0|hI`o{d|OIKqsn$|H&
zp7>5Kx;&ZtVxM!E;84mS_XqW`P=uoxo`t|F?
zCWoprmr(m;d3yd&Tv1Wcd%VXp51eA^3ZIZ#z{zF+3g$Jx(iNuV
z^HP7gEu?0d8P}R#euJ@^MfE4v4-fKgXgFa+VL5DeH(Ddiy8hSJ0qmC6jx4a2kC8{f`2)7p}s
z19V(q*paud`+*GVH5mC_x{=N%_mVSpnuGiA8%JNJ&7LPhpKRa1MOO*_`^Aa-b
zoG%bRPNE;Xd7%X?nIH|~2X1Q7{k@Yj-P^<7+a8?c$QOXT{a@S&
zJ$V9qn&ZhTwiFENou?Zjf%}7yW?h(!La%#4k=cp;+5}NlmVaIV>+--qCM+c0j`KIBX-Jb2T6k%uK&^9M#D_vId!aDnwDwL%}DcOHG^zcc=aW3#?wpJwRpvyQHN
zu{qGJ5`XQWhSObCCNxbity_{4$>q1kI#6k^-w3nk6|i%#s7{){dv`LF&fRR2mCe^OpRbN_csxj+eIR4{B>AkXN*
zT8f#hko^wJSfJkV|0}Zy>D>^z*9#F|J@ha3gd7z57YYT*Avapj>M~#gg_W;$AM2dv
zr;mr+hah4|IuirbhB?njJ*IyrMP>g=63HgfXUeci36s;fAZ+|!jOaX+Lbp3+LU9+~
z<%^tm^f|ha;0(ofxhI
zFxcV9w#NhIFvinQ9oU;8iKzYal3CiJKPQK_m2$)SwI6i{cmD0|!<*U)_S?r#K>F3+
z2-aNVcQlH`i~QpT8)Ni!bx%`Zd(Ea6JG~iq{&9h^7|6%bouA6yzBk!2p&sPlVWuNX
zxMirpwuDs6XV3`(k$`Tl7swudAEdm5kYm9RsHFZ6gdwi$1|&f4KS7`F
zpW=g*iQ{9KePKbQU@5Pa1axJLU9uwlUs=i31`okh$;ff|<5=QqrP6PRza@NYcKHZ18rmWsxNod3jE&lMX1H~U_pt9*3V$jf8ccL
zMHft27?oAGyZ$#*GOhIJzu+5j(t(n5VHfdO25=^OZYRr4G5vV-auFS-|GUZ~{*G2`
z@N?S!{{&*`jrpn_r;?ZP+koc?(bDDczmPmT_@Ybt_{KKk+}qpEzo8s040aPWM&qSh
zJQx!f`p*+<26d!
zg2K02r_>%V*4PaAu|EjNvI?0(M%Kz|z;nr@0`hFSy%#Li9)&O#-(C7`;k3-MmtBQt
zgZ00y_%wZ|cuuc2K3{%8Aj5SEh$y`Q1uhh($H)l5SeZCLU@
z=gMT$agFM8$d{Rf&=pN}i)ZWV8;iT)_tn&1Kq2S#^s6Z|E2FV>cE6c=9=%+KX!}HF
z`KIE;4A;>DFd|gyAK`36E&?HrQ*+yY{so5HLPQA5NiG_n{qzrmk5aYF9znQ8Su>_B
zLu+9Hc#n#Bd8ODA9C${hgNc73H0I-aNYvG>NtCFFwwGbD^XSjf?&2#
zHf=t|qvx$f@OHP{&faW{dB7sf4hpVSs!{wX;4|DXMga_>WUfdK0)CCTm3+9q@eYCnsTFj0y0}l4#!F!wIQ9{6-
zc4dy|^VUv$>*X^GRuS|}_rbk23|rH1kty4_caOq?J+zeeyG&fr!qz|!g>1uflywYtEFuFB%qmS>+*r0U<~CPbq<>)!FYay5MhVgLOi&_wtlA|RO8g2V
zD{Q;BR%tq^ibL|Vf9L0iYo~%HKZ@xW5vN~syS^E^)YlLz6O*r>H|*arP+QtV%1aL(
zBhOG;gTrxks~wm2pvFqh5XG5QJb$;vJT{uYcXVu|gB4ih;g*}x-^&COap3;;LdUN1
z&f0j*u$PO+b7_DUsBdDjI2yA$!Z{0-L$d5?pT9`Youl(>o233dn#+mGay>j^ygQ){^n4w=JC?9tJlB7o0?JNYkK
z$8*BHL%3l|+oI0%E%jg=PcuT$He-q-xv}u-fCngdes6jC@3R>SYVTpkq+=`gbSg*q
zp*_ud!Q9(pSVLkBEDT+QVW%3Oe_5I+_b65{FgENuo?dfq@(FYM%5}2z71&h
zWh_l#_5_rdUq7_%DB(2&h%=XT)-e_Awp%M;!wrnZSpY;C)7nLO4Qj8!Bqa}iuY>*VY27kX5Bs*r%tUp`|)i|-z
z_V{2e{TxYwVLbeWLIj~GGZdxgR~2O?jLh6}v^m8~oFiO#a*g2L_M-8k?7AGa6mIl+
z$FiVt5npbtag}(mTZ1vgT1Pu9Vnpt!hu6ZvgKe*=l%28M1k@EVGiEWaR}CY~Mvzw4
zc`lvh&huF4DKB?Xq!I^qrUD4a*x^#kQnm;37t!auqpl$fNlUZW&WG=HbZ%Q=T4h|u
zqy>@itt}y>4q`uN|9MyZ$POytZ+<|e)bJ*{$D89~JU3yNR;~(4eFXyw3y8D)p!|iy
zkjI9SDMCvf2wFLs(MRxzS>;dkHJ|GY{YcRzw3QFXvBqzgrHQ}LfX^L((wUL>&hpK~
z;v?@CT%U}2`h($58aU@5e-EP??iuwFYXm3J;2@=;gnGU>W{?oPGdw3+JjG6(=vo8n
zCKQBRLcM(zDj%3N>Z~yaCO`YI|5Kmz32o#L9*dOPeeFIQd5q^vN9<6!zpq88xEX)`
zDPex%GyY?~{mVgha}Sw;@7hEJngVvq;WZ0*8B)@XOCE97Pl@+T#m}SCuR{6!Oh^Tj
zp^^c!sa(f-;JI60v%FcC_Gy$K^jC!#;5PR6FK9
zz_0fWT21FUryX3nJQ03}_S{PP)!OKmsa|Ws_pO
zdvvimI9jnbgePpSB!?F(?8!*LU`N+%+fbqL>zr=Xoesh#oBRCVp}>Z3R1wB9x_6tI
zd6N39<#@Tv3a%8FbtmFCbm&zq^8{L%?e~{QtE#Dge~CxoF0Ss5yGmjFHrvd`??!T1
zHJr49^l)ggFS{Gqm~K^vDndjo^^B1k^|bDY>9Tz*p|j6-fBGuWVjkg&8TE%73OwTV}Z@VW(TJ^iv)zdH7lR838HpO3%mPD
z0hksKzK7(3%8Nt;S|(oD>RlER4RrCKChH5k#1l($I7P?-e#FH-e;)9#9!#8g`Q)H33Tdq2vlnxYW@{S+bbkV^;={1(*s76MuScykfx6vcx%Q
zc(S0vE{X;UbK$0K7C+`x0e(M=EUFEswYP>ami$4L{>7I{KNevBxGrx~$CbfJ3Pj(e
zz48==Q8T6zYM1)mSaKj({l0?Zx#RRs)|V%f=yp!+cM>fV+ndjw-_n$3kpOfQV21+b
zBxs5I`@QsLLn{;bP)~_KEdC4Qn>pe#EX5Xw<|x2{m{L4!}|;BI>@m#xh1K`
z%ona|ax@7o(X9{!QP4N?L^zdwpRJ1XcJQbK`r1Q;EAQ$_E7iBK)LUz`>O6U5eRGA`
zGImhE|1@iR%!0}R;I=+dt7!Hv$g7wH2*>CH3tf#hl6{$p*EXHqg$A80Jo#s5*cfFw
zf^+QUwT$-O@dMU`7h~g9)0-sk9hE?rRk$v90BdAe<0tl&V}g>-t3142#cS2}L9)Ai
zCgKAAnHnf1WZzMZtTmL!1=F6a)_vD)i#h77dyGl;
zE)Cv^g~PE=wmJTeu_fHYUO>l&h`|j~AOC&JVC~1LIC}>rHgqR%;m3tT3g(zWsP)tI
zjc559{Z%+i{_&|iopiH+!*ozP_ml@R
zCbn-@w)zw~e&j4(e1i%;wyc|8{&k1*>cT=G@5GTs--lCtFMVw$s)5V?BiXHm<*8WI
zslbP0XQE%1>=DFEKBD_xupJ6O&%F?2eCSMBWu#q3v%b8*@c{cl$k1!$jM6zV({Q0$
zR)yzHO3dYmCN%sd*HNh?{B|As(M#@IGjBzQl{PXkBB{y_bm^cWIbPAwAk!qL0qv1<$DH7cy8^Ud=uVz(U;w7lsI`m!MevpVakX
zlkcSLnxKpxy{#6&0^Re{7uw5fqhd2df~%4Fw07(|meGDttiN1Y{UwT796q@DTu{2zZ
zl}D{p@{PNM*A1yHHjK+_-}Jq8zGH4&YP7Lk4#<4#)dY|Tgtd_hJB?d!AE*(Urp7r3
zQ@dUw#*5VgsT!&BePdMbDQfp9*~a<9G|IOKvNi21tS?LH-}?=%3Ff;zdwi3&0T<^7
zXJZJ4OPB5l3Hxl$O}wsPDqJ2`hr}}ST2qR`$lgYyRQzpl(&GbkvWktQDW!cQ=tb52
zDFe(BT#hdzL@7$7>s(hD+wZ4QPHjzrT=?r+KkZ>=
z9gNi^Ry>1mjV*Ou3n)r?Acg-}cy{!Kao!KovbVls
zh(Ze7ioR%^p9tGfFGzOu<3;KNFL8S%5f6lB}%}Ntx+Y5jg%JpwLO=cyt
z(L6$8QmqLFHGHB*0X)rLsil4gx0h`~f7-$Xm*Ff)OsBE^;y@{&=KG}{qC%JIuBjrsUU*hxZowU6hBCvB&;x|uOJRoh(
zRy~D+>m=vZk@C-(T}vv#%7}K-whA^`PVz6q3#bra>NnKFe9TJ_-<
z_*qddpPvqS%OAw#xVSx@wY#?y{gq+Q=<}v3dI3dM#rk>C!?)h!XXR{F?)T-u=9|!W
zX5U3_$1VCx@+|LCAIt=o!NWg
ztMBS^aC_T**~;nOxQq{dJ<@Jd4ZT?oeK6hgwF8>{P-|lv3e{o=k#kL}#-}|1Tx+49
ze9cOU-`5WLk9%d)w6ABF=(}H<%D1|v9JlLZ|r+UwSgbQce&BiI~{OK+D6&|df;IeHUh-kmcW&E^9-dc0j
zjzk6{rCytuf;e{X1177t%Rt}YxV>oa2Qce}Ztdt-Sl03)~5NvV$A-a6lzm%8c+)Mrqy7vNE_5VS~}
zH<;Dv=FKkQb_ym^m9L2{eO3vLivQ?25Yv>N_YgNaDk!&HS8fX|N;)y7WMWd-zsdw(
za{D-M?`@SvKDirwBIp=*x5V!O?pzxDSW4M+;3x}2&Ap&2gS|H6vM!GbWo+t)GP|eE
z_BO7i!I>_o1V$|N&Oa*_8!x`kjq{hecZ>gktfudaG^r3hpGYT^Vhy&>ee(HGZBX>*
zN$=D|c>d3GsI&Kn88N}VXbK`g@54R{OxrmYt!|O-{C2tg@qBSwOe6Ha-RNJEF2&>S
z2SM&zZI5SX4W}`=RcFe~KqnP5yF}4Wpyjt`R%rNJ4glV!uYSs6SKY&@F9-g3Zf@=h
zQ+oD;RK+Wjk~&aHtq}^9rs%c&<>iI~)Po>KRq7s~3A*Er=PY9^5jD-*qCZO0%^y4C
zCe|Wi;#YunszGe!?lx8k2}-T!k!P~!jM@=%{pM`DwM}a%Z39-x{f8dmY|mY(r6-Cl
zE?j#^8nd}LNwz#+RYH1xAexq#T87n8mKskuJzw%xh_~J+%g*DO>$p)Pn|pYa)K-0`
zw*ZItir{gICEi;Sesk`w$9@KCxp#hJM3#i@ynyJLLkqu?03ODcVRu|eT0uJ-N&GUU
z*ySOoq8QGco%H15)5{ExF&`5WoECa4%BM6iYhqpKqC2xv{W0df)$K
zrRyrAnlw~K6MlfN(A)z7ci
zc}RJxP)g$y8&Jnr(jXfy=Ch}txwYUXUE7*|Vric{3hFkti@vTl!fm6SJh)P
z{iN&a=98E~L48;0P|1dp?=;q?4Ml9bkFwELnLCN*mTOLzQ-2%7DhY)f9o83v2LxuT-W&n_MFAdBeUHcqIw=R>8H3
ziB{6yl8=>l$+6-s>tmJdw74s!jXvwmq4u|GC*beKw8w>CqSW6Q}ifXnM
z3U6Dr);82XPygj@2%h~A(OJyy-&bbLypk)tScM-1R>s5O
zLRDB5*&c#i%3yY~V|(3|YP8-~7-
zzWP~g`>w-8kd2CAmF|EY@nWsVf`rTD*C7)8p{#I0xR8b1I-ic?#_wz&Ze-KBomZ
zYUhV26l#?MDaTE3D!*mS=T)Yet8cCuY}q62A?+CZY7KR%7&wCAYBgM%xR!4DbX0B3%0C@@hhDtNw*n#ID&
z*_1OT|Ry6cO+WD%ocA|?t(h@qFhSrR+Pf=@M85d9X*$i
zrv`SfWj+`M)}DkjD9UWUtDjQ3QZOi1pZcI_e)s)at7NYI$YMYs#bmK;S~q-ely+~h
zC5&0!yvBK`C$;{`4m1{kZTE1+80Word*QPZzliej*?aDWl@^YPe-(dss;KJ7XR#!n
z=9wcJA_VI5k&{-zxPaZ&(afFk-KF2j>qD$1O&WH46|Oq|5uo1o0i
zmmq^gPdMa1#6`(K#GzXxpQu_h+!Vy{r*gbRs!*kL5P?W51oqeMQ}$VTDNSJ()nePYgRSD(eGpNDJ>SpK%$J50dMAg8_PZ*;ocIUn+CGaR}Obrt`0$)wvAp(;Vnc^OD&S0?t&vg&nROWNC^s{
z9a;K}3>Vm4!5LG@J3EdNQCoR_*}o?e5eC=^+49m_Dc}pDo7-m2;tRBc-#kJ6o8+BY
zQc^AGm%L9sVC??GABeEJOnfJ`PFO(L*W?IkH~f1;$<_yvOj)$vUd6s_W0ee8`>
zelEnNXh)>peqMbs&?x0Ie{I{bv5fk-1=w#Am4E0G+g7UB;eqea@i7sj9{(ucBxGk>6O-ux!$}f#J7r4L_e2E+85h
zMQc;fbZWoH@=v4dgd3}ck#E3HTPBZoi`@mxI?gawjYKs%0o8rqY{xYvUpLHxWJ
zpIaqDOD%^|v$wNBFGuvf9+ztB1B&Vn*g)_`OMJWve1Rmi7lOJ^)Mm?L!@C`h=p+cG
zdJUVVfoJ`_^s6fK&4B&BPXEm?9j~F72g4Xd*@M_YOlXZYNeS+cSfDMqeAZaVuCycI
z$OZo4{+=pYmg{@BG}1jAYS`WrS2_qXJ)iU@{hhygeXHG^UVtyP>esNy#V!vXkhb}y
zEdlz)wm!o$)*=DB9E+o7S12On-Yyrmpv5{%XXoH!&5}D&fd9)eA^pHqD1&R9j&N`H
zTA%$Tx$F3>bl2Zbz4jQ-kWn#fHn>@Z{2T{~;i%|eM^H`#DlDxozjY+qk-L7%33^Xr
zPmwYTM(8XT86ze#h4~2|J+D9O2Z6Dw{ovSk&*i{PWUArAT6_&%RQoVr>8}a|Q_0H^
z{uhyyl)TX1kn-q~o!48ITGv()UO+FPc)U!kx_DyN$F|`ldv{_h#IUw+EADfK9m`ai
zPCR8=o|dz#nClj$
zt!LY6n>H^wx{X2DgJH4{L9DV$0YX!y2qFPz}!kMym15n9u;U@S!U?szhM(7jJA<
zOjpftLZN#7RdRa9e{NaN7AmGx$4!mkv{ss;B&-&J$uXgbHN_)|S)JJap+cPf^erH`
z?;bEu%Dg`pSGPVdPCVeoF0uO@7+^7*DJ2weZ4wAH*hwX9k`8|T6@A5j{E&7tU{H=Q
zYBAc>u#g$#-zljSe&^qI_+3a#mRG>q)RaWqm)`oC6(dK}hh+x3OGcT0PK@OmW?A5_
z42CZb5C5^%)(vL(@Ja}M&-Ug5?L&$c({UlI9@0Hq6t=^fPslEIKM+fjLiPkS*|9`i
zsmiZZuu7@g7Ss=iSSq{Ny4N#+B;Ej8FvhG^s%Sd3?*%u
zg%uPOJm7k=+AB3zbz(05{xH6~Zg_|km>U2NI3A_f;D(M@{?fwcY(0n5dSfTO_<4;c
zHNtoPG)7eBbr!e>I5+w|?vDS+F^(Re`r`L|oLi<%xYcI?n&~6%igbR%!AHDYeuFZ=
z*Yr;NHKCfnWAhM6fQ<|tSwn>qT8T!cOZoZ517mX}WGu=rD6dOUQ6V73b!_12kg_k~
z(rD(~W_bK+ngMDmPk&GE8ZjpTR5*GDT9(+7rc=)R0kfpueHRG5h4;^&lNKGZa#-^)
zukzjxI+9coeUO!O+$J|E2un>0l4z}p&2c}dXKY6(<
z$7vBM{7;D
zH4}prOa<9>YukI1E;m?-Fyl}pgq(mZy-LA-EQ{gbYa2#!_AMEFiQdhIGPVXU~C!cR`5HZAX0EBr3e&deid{oBL60#
zlSe}j26Qm_$+)
zc-GhXvib2Un7=D#y0?#Y4q5^PPJeR5Kd3IQH%KHIaB5spGz1}vzC?$$peNI>Yy)Xm
zW;O2|&uK!}5Qt8c90+#?8*~Q{N;BcaR532A>WJ
z3a&Wm`PEMFbv#B#PW6G`BmQq)A?ZH-j!E=0=-r`o35L^549ZZ;sNf!Lx2s^Mr^I5c
zTuyp1cn`7#vB46qmOF!BQ?MjJ)nOq6{)=F9A3*8@2h>5vXj**?EuD{z>f?O$_in3~
zd9m&qiwma6OdnOKYiKxx^l6z|5-T;lT;u$e<~m$eBB9h&;gs;aOQi7I(>>P!O0lt}
z^7rB!r)2+2mjA8fMSD0OUF~#n8&s}ci%Ob_od)VXxbE2r5eCQ3yZ9-t0at4stCVmcZ!9RC#U5
z@Gs-OT4)46?0)rCue)g>xVvfE4B7wfaEy~SM#D@{X2H_8FJxDEpqF08{J)fdeo%VK
zN%A41Y~QxK@eU>r9;+UiM*9u7+~>MYAm0n)8e22qR3DU<3f4Z2)D$_dI3SVIS+0t~kc)dw$Ss(P&!62hFFh
zBp14^$YIwKJpMhmB)ncbcaZgZ{x{a3h-$@%;SU7Xe&eh=!vhq4!1mm!|#3p}XxH
zMAmszVRh;z)$N4Wm(1LuO$8I;0k4sHkcrOkfc}cbeWe+yTFy(5*^n#|+916l;7>tKE
zF|;s41piYy>JMjxq
zxb)f$6dVK4jvKeXmj^LH4%tFWtc3NOMtBwhwU~3;+Kkb!h}~^Y-LGPDD~hpEd|5@R
z2BT{E*RBrnv#h9Uhkv-COebaRg1&2s@xH=~Jq{NBQ_C1uIftGggqP<@r*+IEdHaR!
zeT=VfgSUs%?M&U@n+l)m$wp2jd|IJLdj7+nFMu^;y2g~#;5r6wY=<~V%T{Y<@r#Wv
z#QT@sk9``hp0_L-Z9P(}E}S?{THjeqdOLgF5NPwcV8+(Nk=bcuU778j?x>>TEX`27
z*K=znUK<+)(0;q&rObe(EQMkGBe()>KYA=E>5**vPx;lL8mB|6x;LN~+`iLa9T}qm
ze&f-H!mj5{9WnaH!^!OgK6AQVqiTV~qLeun?x+Cct^pcL=cmjdR_
zX~oduynz`7mMvMZ7JtKrwrAoB0OKuGIszwb)DV%#%L8?o+N3FxRDRC>zNpm?o7u{PR(3j_a2v9=kFlc9Y!4
z&DaJgde}H`cHxH-ZSkssZ&wMWl|S&@g^Mpl){)0;%kT9YOISG=*6gY$7*gvq!kk_u
z1QG;-t(>6`#Es-fv*~j3Fk$V`kLL=~hG(^HXS`RHDN~+?N6qr5uXBxUY)O#26k_}R
zgc28pG$_lm0@lF%HQ^>t$rFL{IH$<~lHk6>vF;@v^$F$Wkp=-{u5T6>)$2Z#;;)!P|Bh
znv{+vGWJXS2>m;42=9t2t*KX)tBSnW`XNWDv?_Rtx6i(oU2dHIcenk#j3!+KzE$z}
zX>3L0xSa;?xrE(J(S*FJb>mh$Mrt*3WTh^@Vx
z;+V2H!S}`C@DTpcEc+&(i;`0&a;Gi7=5K9%sGxk3j^RFDhlIiKp_X@A92DD5c?3G5
z$E?OpFI|}G6U=8@F(JAWZtb3G)hLG2d)?x&<$T@D1hq~Ttr&`&<%Vd>m#|S&Io%w+
z<`VwJ{uJ6|az1pSsatG`D)UbRjieQt+z(uGgr2o8CBWrNFqDq3T!Vl3ionznG_G>T
zR^?|7jsE#ycwPL`iigqgx~)>2mUK@EqZG6VqnM)k`T1oT*87vxQ1nAN#`G7jDBa^5
z*C?q1el+#OQvMK#_gTT;!UD$QD@Y}^n1Q&P`@KoGQ}2Hka$R{*SE#ArHCgN$aBdgu
zb&Aw}oGBWsU*ax(_N1!_X=ih9(+q5Uilq3@JM?r|t1N@@Z}7)LwjB*hP>SfjWh~ul
zVC~*Ykn3!)jXxul*y>GIS>LQ@wqyNT2A6GqC-`$5Q-P4rE)g1x#l-sGq0FDpDgGVK
z4tW_(9+w*!n1f-DRkK>l;C+|SZj?)l-qyXFQFbF_)`oq=Q~Y}eMT0H<0fOd@F2fT+
zhf!1W6MxdRV>Njeli^J30Hj|ioTL2kj$ce$v#5T${k#I9P8O+zqxCl+DXFenLk&S6
zd~IP+CoW|^q1ku)`)qac1PesIz^}9o$JHXQUOerf^0~czD$y&9x*4wUYu^;DAJ^*~
z$uB^zGZ2l?;@4x%9WaB#rNcx4Uq2(8wRO4Ph{BLKqgVQLArbU1TSxQqrU2mfMZkVL
z&ydvHc*QXJLd%drcV4@y2`?b2B!dzQLYo%ux0rw!V#e++DG=y_9{1`@2G*z{j*eq=
z>V;+0S$ONRPWAogrPd#tA5w!ull>SgT&SFAW9>q=W$0Ud+;SM=W`~|cSvT$8yz9A2
z36ef4uZxv|3!9?${^G809@)xAk)5F|w}^53wmgdipmC8F0$10LNkT#&dS%39u8&F0
zaU~4(l^Um>R3DicB2%>QJBhOsATnHl$2n*$L8Q~<_(Fo7cEc9hFoyd*20GtEYeyXZ
zViI|B`rVaj|Da+yMu=fVT+yAPh
zIF2jDS_mPK3A@Za!r;V2&L5>Uqa#cSiSVtQ#3NiEa`G&6g(hi^E?5rgw=NP_(mhOG
zUbc)TEym%qTu|exo9G1?7uVGt(lTK%ZJjl-SwroCXOyR;#1!VQid9wzoY5J^)ISw%
zsDQR##&PWGbW7wV=9w!;s{fNPH;}o~&0s}gC+xlly*>Jiq|)b8cZ@N6H9^M$LxwsA
zf4(j$7(vHd?q$kXC?~Rl#}1{$eY4>4Mgl-Y&fsZteOP_v9zB{4$vg;8(yc?fF3t>F
ziGU2=98%V{D8FvBf8wwd3I-WC|?ro%o@kaBu>+D!hUZ7lPC?g9-)7pVs
zbS6_=tkB2euqcIld5xLR-5xx=J>7dnOts8d2%7aj#R#0;Lt9BnInGpy2#ffBV+`-~
zP2Xo;z0VPr=+AlU<{IbSLebFNcGZIi*sLWS>&ruKM6%c1o}Oz!mwmww)XZU8wqBir
z`*wj5+~F=9e0>Xht;%C=lJt?DUvFE0v*bA>k*TkDi<1D)F6S%4!Gu|RKIE-bs8{(9
zbJZ;$@YH*xKI0eezA#)n^!u}
za|v1!(P(k={OdC36a_vl@$1(F^&?qaG7*}oK*3vus1$v`3LA2^AJjVS<@%gHCj()wd((qB_
zN6#X`!pY3lBr`VREG$&t%SEk5eEr{8Hp71xK;?G%)Z(8YbhX+xZ1dOZ){7$mzFm5^
z&+ki_d3`<6*^=ki`u2{h!*1ITMqIiF_Mp37%1q5kdNvoS!b=01Yl#nf)N)dm^jG}w
z{18In@sB~`SGO3QfY-P`yg2lAVElIc#iJ(WPTi)%{C}b+c5g&89xj(9-#f0Giw|h^BWVN;50U)L6oL}sR-mCaS9JDSa
zovPCMIqP3JIgVaKA$exNaH;(h`yT(nzoq~>4~6+!{Djg7K73C1-K5hANy}_dTt#4g
z4iRz%BYg_j{Te|n(Adz!Ce#)IighAQ3raNfy&VFpzksFdwK62#D8z9{+ck(ME3B+y
zx2D9Zj;?)wXpq!49GZ{7+68e8neblS*Fa8Bwy26{|Y+fPCJ@B0hTw+b4LSX`Wz_D-^AWwiYFEsnP*?oV6YR3Cne1A
zYSo8GL$1Dk`tr8*Bb#_R@F{F_(ZqjJxybxFsn}|0+SlgOB}Y=1IdFKR)y?M}3X$h!
z^J8N8=H`AJ!$On1!zVOQ%7*2ar4L+x>ltALLi9&Af*tbr(`}?1Pxdr3C
zdwHzVxkjcp+h4a7O0~_B&8fxjb|q-nP$>VKSz=2!grZk)8Ip6~zuz?R?WXTNaT;8K
zwS1<@4`si`@a-^f-F{St?3nkgzYGQMs!6$@OAG9LqJIeS3R6$6ntVkI0v?r`9VV>!
z_@jCjB4ijQW3G;JqvcDw+IbGnj*mCl&&_==
zDkx~%9KhuvbSB%|y6$+MhbIo3Tog9*@bI8ROh5so5&0k{lPkZY{w
zmOec)GbiVo1VqQBq@+l~1f-Fdxp#+`vFGYktLA(Bcte)8wO7^7$_OVbRqec?J(@L$
zr0=_XI*Zcd}
z%V7mVk4xLK-%cB=xzH?eav92?=>!j+>GGp$-Rbi1NY_yk$F6J)OfF=_p-|gT!^7IA
z+k6A--8|jn)A0G-QPyUg!^5ptN$E)l{2UIBNSE<@@oU3Jv)a{5#P;#a*HFxz6`#%3
zSL11XXZ*hut6C7Q&k_r2E0t~6yE_!7wrWZrt<-NGR3^~eOx)J$H=%>+tQ8;HM6}9+
z(OKx71xgfD!E(-qIGE;@YouGAZ2ugWnI;ftQ31xx&5s2-Oe
zl@f$01;P}zs_K%nOC81b*@KIP;Fv4o^7ZUH;0m#lVQ~+*k$DUta>Zzn+nD>q;(mDK
z8Br5kBm7C6BeV{6bhN?Gh(4}IX5Chmls$6S{CqynktiO3_$2bO2X>(X>~Ft+uN!9p
z`lm7zj|A1<&!Ftmy<}ueEUTHR?^vd*ECWZP3{H0OD~mNw-uBXq2I68(Hd;810W_2U
zd$_zcs+7L;k4*<_vF{R$)30<_b*;zGkJhS!&uoL@rP1EE>i{oo8MIFagdS?(N~_sE
zvZ7Z0Fw`|a*DUoC-aCJbh828nWkpHzZ20Tci}hnFc;CUiXa!N)ic622R{6tvFbNn7
zC@BL`>&1nxr`Mx2ZHnxWurcNjYg&{7@(${-o9m{WMa7rCjrg04YGZEA3J9%U|MfKu
z6zmPvANK~kjGT#;WFL)9kvA8G&9)V`zTMoz+}Oo!8S_S0rK%iIa+e2C>?#)J|(;sDor
z
z4hoxi8kGWnoRXT7fJS&Xo_*Vv7PS_uRrqnc1@j~CK3BO$6FgseFbI;#in#P};#)G3
z;VY}5k-zJ0Vfncmim)!jg0|edU
z@Ac(SgAt#1AB51u%S*POUxKCk*hz%WAM_a#b~Ci<%IIYo0j7_15sRVCbqBRpyPq-T
z7iMwp?8&pVc)dh^Xq|F^SJ$hE$1?+Y2Iey_KO$u*Ad6)MF9QRwB${qCFC{o*=&g7y
z|B{@%_GN0_~4e=1C%aYy&bDH9
zthzYf#D?wCcW)-#z5L}`G=5=`VSd{9^D>V;QSmSQ!(HY+gL99O?mRvgBSu$M6q=mZ
z)TrAYhAs+6BY68v`R@Zx$|yIqOEA_V|AS+WV>m}E4aGyHNY$3OZlx1{!%w2LB!G%1
z^oByf1fQM{XAXc~rZgu1LM+Kx+!EObHmiN~O>UX6ziB%ik5&4!LF{4eG5o`XVMvP!
zSGAn(Ko)n02ZZug2bR2ZZqXD6nD)k8xtya{_^n)~f=%t<03%BTMEXK3);PF?Mhg}c
z3Mlm*Syvo~76jnCb+oGSyh5nbtP6`TbZhGy;Ny;3y3=wu6%l4O#8=vwoUeG)w^{v7
z+M_;qMog)@M{|z%$8AB^5OQ0=pH5iqF?4msMTr2&))tSG&8&K1l`z+1GVF&L6!)7q
zMitz}2KR?mo{&}{_C@qI6EoC&^5%Bjh;6+Pkl2kMU~!g&bE^KRv!B|FnWOCQYkMh&{$gZ9W!qu*>`R1ty|I_j5n18YULE?ZPAxO*KzOGknn$v2p{S?8
zL}vg{e?5nLe1B$8@jx()o!`F5Axkx})jp0V#6KcDjn^&X2iY$7-!G?DIS&oK0fBRu
zxD4UG#=FML6J((91MkKK-livc)H>Z9N}5>Z1PmI_p~ML^NPG=;rVKrYlNJc6pi=N}
z#+k+PylKwhOn<66n|F*Icvezf|0lVV+C9F>-RKHt{QyK+8ef2V(3p@g5ytx7wlCHz
zo23P1to@tnao=SixzC4eL06~WO15oTrRYF--0vS9*Tl3)OCEIsWDvjo2+4(Bso;cj
zkcPpF#uJV@&wkz+yhS!4Y>}-CxC6Z>Yk}euhMv{@3~p^LGG%LSei{S@!MO6#b+8(*JcRNBuTGqXWhMWNk4tmSoYeRmcf2^%_U$
z&U=~OUo3trZvsgTO48ES0ALT5BTV+?cJDR8Dq%ph7mLHj)sG+h{3FttFjsjv`i2=;
zGz1_vD#zSRQFcc?cKep5<}<@t6e9osR#7iD<=)SRn((s+ko*?lUkFB>l|4E*f^&?m
zQ~1UU6k8T6xLw@cUGD_v5iNCRb=b*}ajzsAH#LFHwFq>o#E)GyOHB({uExRc1n*_V^D@Ko^ZJA-$P
z)sBS!EfMmgGxgrzXAs-5SsHCiBGOK11>6%Y=lsSe%Tc9CtO0MHqV|
N?7Gpl(kpgP{|kk$QrrLl
delta 24951
zcmZ^~c|278`#(OSkSuMKwIWiMWM9URq{&wHeUj{3_GNHL<(Azf*%f8qx2#htlB{9u
zlVt41Hilv5e2@En-=FRG`2E3o&1-*M%k#R<^}5c7r}Ujq=_`?X!1}SsO_T{>3wO`jp=B!|~oQ%w#@&D3{IW^V3&;uiH;W@W~?#_Ek{E?sf?
zfMG%kEs)8bkDp_@g#O%^NB90{$xhJX@5+qW3!C3c>k7g9^k&AMlWNcOA9qg2)s>9b
zyO*@0$xE;8;s^dZDG0>IeSRb7HkylGYwWx;@Y%Dxc}>Zu4^Do~$|DyDug#B)QbP{%
zc(zZrH#Rmd1^!90sCuYrz|~>h>_7bC?6sjPJFQj@HdmXVM*r3E%d7Yb
z`RPE7XV0Gb5eO+K1#iFpDbcL6CFl7bWTb$%D{L$rs=ztAWe{-Q##?~IJKkW%nUCBS
z2b9Ju5?8O@m}(Bdb;R*pMg|21AqDb^i|<<2yCn&cmWH)8H8mY}R>mTZ)7dBwP3!TX
zHL_0UFci_C`rFlHUWJG449LOmqo^W$HhrpTAgJo3z{}?6it81klo~hquj)WQQ+ku@
z*uP}&&AS6j^4BRg>$Y!xl1PBcxste>k@??B|C~6(EtEEwoL?aja!>03`}6W?)?muk
zi&4idmzLnm*O$Hkij;<2kO!Yog-f!!vy?
zCDo$Xkv5(v-V>;t(D!x;`|K&VpVvFJK&1pTCgmMq)Q+@Rkh8SzI6eFd%~`VDQXWnC
zQ&eu
zsCPHCw}0pD?Y%v0iYoG39vN>A@Eq)zXbz~TuBoX5z_8Vc2K|(jlyNKoxVe$%@3oB7
z0j{R*(=FzmygoXmV1_)zpKbhB)n!V~3a#Le^Fo$ppufMro28#$-SOkcYn^`zyH9?Q
zT15XYZ=<;UEHRZNt&AC7zI@rQ<5denrK+;BU#50`^&YOl=q)^#Z33;9)ju1+R3pVc
zf9qWDe8uth*&ZAyrK6?u`tb!0F$3fyz~qin;N9IvInPxG#@J79JUn<#n9bzK!+(qz
z$n_03On4;9lz=!V*5h5K$`RPGHg>w&D`)oglP5<+jfB$1db8WqTF%>M_?&wf78WKG
z^6bS!T;2A%hL(C@RSCIQt8JzHE_YLp@8E+o20+TH5|JcPb>IN{q`#~VB=HfB3JIrHoFzNvwW
z2Spt>6(%TS)an(8-T2Cj#SU0$`XWeD`c8e?O%?fy?iXZ$|yi2XA42*cjF-lbq>v
zlmbm|MwvQllzQ?C95E}qmspyc1Qci1oSHUlvBskJLi`r`)$fK~kZleij?9^g4Yz)^
z7TOEoytVkt(fXByb@AfQ0!Lrau_xXB@DOWL%{YrQK~j2}n$Ny}|2_n9yRXCf1O?!r
z7Jx_*Olu3>Uz!TQ>nCl(?wXD9S~v&skRSCo~N{l_;Rfob7KSva3&ew@n;zxYx}0Cyxhd!zrHDeSYBOyLot>4C=6<^tYQ?C`KnMbQBht#0-=qo^)aZL
z!;PWx%+~K1$>*6GtC^T5fnMXGP&KTp^WtBJ&j-wC%zb+=AioZO8kQLR;>8P{c>kii
ze6r}Bm3zW*C^IvsQ|_qB2N5YjyYRL%W!SA66qW26f?Xz(cMWQ3%Iw5Ky?y_^5dhmk
zZl;ALuwPKTnRF+=3p|w6KlAfZOU)~FgM))$cV8cfqex5`Sy*s)_4Tnk4vubPN333K
zZEeL!1I{aN-(LFJ;EBo_v`baptU(>8UsZRoqa&~5p(A22m^{cFxXyAl*P_WDbASE}jSJ3@fL*9ERmlC|VX9COn!IMx
z5zvk!Y(}CozAJxilTgWXZ6)f7xE`?dEm*kfkgbl9oaYyJ4OVHu##gSk9WX|+E%8wU
z7)sf`580R%SMu6aRmDY(=Yi88^nZx^Cp=X(lw!6Dj`Sf&b)Y2zG)kVLH7JwzT}HHmOS!q{ka!4Y7eFY
z{K!)Qu9WRX0wKe*esirGfh#kFV5>FN-5ZyeoBQ$Q%a?%`kr1{SR=K7IXFYy0oURNJ
z$5r)UT_bdNCd#kg(FHUuw-QBiO9KwEN%~p8MEU{g~~v1S(^qimnpF05eYlaYCf*v9;8_rn&XcvY`~;pvDU!p*t6+`peR
zR&5{S;5J2hC!`Bs`@nCgO5N5*rVo`_CbYDu=(8X7?&$07HSzE$r@h;kr#Oz;Rvpd7
z&2n*arbFObQd+80)%uu6-lb!t41aep-($)GB8#Yqh*q=zDqsK^#+Z3SBcn$UjfWxk
z2O|8U8r5!Akwwx`&)(iXoA3DLhv23_ent)P!u^x4DS4xbZ-3u!HydgYaI(Wiis)glTGdkU2$X>1RX5bl7~B
zlFw5A8w~|#dXdVIJ?|`^5p#!CZc{Mokr5a(m6|GvDt9JNm(;nAoI_r{awYMPHJIh~
zehOXD3|1*ZhUtyMOq`JVp{mSlF`ihE0`fgk@brv{*^!iM*jVgz$%ek-+?mkzPmIa=
z?ALZ&a-2(+mRz#Dzl&O+fAKk07@3+L5>(^)i2+C}N+8|(vJ_1`z3B_VPnBX&qsS#EYCs3TatE}p0-?5&
z8?7MPMBK2MieA9JqY3)FyZM26e3IL+M)+uDhG(0ijKhy}dCaGM2Q;}BQ6LFL0zfig
zQT+&MfZt%R{t#{_w742DJ+L>QQ(>0?H|bN|FZEv;y*OW4`^c=(`&}5gRI+r?tK3AR
zEFU@)&WnTZNIgK8^fp%SW24sbTVTvGi0?AAwl1@24R&_%_fN3WWRLpZ(=$9Y8^1hI
zf+jzWniE1FK&Hpu(Xphd$zoVZ$Dj^!%8X4+9PBslLnC!FRYB>&UX>&rjS3kjUsmw+?d2`iMY3g~+4^&S`)t
zi&W1t7vmV(#1i6$X@9%!RVSUEbU)6&;pkH&qbsBm+<}xuiw!c?Qu)MHr;gb3cE?Vf
z%ROwP9qd)DcCiVr^?{R*KeJlYyQP_wTP0Yx1sScbZ#`*Kjn|WtD)v}|9^6vc*>##AhfH~sr^Jhsnx~Vovcwxo
zZo(^yfoU|{+!`3Un!mcmT@Ku@Ir7>Ft^S%Bt;+p7^RG|lf3fqcjADYtEbD(Lun_6!
zkL_{?L)Ij12t3@}nKNe!^Yex3dm2|rF+jfp3j$fkMz>ka)*IMsmaM{8(WclBUZDtR
zg3<*bEV*Ee?u43y_w>;)$XsZwFG@u+Y(L8jklixQKnJ2mu~1!}UYI
zpfcYa`0M;(soxhf^Y9_&v6nc&J_Knuc0T;q#c(>dL~
zVtuU&85UJ9r)zT%xSlEoUcPqi+8;9S<~sCf`zX
z6BCmwPB9f1BtAx(<8)UvaO~>BB=A
zDuwRO9kok*XJ8#E*GU+WV3K9G5H~cp+du!bjUJY`W*{8?uD$(&laH%&&l3Y5Y^T0`
zPZ^)AzGU30NGK!hBbxPCWv(8zt_f!Ig7!(tFy5Yxld0b6O?
zzE9l&60y6S-q0+UWqkfugBE)xthlv83r#yJ#DWOP8rov5I4ue
z?z8L*AHF^{`NS1$O}Od`
zZ>tvvCGy9pr}XxL7g{-w8e3p#1v3=Hndn;w+4P5Oc*H=XW5eWnX=6Ux*aG=!>FM0F
zWZuMc5IJG6^OAh@+KFq1ZyOnG!@_<6$$gXzDh|s3!(DyJvh63
zKvtxI55i?=d?y?_>|W+qoqkTMqAMw`X)k=(jw}&ccex$Cdzc@<5|0@KeLDB3$OxC)
zQ`K0z02U~mrJ0^1^=F@vSIyM;Wp6MX{D7|2N
zm2|qwE}!#${+$@k`_>Lmd!8n++qC)Ec6(I3&@E+ml7d4E8B1qgSs>G!N}eDq5@;$Q=z8p
zaf6=LK(XhSl1|*w_WYYG{Y(dZm`@LqG3z$$7>dgk;N04Ewd<9FP6>yS^szn`&M?4t
zjOox5hq-+lJ>&~4cMf9A39Xm1Hm+C^=y&+goLGzE+bfL*Mdj)lc0R6-C4@sI?7vi0
zdrwEU=-xzbPuV+Jmb*Pveng6FgMYn?9*iD#;p3C)b8dI~39lqr)^mSc9ImZ(7y@{0
z1jFfI91p~fWyBv<2*04+4BI&rSo&~wRY(Yx2H&FITC1{WFbD9rgv__UnzD%@R13KY
zi=F7OdQxlxYTcQTbg>2LjkYAD+a20FKS3lIUIGL1S1}O9!iNtw7Jv3sfV)~q10<4}
zny}UNR+P}xcsV&=0QES+!?JOIjdS>$HF4fUqJQJ_dkXnLfKQHUnxO`fc#;YhqV7!0
z*RAgzDoEN%IVy@BTJ~z$K32$$f*1HlS@37?ey8+xr$=2%x^u&m{g8C`*!48nG56h#
zF_l(4CsYU9Vj;beUl%GCL9KxP2cF-Hp8HVda
zN%1Tx7p4ks`7pO1Jh{$T@yOo(*+F(>M)Sy`75M`5IMgq(aZoP&(0$>Q(@l++?S{1F
zsQbp*FGmCWU0(K1*1cbYlsmW7F
zU{I?ss+PKNC&uMWemd87hWn7a*98cV)@ZKF_fkqFT<*s`G1|HS=Zw6Xl>=J8da4WV
z|3?*?{~NIWiyx2}033rmNJtmdT-r)%jjr7daDK3uQl-|vnvNd?6)bZQW;tiyHOpMb
z<~3!F-D;VDG$T?b^@6JlsF8H%OM5MJrbL%|Rp6cZ{U&WL{8Y7C8j^M$?skk2;O2ji
z`S0FF1FvbPKSDiWA5W>$W0JfqAZWV@gfsrbOtp0msBxVsMsoe!H#c*0^NalSe`!I2
z&v08w!sv-_&Z(ZuOj|7Nye-KPxNV}@Jk~4
z&eVQ2<>30IUUFZ_2bbPNPjgx&Glcv87IO%^@7icoZhy5`k*P2PApdsN>7o0mdc^G1
zyUiz3-~QD~uBYjYWv_}#tEeY#;^|;_0z^-LG_bYhsBNsPbx<#A#LpH~6Gr0G3sO6F
zFpwGg)q0HH>>lSY^)!uQXXl?`gh5>7q(KYaKv
zHvG>CpxKJv-Or(88RTOfw0cr#68b(0vl*|R=)#}h$Z(R{=eCWg832FW2BmqZ`r>cc
z?+E=S^B!{Lg5Y}8YdTD>l?^7*1`ep*E-EUL3X9W)SO9|!#^%rop8Z>mxHAr6Ej;$+
z+QrLLL{#x52!LSu(U5`q{I=O^uvPDncL?(47i}Y=FHt?zVjm85==biuDSU@TVpI#{
zNw63*g?N?O&Wr&&nkbOUdnpyyXyYOv$0T~$ZG8_)beE&bOsv6=z$pP9x#
zag-(Q{9r~~w#C?^3LKg+`auTCM_pX`&up){y75ICctU31lr)?YO#e+L`&cEUTnTNj
zvlUCsu~wE8kS_PK**Re?yX8Brbg;Awi;n7(l!KIxJ&PvaXZ|U#7kbk$E$svlPLs?IoBlVcbI$$2NUGyDtomY??x=Y?AG
z;p-xW_^SQYO9J`{n7a%AON_xcK~0Qed*i|jR?m=JS&L{j?y
zBY*!9Mh!c5C`<=~nYHu(d(qpwFZG
z-v2t4y(Wh)5G+^I!1>K<7lSwT>KT?0F24lQ_u*kzT|HLahBG0#R|`LCFEyH&+aqrM
zKUBTt_TL8D?1UU2%VU`OD}OpMUbYMt$(DN)fSe{>5O)af|M)yK@}bXaTml9>tEIl>+`-TO$F53VZ=b33
zl6*BnT~rrDLZZO$Hlj7CW6HAB-3JY(CJ!WtNV8HZ5#P^E2t}fpPU~717Vqib}Ee?7QT(CM}HJr
zY;+Dt$9n8q!N(hhH>{QKB$w}hrDtu!P$z4Z;4!m5X5TKh8QBnOLuX=F6hwGt958kVE>jdn7Rh$u~j^T
zpX`@D(#y)qb`TXW1Rgp8flt431)g|RUs_tqkwEw5&}ln@$+Nq3>;N)x;X;^hJAMGD
z-9aBwQ}W`JZYiv@x{AATcAl4Es0Y0v`)MAV4P;{r~5mzac^h-29UHK~d#(rtwJ&
zi<;b_N#cf~xsR(>&rfZ;eI#VT)@>r`#IF3e?|2CMcgl~^pMym9un1&pWFM{SUZ@nk
za^?EbqelrCO~Vklr9tZXPiflsLaUwbmfp6$9c5{ir$z#hkNM9VFD})&Oqu#|yE1vwM;6+OoghOTwD>j=kAkixs@$PVmIk@DGpuS*02q4pDz2GYzF=f!
zmX1-Z|}Be0Xe|wJPn{E7QYl%Wyq6daY?o!Vt2U%bQg8NzYZyej>2J
zx5g3JQ|TI8cER`Xfui$0*xk6D?Cs+-TnF8FP1Nf`k-X%5^BRXBe-H{Fx@3AmZOc}~
zHjnQwMNKG=XXE5MT#}q@y3#v`iVR&_XBQ_;=l7-iRO~`GsJ7V8uGTwtCl8>4-{w+i
zeN>7OdPW>6a$>>FedY8qz&AdQXG8P=0_kP&$x)Vv=xoZ)s^xN1y`rK8bTc3-CbsRS
znt-4My7gr!hx@Hfn$KsW%lUx=FQ0Dl2D2iqklo~bC`1;>{q)qc3JT%((SThj8e{IZ
z|Laqvtk>^bP`Ie9iz*UMr+a;=D@2g>~Xv8E;_
zOCxVBd-7@o>UJKUK_mz!s0`j^YIYcv#jyHbeE9Isd(YqeDd_qT;bAx3?+Wrd=!5tE
zL7gMx{$_WswkaL>8XR*v;2>1FQ`Doap)}Pvj7eT
zAL_4RYq%UXdB7G?to78gHu(-1I*V0ZHD+S@&VSvJJ$LpMN)n57NHF~@yKq=s+z?<7
z9*2ual5Z--5JxZ)L3?MB`;IOCn#;)4mPw1jC~2GK_T{e+4pwt`$%+gUQ4xwU#L_pB
zHYP!JakiI{Z#G@*S^2i-Jh|j0iC%LNtrz9iKllLT4aq9ve3L1-T9}wiR_xtP;
z+!wIIni^4!t?TV9e$$zxar;zjVa&20_sQ8<>FsGW5t%$vfvPyIuOfxv^p6woDj_e<
zil2?z?d;lu5tnXjN*U
zbTx=BDc;T#pkCoT0@*YOhJ_Zj5R@bgbATYdP0J`oGT{29%`TDUtv&?%mm^)C5Dwo?
zhQe0K7VH%s4WgXbS_PTyVoXGUCID{a7Q~=pC;wRax8tN_Epw0~uRDj_LLGce8hBzUKjXlO&*f}^{6&z?CdCgLwh_wc>Fr#{6{m<~e@3I{y@FaBs5GI3A
zoHxlxnMnarVbyrUztuFeRlKKF)%-XMiv|m)*mVeB>RfCw(jG#m?(grc&doUze>X;^
zZf!-2WEVnd7qWZxH}#TrUg>k{O5u9MlY~OI4^7>R+QRGq_y>6v6@61yxwBEaq)@LK
zyG}MiKAkCOR?L^c(`O41RA-r|q1K}F`-h=r%M4t9$#cv~;CTh=qP|_s%B|V4;s~EB
zzg}u4Wk9ir0zLfNz>w`sfqVABr7M$BnzV=aWuC5%ZJHZ=PMsi>ddMqb;6Vo0gO^10
z=Wjre8O$!tiwJ8Orb(Jre*BRsr7_hMfE%f<9wnCmo0$9@&bAL9Mq73<*dXrHQ^YV+
z=$Z+IAtZ0Zj^#JMF=fT91f8d+Z5Lpef<+ke^zp73>0omPpI*f%OkyxE!=W-`DuX2$
zvWOuCnBT#nybqA->grjD-^?)B4HhU|CMGH>%De|>gu#AEVybLz11ul7Yyv-x9sue*
z_=*Y77Z-XCFH}F>hOty0HvGttujpbqAkeV6aYWo|!IBl!$`MkQv6UmNpY5inw3u%(
z@tj?N|L*tLbj5_T-LDqkL8NLc#QHPok_m^iLXMLryUpndP
z1KlH22oGJ^fVwrX@V?yhQu~$BCQ^=crwx_Lk8KMYO^-y)9)aEK_b^$JEqv4$xLkpN
z0&IUti&PM1zplzFhU;dljGf`)TK;lcKi1t68`jDxY2)^sjnAd*Bt}GEj)hC2v~IQ2
z)Y`s<%{E{%ta*>5Ejc_c_wWnTtUVKy9+7=Jf#3Z(0Bt=O&MUW<+;mr|gXC#*JgSHN
zQc_}#R!8>+u+Zf3HG)`yRtVGBv_>fVtb3~z(BiXf*o2)4`3nz$-?0l+Ze=+))g?
z0ehjMP-2qF(gSqMEhxkd1=O|E2EZr&H9z7&qA?tJJ%Ayj-ro;see2m4G_0~EkZQqv
zGy3LVxK9P5TikxQYr&ggX^;Be>-u0(*!md%*~66Gp-rS_)KBvn*4yv
zJ=X{D-FaFGdf#ojb~m!t>)>m6_hci&r(M<_=k0}orrj!24&^HkAB1$gx>AslCF`2y_zbJf4kv
zC_`?@_JCs7d2E}aBEoaUYQM=w`K{0T)f0*{*9JbYNoo`bl~KDtJFHfh9Y>{C(5RG!
zykXa~L3Ku<#{vvj-eeoZuFso>H)yPSQa
z*UZ58Bq2K?)lPdGe_sDB0B$3;C|Iv9{hq$(*%prbfOr_HRf6JqjZWcXE2oH*Ze9-hd2ZJNcVyL0xzK
z5}6&)mq{|!zKnc#`6P*m)B2l4Z^hCwC!n;iguB|8lJmcnyrWP*pY9pAw=5fmu6uxJ
zn&U%|WxVGGM2OUv)5?Yb
zP@@VYy)$8!Z@WZhMr)l73)?PL4q@y{1dIz>zD5LEhR{#Rg8TR?DDcQ47N*o^$r8IOK+CB(U{J@q#GvG^7X%yPIW
zr}6N@YVanlTL`H?4Wt#{_B5S&@7RjD8X+z%53~s_4g&k~&pyvM^oX8{er*bXXyl-u
z{3OT3bb)@31^S3%Z>ICyBi@Rr&klbrZ%ScaL~zR>r}>`*8c)^(SAs|LK9^Kw_1Un7
zAjeO}KQG@UUMo+gRBRA9RLIdHr>1Cc%Jp}wRFxbtqY;9#UT*uDjNk=iw!rh33+s8i
zjX_ksz?CdAyf#(J=#EjK5WbK9Yl`Mj*TzRR5qd*Kc{|fbW=XT
zpdO;zQX0`ybt*dRndB)}y7^colqaIm2+yi(R8dJre|+M!GFlnrZ7jo)1|)U+4NgR=
zOwrdbWzHRk%YF;q^)7{wm~gPJCLVVS!GaU4$ZDIc?)-lK!;_D#u+jummQNa?9iMLt
zEFhrtwX_L9ivwgc!>r~O2RS^0r~kf6go!zC;_3dr+>&Acrv_u{8G-3{ISRyie`b|GH(w$(@zec4
zW5b(Yy)mJ1c|cU&oER-&cSLRA!=<17bG`xy8|@B}@Hbr@@qDh_O_^)6om+Mx2;$bk
z-j)XB9?U%F`EgiGlL@<2Pnc;Vh823wcwXb!g@?WMipmU2=g;!SR7o*9@;d5Nbkf7L
z4(Ba0>;x<(l>C;Q#2NPBVRnR{XLOH0SW`BaDgUN`iY_O&zwy8mh1M7+d;-A~tslys
z@DiLu{PkYkVTp_i`tn_68kjq|_1Ui5)qQ`aYHp-MUq+ySzrLf^+NbkyKU?#C?Bdy+
ztT5xG=2)S_l7I~(2YI*GY^^)&s8j#|Z%L2xXAZs2TWaFD9rB_CnFkg_!YeNxBXUEfyRto%IXQA|ZtnV0*B
zN|Np8=V`l=6SMNZV{(WNvfYojUYdj-(otW+{42md6`#LSNIuJ(r%;IXYEgCN-d**K{?JpM)iKL1y35Pe6`pjie^7_8)~^Yzx`u?
z)sZ}+2={SgFVhy5I3eph#tzlqC(9QEPe-kJ>dA%;O-e0Mst8f|?w^BWQ$voG1JGmp
zGjYy&h~&TXEv_l7^gKX`8K-kxkR(L8#pQex(DsojxUL_142^iE8W~48Ls(3BM}r^B
ztegoMV`FI03soBGx1W%6w(8*beZMr`mm%s#@=AZgD7
z%qAU+*RalUi(aaFOmNRmXodcFnDm@JFX#4p@fA)tbf0uzeb{lEwv*r}PPae0wIJJX1TUSo@J`l;t
z!c_L@t15Sl*-a7g`_LwkfJ?#}0C%x6&<$vLv|3n`1J__$I30ImE_W7D?
zv(!&mAC)8bb#Wqk&tlHKkN~8VZF80<)>0@-GqMO5o1EbioSA_1on?f)<;5Z9k71&c
zlDOWi=7+7Q*5Ek*wMlz-J`2?7=C!9^advB`ebTqjIZcfM3j0-K7ab*yAR2h^OUucS
zqZK>$+U&bIS0@{_YXr6kT())|IET|qB~iH9SE;GpCOxyQaz0NLfvV-1@2)*zvg^INx=}WKnDF`%(Je0t>6nv_Vf?^ZDK
z#k0!YRhzvrUEERyKrPwZe?eZd3ZQ(H-mb|gC;5gTgG2ncEBk&jW}loOOa>J2E82Q?
z=ot~QG*Sf=u**!JH2BlQb5d{A%&=a$ezn_E`R)rF|0830h8{O;R+55!zw0`zYvSZb
z!B1S)#IfD@PDjMU$yU&E(ZtWm=Yx&4ahbOM_Z^o}i_9vTNt1E13;b9MbPK*uHll5G
zYF|?|nBP%sY7F#n8ehd_pi~aroIEyq9JDlzw}aVNZQ!((WBV1eeXms51og_6OFAci
zXY}-Z^?@%&7|!344IudKj5(rrMgus(EG568Lm^B+D14o~Ve9fuks>lMUG(S$XgyC*
z5ov7!qY1yBz8OpCVT03h$y(~6o|p@F6g49B}
zmLd7cGwA9ZLyJ`QRd8dBxPUZD$monE5x6R^{et8#;8$Y4s+IuHgka6PO`bA*y(C8z
z{rJm5VVh&u5zDQC(Ds#_yACu_z=RQFJbE+w;rQ3fJKXx3uRzYueV5X-#8FqbB
zUB3gM7BSaxD%p%EXZ!qxC$clJAzgAp1Kle6;$K{)PJE;VFX!oIuf(N8Ixj=;=h-JF
zOXcha-x)}ceZBja$gE^$P=*%~u-|GTY)sPWBnSH)cb@HC(D0t`wH|M>FCn7ey4^Km
zM>d5`wq_6g8tYt>N)9P&Jbj}cN+@kLO1>O?
zC2m<7w`lsS_0jM4{yd;>;MI3eA!L?>0AH5=oP6*$QSm%iTRz40_fagc4BzJ3(%|}I
zx)>j$yij!K89(K-2mEYNKOa}Xw{Pp0hs(P(fKfgcEt|)XSqknXE>_je&)>_b*xcMQ
zjh<8@E#4dJy<0ZcV%dBxk7f2vs`c-&z+QJ^`DB4?Mt~&?%3zxVL4M=mfVbs-ydrgD
zpDo6H>jqP7mXz|)Ys_O{ROyV@O6=Gh!}3>
zb?EN9GpszJ`c48Yd~&=?9EgdWXbTAXoR(jejW_z3mhwYwL}=Yr^3s`2@pX@>Q&Y=p
zY^b%>G>1c?TuzdAT@81BAPUA-i#xV~N^1$jkS0)e^p0v%u0Lh;Xg2YYKH;&F3J6u5}SHk3YEn
zzC1zlmpLQn#&E>(;5p>%NGE=npZnpyV4u3sv=7XVnc=2D9@f^CWV0-HJg!RGA<87w
zMifbz1Fjj$&XT*gyG`HUO@`_g_iSE6%{X-RGsrlav!FJ7UQ|Szy5W?wl^=f?J5JA<
z<@R~`vj9)}&k=D;5}Bk-`u3zLs^jv6Aj|YmJdU{S?m7EbGv?+-4%MZi~{z
zZ~GN051-ugoIkSwi1iE{-5Ur1q`io#8O_3^tSkBNZd)Tp7~V`L=rwjt!U^2g0ifsh
zq%~r2TO^xI)p@G^D>EMaam`~VpA$d_l?RcD;Ck!GPY>*LDW$~#JP6FD%_--p_ze!Y
zZ^uOC^eoVtT{p=oeDI>Li}e0!7l!wx*M0x29AB?(0K`vY
z4pn)KW8y4ZNrUy+uh})|M7dm7OX!5(u^Z}`?7O|$6_9ydf;^mE&i1u7+NKhA{XHUM5~UCYaO2@N2lf+_
zr1fBaxy~02&RE}DWI<9^=185*_Ga^=5|XWZ?c&cV?q3_c@ymfv$LEH^#&30czVoxZ
z3g>SPi*~`3K6~whmRrtbqE_U@(SZ5F`f)?Qr*bKwnxOTKcc6L@4fXP;g#b`xif!?E
ztyu2kUrO7?`nxBOfwO>;qd*{yNM7Az&(9F%doo&qLXnnnxROSh?>U5o8(R)EHMq~j
zmo`GrK?F?(c$pIL20DSa&yOyV1ylV=M*?+zl@P$fesB3-6T8IQ7b<|5x~~gbpBff6&s1tSuGtCQ7LNg<=lZ|^xtAp^E?8)y`$5BD)Y%&N
zHbUJ!`D@XZGSBzWP#XQ>`vE#P$f(B(LHWG5A(%6O^5_Fv)2Uz1{A*v8FO2-f3OT4rucS4v1uhQ>Lm?P9wC}ze2|OVB
zVgz1_0e?d^`HX(_(YQm4ttSxpTxfBnrf=sUwcj-!@p5Uz
z?z8*n9^HhNUr2%MHun!nMg@dJM(zQJoo_VPK=c@^=~U|*F&L8{h_dm>SkS;xAKGn6
z!@`O@52Q~)TmQXmg;!~z97Ic(`v{nZRhdSj>u?ZDWPcUbyM&&jCRFI&C_8}CDHNql
z_pwqDOJH@}S?Qv(a~BO@?009W2aPL_FZIIpd@
zR{G*QwT&cjM?Q|0QU`fukf@qMq>+M>+N-V;=Kh>gY}WSu=Eozq_!KkYI`v$)%6*O>
zD?Mxf!Ks(`6?IRt!#bg)Tvd-)fuv2dcQT7K;EF<(hl=**o&}f{b-$-3e{UOX=nRMz
zKPJK5Z;meBDFF_CPF+n^LCCef;X217*-MH8m)uR$cgKYcL$W~X#eK=zXbLdG+_;UJ
zCIcVuyOYYI`3beiPm9>CEE*aQAR_{4*!ua2(XI<}tEtl#sPa#%76agiaiQ*hwz67h
z?Dlw+vdjnTYxrzXt;u=Qc>($c%ji_l&r~SH$Ttq~zhQGv=$Fi)7MQfu=wd^5a;n^+
z?S`@^xlH9~0
z<-^ZeQ#SNkYu;Fuv9lC8E-#R5;z1(2*zsZVrHmi!aCxn_<3cg3O1REY0lb9(oFTaD
zJHWS%igv~5c$P_;mLwh-054w)xbs3)0uLR8ZMAvjs1F7f;?j
zx!Z93sA<21NwmLp$vxCtOUuX%arGdkOUy{&v>%UpsaoF8FA60-Rm7$J2$`Lyyl`y!(4fNLvS~WJ(IUnbj);Y|HqfUVwbU>!OJ-CJxlrS^JxkRTLe{L
zLSJjqeZ_oz?ZA)~Fy)MqOcOk7?L0=Ld%T};v$$%WFv*CKmLyIYVjR;%85T6~RhXA)
zO~9)XiR@p5563WoRm1S{;kEvq?qb=wy5rFIDOoaKM&CGocRl-EJfjqwyjk4-NLqkg_
zf=o;iYTcyhrE2+l?